2021-01-13 21:09:13 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2022-03-07 07:36:42 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<RootNamespace>Aaru.Decryption</RootNamespace>
|
|
|
|
|
<AssemblyName>Aaru.Decryption</AssemblyName>
|
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
<Version>6.0.0-alpha8</Version>
|
|
|
|
|
<Company>Claunia.com</Company>
|
|
|
|
|
<Copyright>Copyright © 2011-2022 Natalia Portillo</Copyright>
|
|
|
|
|
<Product>Aaru Data Preservation Suite</Product>
|
|
|
|
|
<Title>Aaru.Decryption</Title>
|
|
|
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
2022-11-13 12:46:17 +00:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-03-07 07:36:42 +00:00
|
|
|
<LangVersion>10</LangVersion>
|
|
|
|
|
<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>
|
|
|
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<ConsolePause>false</ConsolePause>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release</OutputPath>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<ConsolePause>false</ConsolePause>
|
|
|
|
|
</PropertyGroup>
|
2021-01-13 21:09:13 +01:00
|
|
|
|
2022-03-07 07:36:42 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\Aaru.Devices\Aaru.Devices.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\Aaru.Images\Aaru.Images.csproj"/>
|
|
|
|
|
</ItemGroup>
|
2021-01-13 21:09:13 +01:00
|
|
|
|
|
|
|
|
</Project>
|