2021-01-13 21:09:13 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2022-11-15 15:58:41 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<RootNamespace>Aaru.Decryption</RootNamespace>
|
|
|
|
|
<AssemblyName>Aaru.Decryption</AssemblyName>
|
|
|
|
|
<Title>Aaru.Decryption</Title>
|
|
|
|
|
<Description>Decryption algorithms used by the Aaru Data Preservation Suite.</Description>
|
|
|
|
|
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<RepositoryUrl>https://github.com/aaru-dps/Aaru.Decryption</RepositoryUrl>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
<Authors>Rebecca Wallander <sakcheen@gmail.com></Authors>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-10-03 23:10:41 +01:00
|
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
2022-11-15 15:58:41 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
</PropertyGroup>
|
2021-01-13 21:09:13 +01:00
|
|
|
|
2022-11-15 15:58:41 +00:00
|
|
|
<ItemGroup>
|
2023-10-03 23:10:41 +01:00
|
|
|
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\Aaru.Devices\Aaru.Devices.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\Aaru.Images\Aaru.Images.csproj"/>
|
2022-11-15 15:58:41 +00:00
|
|
|
</ItemGroup>
|
2021-01-13 21:09:13 +01:00
|
|
|
|
2022-11-27 14:05:44 +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>
|
2021-01-13 21:09:13 +01:00
|
|
|
</Project>
|