Skip to content

Commit

Permalink
Replaced AnyCPU VS platform config with x64.
Browse files Browse the repository at this point in the history
Removed debug info from Release config.
  • Loading branch information
smurferson1 committed Oct 31, 2021
1 parent 1081140 commit 3624086
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
14 changes: 7 additions & 7 deletions MineControl.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31424.327
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MineControl", "MineControl\MineControl.csproj", "{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MineControl", "MineControl\MineControl.csproj", "{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Debug|x64 = Debug|x64
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Release|Any CPU.Build.0 = Release|Any CPU
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Debug|x64.ActiveCfg = Debug|x64
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Debug|x64.Build.0 = Debug|x64
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Release|x64.ActiveCfg = Release|x64
{DFE79420-99CC-42DF-9280-FB7DBFC4E7EF}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
12 changes: 4 additions & 8 deletions MineControl/MineControl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,11 @@
<PackageLicenseFile>License.txt</PackageLicenseFile>
<ApplicationIcon>MineControlLogo.ico</ApplicationIcon>
<Win32Resource />
<Platforms>x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<NoWarn />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Intro.rtf" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<Platform>x64</Platform>
<PublishDir>bin\Release\net5.0-windows\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net5.0-windows</TargetFramework>
Expand Down

0 comments on commit 3624086

Please sign in to comment.