-
Notifications
You must be signed in to change notification settings - Fork 1
/
Reina.Cryptography.csproj
33 lines (33 loc) · 1.94 KB
/
Reina.Cryptography.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net481;net7.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<VersionPrefix>3.0.7</VersionPrefix>
<PackageProjectUrl>https://fkitsantas.github.io/Reina.Cryptography</PackageProjectUrl>
<RepositoryUrl>https://www.github.com/fkitsantas/Reina.Cryptography</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Common Package References -->
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.40.0" />
<PackageReference Include="Azure.Identity" Version="1.11.3" />
<PackageReference Include="Azure.Security.KeyVault.Keys" Version="4.6.0" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.6.0" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="Microsoft.IdentityModel.Abstractions" Version="7.6.0" />
<PackageReference Include="System.Memory.Data" Version="8.0.0" />
<PackageReference Include="Fody" Version="6.8.1" PrivateAssets="all" />
<PackageReference Include="Costura.Fody" Version="5.7.0" PrivateAssets="all" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<!-- Add a suffix to the output assembly based on the target framework -->
<Target Name="AddFrameworkSuffixToOutput" AfterTargets="Build">
<Move SourceFiles="$(OutputPath)$(AssemblyName).dll" DestinationFiles="$(OutputPath)$(AssemblyName).$(TargetFramework).dll" Condition="Exists('$(OutputPath)$(AssemblyName).dll')" />
</Target>
</Project>