-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTvGuide.csproj
More file actions
61 lines (56 loc) · 2.58 KB
/
TvGuide.csproj
File metadata and controls
61 lines (56 loc) · 2.58 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<ApplicationIcon>Resources\Icon.ico</ApplicationIcon>
<PlatformTarget>x64</PlatformTarget>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<Authors>$(AssemblyName), Mewyk</Authors>
</PropertyGroup>
<ItemGroup>
<Content Include="Resources\Icon.ico" />
</ItemGroup>
<ItemGroup>
<None Update="AttributeVariables.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<IncludeInSingleFile>false</IncludeInSingleFile>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
<None Update="ActiveBroadcasts.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<IncludeInSingleFile>false</IncludeInSingleFile>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
<None Update="NowLiveUserData.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<IncludeInSingleFile>false</IncludeInSingleFile>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<IncludeInSingleFile>false</IncludeInSingleFile>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.5" />
<PackageReference Include="NetCord" Version="1.0.0-alpha.451" />
<PackageReference Include="NetCord.Hosting" Version="1.0.0-alpha.451" />
<PackageReference Include="NetCord.Hosting.Services" Version="1.0.0-alpha.451" />
<PackageReference Include="TwitchSharp.Api" Version="0.1.5" />
<PackageReference Include="TwitchSharp.Hosting" Version="0.1.5" />
</ItemGroup>
</Project>