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.
38 lines
1.4 KiB
38 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net7.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
|
|
<IsPackable>false</IsPackable> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="FluentAssertions" Version="6.8.0" /> |
|
<PackageReference Include="LanguageExt.Core" Version="4.4.0" /> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" /> |
|
<PackageReference Include="Moq" Version="4.18.3" /> |
|
<PackageReference Include="NUnit" Version="3.13.3" /> |
|
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" /> |
|
<PackageReference Include="NUnit.Analyzers" Version="3.3.0" /> |
|
<PackageReference Include="coverlet.collector" Version="3.1.2" /> |
|
</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> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|