mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<LangVersion>12</LangVersion>
|
|
<Authors>Natalia Portillo <claunia@claunia.com></Authors>
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Claunia.Encoding" Version="1.9.2"/>
|
|
<PackageReference Include="FluentAssertions" Version="6.12.0"/>
|
|
<PackageReference Include="nunit" Version="4.1.0"/>
|
|
<PackageReference Include="NUnit.Analyzers" Version="4.2.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0"/>
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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"/>
|
|
</ItemGroup>
|
|
|
|
<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>
|
|
|
|
</Project>
|