aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-09-03 16:51:39 -0700
committerRob Mensching <rob@firegiant.com>2017-09-07 23:21:11 -0700
commit088dc648a3478e2cacdbdab1cb1782556642ee69 (patch)
tree70535a2e14113ebe639040fa908599322511dfc6 /src/WixToolset.Core.Native/WixToolset.Core.Native.csproj
parent2a72f06449431b326c671cf59811b9cefb73a2c8 (diff)
downloadwix-088dc648a3478e2cacdbdab1cb1782556642ee69.tar.gz
wix-088dc648a3478e2cacdbdab1cb1782556642ee69.tar.bz2
wix-088dc648a3478e2cacdbdab1cb1782556642ee69.zip
Initial commit
Diffstat (limited to 'src/WixToolset.Core.Native/WixToolset.Core.Native.csproj')
-rw-r--r--src/WixToolset.Core.Native/WixToolset.Core.Native.csproj23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj b/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj
new file mode 100644
index 00000000..858b9be2
--- /dev/null
+++ b/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj
@@ -0,0 +1,23 @@
1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>netstandard2.0</TargetFramework>
5 <NuspecFile>$(MSBuildThisFileName).nuspec</NuspecFile>
6 <!-- <BeforePack>SetNuspecProperties</BeforePack> -->
7 </PropertyGroup>
8
9 <ItemGroup>
10 <PackageReference Include="Nerdbank.GitVersioning" Version="2.0.37-beta" PrivateAssets="all" />
11 </ItemGroup>
12
13 <!-- <ItemGroup>
14 <ProjectReference Include="..\winterop\winterop.vcxproj" ExcludeAssets="All" />
15 </ItemGroup> -->
16 <Target Name="SetNuspecProperties"
17 AfterTargets="Build">
18 <PropertyGroup>
19 <NuspecBasePath>$(OutputPath)</NuspecBasePath>
20 <NuspecProperties>Configuration=$(Configuration);Id=$(MSBuildThisFileName);Version=$(BuildVersionSimple);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description)</NuspecProperties>
21 </PropertyGroup>
22 </Target>
23</Project>