forked from surban/managedCuda
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathManagedCUDA.targets
28 lines (23 loc) · 1014 Bytes
/
ManagedCUDA.targets
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
<Project>
<Import Project="Revision.targets" />
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<EmbedAllSources>true</EmbedAllSources>
<Platform>x64</Platform>
<BaseVersion>10.0</BaseVersion>
<PackageVersion>$(BaseVersion).$(Rev)$(Prerelease)</PackageVersion>
<AssemblyVersion>$(BaseVersion).$(Rev)</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DefineConstants>TRACE;DEBUG;_x64</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DefineConstants>_x64</DefineConstants>
</PropertyGroup>
</Project>