Skip to content

Commit

Permalink
Change CPU target to x86
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrioCelos committed Jun 10, 2022
1 parent 54e7615 commit 6d28375
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 24 deletions.
12 changes: 4 additions & 8 deletions RegionVision.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Debug|x86.ActiveCfg = Debug|Any CPU
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Release|Any CPU.Build.0 = Release|Any CPU
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Release|x86.ActiveCfg = Release|Any CPU
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Debug|x86.ActiveCfg = Debug|x86
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Debug|x86.Build.0 = Debug|x86
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Release|x86.ActiveCfg = Release|x86
{1B8D1F14-56E9-49D5-A1E4-98C78A3A719D}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
31 changes: 15 additions & 16 deletions RegionVision/RegionVision.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,26 @@
<TargetFrameworkProfile />
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PropertyGroup>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>preview</LangVersion>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>preview</LangVersion>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
</PropertyGroup>
<ItemGroup>
<Reference Include="OTAPI">
Expand All @@ -57,7 +56,7 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>copy $(TargetFileName) ..\..\..\..\TShock\ServerPlugins\$(TargetFileName)
<PostBuildEvent>copy $(TargetFileName) ..\..\..\..\..\TShock\ServerPlugins\$(TargetFileName)
</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down

0 comments on commit 6d28375

Please sign in to comment.