mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.3 KiB
56 lines
2.3 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net8.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
|
|
<IsPackable>false</IsPackable> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="FluentAssertions" Version="6.12.0" /> |
|
<PackageReference Include="LanguageExt.Core" Version="4.4.9" /> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> |
|
<PackageReference Include="NSubstitute" Version="5.1.0" /> |
|
<PackageReference Include="NUnit" Version="4.1.0" /> |
|
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" /> |
|
<PackageReference Include="NUnit.Analyzers" Version="4.2.0"> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
<PrivateAssets>all</PrivateAssets> |
|
</PackageReference> |
|
<PackageReference Include="coverlet.collector" Version="6.0.2"> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
<PrivateAssets>all</PrivateAssets> |
|
</PackageReference> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ErsatzTV.Scanner\ErsatzTV.Scanner.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Content Include="Resources\Nfo\ArtistInvalidCharacters1.nfo"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
<Content Include="Resources\Nfo\ArtistInvalidCharacters2.nfo"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
<Content Include="Resources\Nfo\EpisodeInvalidCharacters.nfo"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
<Content Include="Resources\ErsatzTV.png"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
<Content Include="Resources\test.srt"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
<Content Include="Resources\test.sup"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
<Content Include="Resources\song.mp3"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|