Files
Aaru.Decryption/Aaru.Decryption.csproj

64 lines
2.7 KiB
XML
Raw Normal View History

2021-01-13 21:09:13 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2021-08-17 21:23:22 +01:00
<PropertyGroup>
2021-09-12 21:34:22 +01:00
<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>
2021-12-08 21:48:35 +00:00
<Version>6.0.0-alpha8</Version>
2021-09-12 21:34:22 +01:00
<Company>Claunia.com</Company>
2022-02-18 10:02:34 +00:00
<Copyright>Copyright © 2011-2022 Natalia Portillo</Copyright>
2021-09-12 21:34:22 +01:00
<Product>Aaru Data Preservation Suite</Product>
<Title>Aaru.Decryption</Title>
<ApplicationVersion>$(Version)</ApplicationVersion>
2021-09-12 22:25:59 +01:00
<TargetFramework>net6</TargetFramework>
<LangVersion>10</LangVersion>
2021-09-12 21:34:22 +01:00
<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 &lt;sakcheen@gmail.com&gt;</Authors>
2021-08-17 21:23:22 +01:00
<Nullable>enable</Nullable>
2021-09-12 22:25:59 +01:00
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
2021-08-17 21:23:22 +01:00
</PropertyGroup>
2021-09-12 21:34:22 +01:00
<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
2021-08-17 21:23:22 +01:00
<ItemGroup>
2021-09-12 21:34:22 +01:00
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj" />
<ProjectReference Include="..\Aaru.Devices\Aaru.Devices.csproj" />
<ProjectReference Include="..\Aaru.Images\Aaru.Images.csproj" />
2021-08-17 21:23:22 +01:00
</ItemGroup>
2021-01-13 21:09:13 +01:00
</Project>