-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxmltvguide-generator.csproj
More file actions
39 lines (36 loc) · 1.35 KB
/
Copy pathxmltvguide-generator.csproj
File metadata and controls
39 lines (36 loc) · 1.35 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>xmltvguide_generator</RootNamespace>
<AssemblyName>xmltvguide-generator</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<None Update="src/TestData/tvguide.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Compile Remove="tests/**/*.cs" />
<Compile Remove="**/tests/**/*.cs" />
<Compile Remove="bin/**/*.cs" />
<Compile Remove="**/bin/**/*.cs" />
<Compile Remove="obj/**/*.cs" />
<Compile Remove="**/obj/**/*.cs" />
<None Remove="tests/**/*" />
<None Remove="**/tests/**/*" />
<None Remove="bin/**/*" />
<None Remove="**/bin/**/*" />
<None Remove="obj/**/*" />
<None Remove="**/obj/**/*" />
<Content Remove="tests/**/*" />
<Content Remove="**/tests/**/*" />
<Content Remove="bin/**/*" />
<Content Remove="**/bin/**/*" />
<Content Remove="obj/**/*" />
<Content Remove="**/obj/**/*" />
</ItemGroup>
</Project>