-
Notifications
You must be signed in to change notification settings - Fork 2
/
VoiceChannelGrabber.csproj
32 lines (28 loc) · 1.21 KB
/
VoiceChannelGrabber.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>VoiceChannelGrabber</RootNamespace>
<ApplicationIcon>DichterNebe1.ico</ApplicationIcon>
<Platforms>AnyCPU;x64</Platforms>
<Version>1.1.0</Version>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<Authors>dichternebel</Authors>
<Product>VoiceChannelGrabber</Product>
<RepositoryUrl>https://github.com/dichternebel/voice-channel-grabber.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Remove="assets\VoiceChannelGrabber.png" />
<None Remove="config.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dec.DiscordIPC" Version="1.2.2" />
<PackageReference Include="obs-websocket-dotnet" Version="5.0.0.3" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
</ItemGroup>
</Project>