Skip to content

Commit

Permalink
Add X86 and X64 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
fredatgithub committed Aug 16, 2021
1 parent a2ebbd5 commit 3cd3486
Show file tree
Hide file tree
Showing 10 changed files with 340 additions and 0 deletions.
40 changes: 40 additions & 0 deletions SaveWin10Pic24Hours/SaveWin10Pic24Hours.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,46 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
40 changes: 40 additions & 0 deletions SaveWin10Pictures/SaveWin10Pictures.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,46 @@
<PropertyGroup>
<StartupObject>SaveWin10Pictures.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
60 changes: 60 additions & 0 deletions SaveWindows10WallPaper.sln
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,97 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Debug|x64.ActiveCfg = Debug|x64
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Debug|x64.Build.0 = Debug|x64
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Debug|x86.ActiveCfg = Debug|x86
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Debug|x86.Build.0 = Debug|x86
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Release|Any CPU.Build.0 = Release|Any CPU
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Release|x64.ActiveCfg = Release|x64
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Release|x64.Build.0 = Release|x64
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Release|x86.ActiveCfg = Release|x86
{4002BFE0-672E-45B0-B4FC-AE011D5374E0}.Release|x86.Build.0 = Release|x86
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Debug|x64.ActiveCfg = Debug|x64
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Debug|x64.Build.0 = Debug|x64
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Debug|x86.ActiveCfg = Debug|x86
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Debug|x86.Build.0 = Debug|x86
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Release|Any CPU.Build.0 = Release|Any CPU
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Release|x64.ActiveCfg = Release|x64
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Release|x64.Build.0 = Release|x64
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Release|x86.ActiveCfg = Release|x86
{9552F1A3-8D17-4EF0-A786-CA76611A26BD}.Release|x86.Build.0 = Release|x86
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Debug|x64.ActiveCfg = Debug|x64
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Debug|x64.Build.0 = Debug|x64
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Debug|x86.ActiveCfg = Debug|x86
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Debug|x86.Build.0 = Debug|x86
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Release|Any CPU.Build.0 = Release|Any CPU
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Release|x64.ActiveCfg = Release|x64
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Release|x64.Build.0 = Release|x64
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Release|x86.ActiveCfg = Release|x86
{FFF09F11-BC59-4AB7-95BD-D07D8557A54C}.Release|x86.Build.0 = Release|x86
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Debug|x64.ActiveCfg = Debug|x64
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Debug|x64.Build.0 = Debug|x64
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Debug|x86.ActiveCfg = Debug|x86
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Debug|x86.Build.0 = Debug|x86
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Release|Any CPU.Build.0 = Release|Any CPU
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Release|x64.ActiveCfg = Release|x64
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Release|x64.Build.0 = Release|x64
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Release|x86.ActiveCfg = Release|x86
{3A0AF553-F2E1-413F-9E27-71C870187ECD}.Release|x86.Build.0 = Release|x86
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Debug|x64.ActiveCfg = Debug|x64
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Debug|x64.Build.0 = Debug|x64
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Debug|x86.ActiveCfg = Debug|x86
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Debug|x86.Build.0 = Debug|x86
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Release|Any CPU.Build.0 = Release|Any CPU
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Release|x64.ActiveCfg = Release|x64
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Release|x64.Build.0 = Release|x64
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Release|x86.ActiveCfg = Release|x86
{8F9C3896-ECD3-4B76-9CF5-1A72FAC11959}.Release|x86.Build.0 = Release|x86
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Debug|x64.ActiveCfg = Debug|x64
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Debug|x64.Build.0 = Debug|x64
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Debug|x86.ActiveCfg = Debug|x86
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Debug|x86.Build.0 = Debug|x86
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Release|Any CPU.Build.0 = Release|Any CPU
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Release|x64.ActiveCfg = Release|x64
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Release|x64.Build.0 = Release|x64
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Release|x86.ActiveCfg = Release|x86
{6ACE039B-03E2-4313-805B-14F27CEA03D6}.Release|x86.Build.0 = Release|x86
{02E9B214-DC21-448E-BEC5-26A71338074F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{02E9B214-DC21-448E-BEC5-26A71338074F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{02E9B214-DC21-448E-BEC5-26A71338074F}.Debug|x64.ActiveCfg = Debug|x64
{02E9B214-DC21-448E-BEC5-26A71338074F}.Debug|x64.Build.0 = Debug|x64
{02E9B214-DC21-448E-BEC5-26A71338074F}.Debug|x86.ActiveCfg = Debug|x86
{02E9B214-DC21-448E-BEC5-26A71338074F}.Debug|x86.Build.0 = Debug|x86
{02E9B214-DC21-448E-BEC5-26A71338074F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{02E9B214-DC21-448E-BEC5-26A71338074F}.Release|Any CPU.Build.0 = Release|Any CPU
{02E9B214-DC21-448E-BEC5-26A71338074F}.Release|x64.ActiveCfg = Release|x64
{02E9B214-DC21-448E-BEC5-26A71338074F}.Release|x64.Build.0 = Release|x64
{02E9B214-DC21-448E-BEC5-26A71338074F}.Release|x86.ActiveCfg = Release|x86
{02E9B214-DC21-448E-BEC5-26A71338074F}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
40 changes: 40 additions & 0 deletions SaveWindows10WallPaper/SaveWindows10WallPaper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,46 @@
<PropertyGroup>
<StartupObject>SaveWindows10WallPaper.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions TestEnvironmentSpecialFolders/TestEnvironmentSpecialFolders.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,46 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
40 changes: 40 additions & 0 deletions TestOnceADay/TestOnceADay.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,46 @@
<PropertyGroup>
<StartupObject>TestOnceADay.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
40 changes: 40 additions & 0 deletions ViewNewPictures/ViewNewPictures.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,46 @@
<PropertyGroup>
<StartupObject>ViewNewPictures.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
Loading

0 comments on commit 3cd3486

Please sign in to comment.