-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCCrypto.csproj
87 lines (87 loc) · 3.92 KB
/
SCCrypto.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7D5617F5-6AFE-4915-93FF-0611EEE6F281}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SCCrypto</RootNamespace>
<AssemblyName>SCCrypto</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ArrayEqualityCompare.cs" />
<Compile Include="Certificate.cs" />
<Compile Include="Configuration\AttributeDefinition.cs" />
<Compile Include="Configuration\AttributeDefinitions.cs" />
<Compile Include="Configuration\AttributeType.cs" />
<Compile Include="Configuration\ClassAttribute.cs" />
<Compile Include="Configuration\ClassAttributes.cs" />
<Compile Include="Configuration\ClassAttributesDefinition.cs" />
<Compile Include="Configuration\Config.cs" />
<Compile Include="Configuration\DnEntryDefinition.cs" />
<Compile Include="Configuration\DnEntryDefinitions.cs" />
<Compile Include="Configuration\DnEntryValueType.cs" />
<Compile Include="Configuration\EnumDefinition.cs" />
<Compile Include="Configuration\EnumDefinitions.cs" />
<Compile Include="Configuration\EnumMember.cs" />
<Compile Include="Configuration\StringUtils.cs" />
<Compile Include="Configuration\TypeAttributes.cs" />
<Compile Include="Decryption.cs" />
<Compile Include="Encryption.cs" />
<Compile Include="IUserIO.cs" />
<Compile Include="Key.cs" />
<Compile Include="PrivateKey.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PublicKey.cs" />
<Compile Include="Setting.cs" />
<Compile Include="SmartCard.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\bc-csharp\crypto\crypto.csproj">
<Project>{38872a5f-e87e-4fad-b109-8eb7b2e6a4a0}</Project>
<Name>crypto</Name>
</ProjectReference>
<ProjectReference Include="..\Pkcs11Interop\src\Pkcs11Interop\Pkcs11Interop\Pkcs11Interop.csproj">
<Project>{9bc3ee70-6b0b-4b26-8c06-b7ae50be202e}</Project>
<Name>Pkcs11Interop</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>