1 files changed, 27 insertions, 0 deletions
diff --git a/crypto/test/crypto.test.csproj b/crypto/test/crypto.test.csproj
new file mode 100644
index 000000000..8446f71a9
--- /dev/null
+++ b/crypto/test/crypto.test.csproj
@@ -0,0 +1,27 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <TargetFrameworks>netcoreapp2.0;netcoreapp1.1;net462</TargetFrameworks>
+ <DefineConstants>$(DefineConstants);LIB</DefineConstants>
+ <AssemblyOriginatorKeyFile>..\..\BouncyCastle.snk</AssemblyOriginatorKeyFile>
+ <SignAssembly>true</SignAssembly>
+ <EnableDefaultItems>false</EnableDefaultItems>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">
+ <DefineConstants>$(DefineConstants);PORTABLE</DefineConstants>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="src\**\*.cs" Exclude="**\examples\**\*.cs" />
+ <EmbeddedResource Include="data\**\*.*" Exclude="**\README.txt" />
+ </ItemGroup>
+ <ItemGroup>
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
+ <PackageReference Include="NUnit" Version="3.7.1" />
+ <PackageReference Include="NUnit3TestAdapter" Version="3.8.0" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\src\crypto.csproj" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
+ </ItemGroup>
+</Project>
\ No newline at end of file
|