diff options
Diffstat (limited to 'src/wixext/WixToolset.Bal.wixext.csproj')
-rw-r--r-- | src/wixext/WixToolset.Bal.wixext.csproj | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/wixext/WixToolset.Bal.wixext.csproj b/src/wixext/WixToolset.Bal.wixext.csproj index ffc9ee5c..4cc790c8 100644 --- a/src/wixext/WixToolset.Bal.wixext.csproj +++ b/src/wixext/WixToolset.Bal.wixext.csproj | |||
@@ -7,9 +7,10 @@ | |||
7 | <RootNamespace>WixToolset.Bal</RootNamespace> | 7 | <RootNamespace>WixToolset.Bal</RootNamespace> |
8 | <Description>WiX Toolset Bal Extension</Description> | 8 | <Description>WiX Toolset Bal Extension</Description> |
9 | <Title>WiX Toolset Bal Extension</Title> | 9 | <Title>WiX Toolset Bal Extension</Title> |
10 | <IsTool>true</IsTool> | ||
11 | <ContentTargetFolders>build</ContentTargetFolders> | ||
12 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |
11 | <NuspecFile>$(MSBuildThisFileName).nuspec</NuspecFile> | ||
12 | <IncludeSymbols>true</IncludeSymbols> | ||
13 | <NuspecProperties>Id=$(MSBuildThisFileName);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description);Title=$(Title)</NuspecProperties> | ||
13 | </PropertyGroup> | 14 | </PropertyGroup> |
14 | <ItemGroup> | 15 | <ItemGroup> |
15 | <Content Include="$(MSBuildThisFileName).targets" /> | 16 | <Content Include="$(MSBuildThisFileName).targets" /> |
@@ -18,6 +19,7 @@ | |||
18 | </ItemGroup> | 19 | </ItemGroup> |
19 | <ItemGroup> | 20 | <ItemGroup> |
20 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" /> | 21 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" /> |
22 | <PackageReference Include="WixToolset.Data" Version="4.0.*" PrivateAssets="all" /> | ||
21 | <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" PrivateAssets="all" /> | 23 | <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" PrivateAssets="all" /> |
22 | </ItemGroup> | 24 | </ItemGroup> |
23 | 25 | ||
@@ -28,4 +30,11 @@ | |||
28 | <ItemGroup> | 30 | <ItemGroup> |
29 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" /> | 31 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" /> |
30 | </ItemGroup> | 32 | </ItemGroup> |
33 | |||
34 | <Target Name="SetNuspecProperties" AfterTargets="CoreBuild"> | ||
35 | <PropertyGroup> | ||
36 | <NuspecBasePath>$(OutputPath)..\</NuspecBasePath> | ||
37 | <NuspecProperties>$(NuspecProperties);Version=$(BuildVersionSimple);RepositoryCommit=$(SourceRevisionId);RepositoryType=$(RepositoryType);RepositoryUrl=$(PrivateRepositoryUrl);ProjectFolder=$(MSBuildThisFileDirectory)</NuspecProperties> | ||
38 | </PropertyGroup> | ||
39 | </Target> | ||
31 | </Project> | 40 | </Project> |