diff options
Diffstat (limited to 'src/WixToolset.Sdk/Sdk/Sdk.props')
-rw-r--r-- | src/WixToolset.Sdk/Sdk/Sdk.props | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/WixToolset.Sdk/Sdk/Sdk.props b/src/WixToolset.Sdk/Sdk/Sdk.props new file mode 100644 index 00000000..5080e393 --- /dev/null +++ b/src/WixToolset.Sdk/Sdk/Sdk.props | |||
@@ -0,0 +1,23 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
2 | |||
3 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0"> | ||
4 | <PropertyGroup> | ||
5 | <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
6 | </PropertyGroup> | ||
7 | |||
8 | <PropertyGroup> | ||
9 | <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\wix.targets'))</WixTargetsPath> | ||
10 | </PropertyGroup> | ||
11 | |||
12 | <PropertyGroup> | ||
13 | <TargetFramework Condition=" '$(TargetFramework)' == '' ">netstandard2.0</TargetFramework> | ||
14 | <EnableDefaultItems Condition=" '$(EnableDefaultItems)' == '' ">true</EnableDefaultItems> | ||
15 | <EnableDefaultCompileItems Condition=" '$(EnableDefaultCompileItems)' == '' ">true</EnableDefaultCompileItems> | ||
16 | <EnableDefaultEmbeddedResourceItems Condition=" '$(EnableDefaultEmbeddedResourceItems)' == '' ">true</EnableDefaultEmbeddedResourceItems> | ||
17 | </PropertyGroup> | ||
18 | |||
19 | <ItemGroup Condition=" '$(EnableDefaultItems)' == 'true' "> | ||
20 | <Compile Include="**/*.wxs" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder)" Condition=" '$(EnableDefaultCompileItems)' == 'true' " /> | ||
21 | <EmbeddedResource Include="**/*.wxl" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder)" Condition=" '$(EnableDefaultEmbeddedResourceItems)' == 'true' " /> | ||
22 | </ItemGroup> | ||
23 | </Project> | ||