|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<Project> |
| 3 | + <PropertyGroup> |
| 4 | + <ProductArchitecture Condition=" '$(ProductArchitecture)' == '' ">amd64</ProductArchitecture> |
| 5 | + <ProductArchitecture>$(ProductArchitecture)</ProductArchitecture> |
| 6 | + |
| 7 | + <ProductVersion Condition=" '$(ProductVersion)' == '' ">0.0.0</ProductVersion> |
| 8 | + <ProductVersion>$(ProductVersion)</ProductVersion> |
| 9 | + </PropertyGroup> |
| 10 | + |
| 11 | + <PropertyGroup Condition=" '$(ProductArchitecture)' == 'amd64' "> |
| 12 | + <Platform>x64</Platform> |
| 13 | + </PropertyGroup> |
| 14 | + <PropertyGroup Condition=" '$(ProductArchitecture)' == 'arm64' "> |
| 15 | + <Platform>arm64</Platform> |
| 16 | + </PropertyGroup> |
| 17 | + <PropertyGroup Condition=" '$(ProductArchitecture)' == 'arm' "> |
| 18 | + <Platform>arm</Platform> |
| 19 | + </PropertyGroup> |
| 20 | + <PropertyGroup Condition=" '$(ProductArchitecture)' == 'x86' "> |
| 21 | + <Platform>x86</Platform> |
| 22 | + </PropertyGroup> |
| 23 | + |
| 24 | + <PropertyGroup> |
| 25 | + <RootBuildFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)build\))</RootBuildFolder> |
| 26 | + <BaseOutputPath>$(RootBuildFolder)</BaseOutputPath> |
| 27 | + <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> |
| 28 | + <OutputPath>$(BaseOutputPath)$(Configuration)\$(ProductArchitecture)\</OutputPath> |
| 29 | + |
| 30 | + <DefaultCompressionLevel Condition="'$(DefaultCompressionLevel)' == ''">high</DefaultCompressionLevel> |
| 31 | + </PropertyGroup> |
| 32 | + |
| 33 | + <PropertyGroup> |
| 34 | + <PackageScope>perMachine</PackageScope> |
| 35 | + <IsBundleCompressed>true</IsBundleCompressed> |
| 36 | + </PropertyGroup> |
| 37 | + |
| 38 | + <Import Project="$(USERNAME).props" Condition="Exists('$(USERNAME).props')" /> |
| 39 | + |
| 40 | + <PropertyGroup> |
| 41 | + <DefineConstants> |
| 42 | + $(DefineConstants); |
| 43 | + ProductArchitecture=$(ProductArchitecture); |
| 44 | + ProductVersion=$(ProductVersion); |
| 45 | + PackageScope=$(PackageScope); |
| 46 | + IsBundleCompressed=$(IsBundleCompressed); |
| 47 | + </DefineConstants> |
| 48 | + </PropertyGroup> |
| 49 | + |
| 50 | + <PropertyGroup > |
| 51 | + <PackageScope>perMachine</PackageScope> |
| 52 | + <IsBundleCompressed>true</IsBundleCompressed> |
| 53 | + </PropertyGroup> |
| 54 | + |
| 55 | + <PropertyGroup> |
| 56 | + <HarvestNoLogo>true</HarvestNoLogo> |
| 57 | + <HarvestAutogenerateGuids>true</HarvestAutogenerateGuids> |
| 58 | + </PropertyGroup> |
| 59 | +</Project> |
0 commit comments