summaryrefslogtreecommitdiff
path: root/src/Directory.vcxproj.props
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-26 11:31:05 -0700
committerRob Mensching <rob@firegiant.com>2021-05-11 11:14:01 -0700
commitdf016066100df955d5ff98811e113fb2b1bd4b8a (patch)
treea27b35a3651ca7b1d8c4bb7c7483ec2f92583e08 /src/Directory.vcxproj.props
parentdc6022da6cdbb9d7ca54c4a36485ceead07feaaf (diff)
downloadwix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.gz
wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.bz2
wix-df016066100df955d5ff98811e113fb2b1bd4b8a.zip
Implement integrated build process
Diffstat (limited to 'src/Directory.vcxproj.props')
-rw-r--r--src/Directory.vcxproj.props12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Directory.vcxproj.props b/src/Directory.vcxproj.props
index 63d73b36..d150cc2e 100644
--- a/src/Directory.vcxproj.props
+++ b/src/Directory.vcxproj.props
@@ -4,13 +4,13 @@
4<Project> 4<Project>
5 <PropertyGroup> 5 <PropertyGroup>
6 <Platform Condition=" '$(Platform)' == '' OR '$(Platform)' == 'AnyCPU' ">Win32</Platform> 6 <Platform Condition=" '$(Platform)' == '' OR '$(Platform)' == 'AnyCPU' ">Win32</Platform>
7 <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(Platform)\</IntDir> 7 <PlatformFolder Condition=" '$(Platform)' == 'Win32' ">x86</PlatformFolder>
8 <OutDir>$(OutputPath)$(Platform)\</OutDir> 8 <PlatformFolder Condition=" '$(PlatformFolder)' == '' ">$(Platform)</PlatformFolder>
9 9 <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(PlatformFolder)\</IntDir>
10 <!-- NBGV properties --> 10 <OutDir>$(OutputPath)$(PlatformFolder)\</OutDir>
11 <AssemblyCompany>$(Company)</AssemblyCompany> 11 </PropertyGroup>
12 <AssemblyCopyright>$(Copyright)</AssemblyCopyright>
13 12
13 <PropertyGroup Condition=" '$(CLRSupport)'!='true' ">
14 <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> 14 <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
15 <NuGetTargetMoniker>native,Version=v0.0</NuGetTargetMoniker> 15 <NuGetTargetMoniker>native,Version=v0.0</NuGetTargetMoniker>
16 </PropertyGroup> 16 </PropertyGroup>