blob: ac6da52c87dd2f0fafb265229dc211f241f90169 (
plain)
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
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.1;netcoreapp3.0;net20;net40</TargetFrameworks>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net20' Or '$(TargetFramework)' == 'net40'">
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Security" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>true</Optimize>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);TRACE;RUNTIME</DefineConstants>
<OutputPath>..\..\bin\32\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Optimize>true</Optimize>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);TRACE;RUNTIME</DefineConstants>
<OutputPath>..\..\bin\64\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>true</Optimize>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);TRACE;DEBUG;RUNTIME</DefineConstants>
<OutputPath>..\..\bin\32\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Optimize>true</Optimize>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);TRACE;DEBUG;RUNTIME</DefineConstants>
<OutputPath>..\..\bin\64\Debug\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<Compile Remove="VMProtect.Netcore\**" />
<Compile Remove="VMProtect.Runtime.Netstandard\**" />
<EmbeddedResource Remove="Tests\**" />
<EmbeddedResource Remove="VMProtect.Netcore\**" />
<EmbeddedResource Remove="VMProtect.Runtime.Netstandard\**" />
<None Remove="Tests\**" />
<None Remove="VMProtect.Netcore\**" />
<None Remove="VMProtect.Runtime.Netstandard\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>
|