2018-04-11 08:13:49 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-07-08 18:57:24 +01:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2020-07-08 18:57:24 +01:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
<IsPackable>false</IsPackable>
|
2020-07-19 21:44:32 +01:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
<LangVersion>11</LangVersion>
|
|
|
|
|
<Authors>Natalia Portillo <claunia@claunia.com></Authors>
|
|
|
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
|
|
|
</PropertyGroup>
|
2020-07-08 18:57:24 +01:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
2022-11-13 13:19:57 +00:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
<ItemGroup>
|
2022-12-16 18:41:29 +00:00
|
|
|
<PackageReference Include="Claunia.Encoding" Version="1.9.2" />
|
|
|
|
|
<PackageReference Include="FluentAssertions" Version="6.8.0" />
|
|
|
|
|
<PackageReference Include="nunit" Version="3.13.3" />
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
|
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
|
2022-11-15 15:58:43 +00:00
|
|
|
</ItemGroup>
|
2020-07-08 18:57:24 +01:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
<ItemGroup>
|
2022-12-16 18:41:29 +00:00
|
|
|
<ProjectReference Include="..\Aaru.Checksums\Aaru.Checksums.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Aaru.Core\Aaru.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Aaru.Filesystems\Aaru.Filesystems.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Aaru.Filters\Aaru.Filters.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Aaru.Images\Aaru.Images.csproj" />
|
2022-11-15 15:58:43 +00:00
|
|
|
</ItemGroup>
|
2020-07-08 18:57:24 +01:00
|
|
|
|
2022-11-29 10:33:40 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Localization\Localization.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Localization\Localization.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Localization.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-07-08 18:57:24 +01:00
|
|
|
</Project>
|