|
@@ -17,12 +17,10 @@
|
|
|
<Configurations>Debug;Release;MSIX;MSIX Debug;Steam;DevRelease</Configurations>
|
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
|
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
|
|
|
-
|
|
|
- <ImplicitUsings>true</ImplicitUsings>
|
|
|
- <AssemblyVersion></AssemblyVersion>
|
|
|
- <LangVersion>11</LangVersion>
|
|
|
- <PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
- <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
|
+ <ImplicitUsings>true</ImplicitUsings>
|
|
|
+ <AssemblyVersion></AssemblyVersion>
|
|
|
+ <LangVersion>11</LangVersion>
|
|
|
+ <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSIX|AnyCPU'">
|
|
@@ -31,10 +29,12 @@
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSIX|x86'">
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
+ <PlatformTarget>x86</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSIX|x64'">
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
+ <PlatformTarget>x64</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
@@ -45,11 +45,13 @@
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DefineConstants>TRACE;UPDATE</DefineConstants>
|
|
|
+ <PlatformTarget>x86</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DefineConstants>TRACE;UPDATE</DefineConstants>
|
|
|
+ <PlatformTarget>x64</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSIX|AnyCPU'">
|
|
@@ -81,12 +83,14 @@
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DebugType>full</DebugType>
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
+ <PlatformTarget>x86</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DebugType>full</DebugType>
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
+ <PlatformTarget>x64</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSIX Debug|AnyCPU'">
|
|
@@ -103,6 +107,7 @@
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
<Optimize>false</Optimize>
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
+ <PlatformTarget>x86</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSIX Debug|x64'">
|
|
@@ -111,17 +116,20 @@
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
<Optimize>false</Optimize>
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
+ <PlatformTarget>x64</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|x86'">
|
|
|
<DefineConstants>TRACE;RELEASE;STEAM</DefineConstants>
|
|
|
<Optimize>True</Optimize>
|
|
|
<OutputPath>bin\x86\Steam\</OutputPath>
|
|
|
+ <PlatformTarget>x86</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Steam|x64' ">
|
|
|
<DefineConstants>TRACE;RELEASE;STEAM</DefineConstants>
|
|
|
<Optimize>True</Optimize>
|
|
|
+ <PlatformTarget>x64</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Steam' ">
|
|
@@ -133,17 +141,20 @@
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DefineConstants>TRACE;UPDATE;RELEASE</DefineConstants>
|
|
|
<Optimize>True</Optimize>
|
|
|
+ <PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DevRelease|x64' ">
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DefineConstants>TRACE;UPDATE;RELEASE</DefineConstants>
|
|
|
+ <PlatformTarget>x64</PlatformTarget>
|
|
|
<Optimize>True</Optimize>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DevRelease|x86' ">
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DefineConstants>TRACE;UPDATE;RELEASE</DefineConstants>
|
|
|
+ <PlatformTarget>x86</PlatformTarget>
|
|
|
<Optimize>True</Optimize>
|
|
|
</PropertyGroup>
|
|
|
|