-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVoiceChannelGrabber.csproj
38 lines (34 loc) · 1.62 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
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
<RootNamespace>VoiceChannelGrabber</RootNamespace>
<ApplicationIcon>DichterNebe1.ico</ApplicationIcon>
<Platforms>AnyCPU;x64</Platforms>
<FileVersion>1.2.1.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="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" />
<TrimmerRootAssembly Include="DiscordIPC" />
<TrimmerRootAssembly Include="Newtonsoft.Json" />
<TrimmerRootAssembly Include="obs-websocket-dotnet" />
<TrimmerRootAssembly Include="Serilog" />
<TrimmerRootAssembly Include="System.Configuration.ConfigurationManager" />
<TrimmerRootAssembly Include="System.Reactive" />
<TrimmerRootAssembly Include="Websocket.Client" />
</ItemGroup>
</Project>