Skip to content

Commit 327428b

Browse files
author
José Miguel Sánchez Fernández
committed
Forced x64 only as build config for entire solution (test project included).
1 parent 0243ffd commit 327428b

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

DIV2.Format.Exporter.Tests/DIV2.Format.Exporter.Tests.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
7+
8+
<Platforms>x64</Platforms>
9+
</PropertyGroup>
10+
11+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
12+
<PlatformTarget>x64</PlatformTarget>
713
</PropertyGroup>
814

915
<ItemGroup>

DIV2.Format.Exporter.sln

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ Global
2020
GlobalSection(ProjectConfigurationPlatforms) = postSolution
2121
{D809DD2D-A865-4395-805E-18BCBD1E0594}.Debug|x64.ActiveCfg = Debug|x64
2222
{D809DD2D-A865-4395-805E-18BCBD1E0594}.Debug|x64.Build.0 = Debug|x64
23-
{D809DD2D-A865-4395-805E-18BCBD1E0594}.Release|x64.ActiveCfg = Release|Any CPU
24-
{D809DD2D-A865-4395-805E-18BCBD1E0594}.Release|x64.Build.0 = Release|Any CPU
25-
{0490E65E-02FF-44BC-A874-27E47FDE9FE5}.Debug|x64.ActiveCfg = Debug|Any CPU
26-
{0490E65E-02FF-44BC-A874-27E47FDE9FE5}.Debug|x64.Build.0 = Debug|Any CPU
27-
{0490E65E-02FF-44BC-A874-27E47FDE9FE5}.Release|x64.ActiveCfg = Release|Any CPU
28-
{0490E65E-02FF-44BC-A874-27E47FDE9FE5}.Release|x64.Build.0 = Release|Any CPU
23+
{D809DD2D-A865-4395-805E-18BCBD1E0594}.Release|x64.ActiveCfg = Release|x64
24+
{D809DD2D-A865-4395-805E-18BCBD1E0594}.Release|x64.Build.0 = Release|x64
25+
{0490E65E-02FF-44BC-A874-27E47FDE9FE5}.Debug|x64.ActiveCfg = Debug|x64
26+
{0490E65E-02FF-44BC-A874-27E47FDE9FE5}.Release|x64.ActiveCfg = Release|x64
27+
{0490E65E-02FF-44BC-A874-27E47FDE9FE5}.Release|x64.Build.0 = Release|x64
2928
EndGlobalSection
3029
GlobalSection(SolutionProperties) = preSolution
3130
HideSolutionNode = FALSE

DIV2.Format.Exporter/DIV2.Format.Exporter.csproj

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<RepositoryUrl>https://github.com/VisualStudioEX3/DIV2.Format.Exporter</RepositoryUrl>
1111
<RepositoryType>GitHub</RepositoryType>
1212
<PackageTags>DIV DIV2 DIVGamesStudio DIVGamesStudio2 Games Graphics Tool Retro Windows Linux Mac</PackageTags>
13-
<Platforms>AnyCPU;x64</Platforms>
13+
<Platforms>x64</Platforms>
1414
<Version>1.0.1</Version>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageReleaseNotes>- Updated ImageSharp to version 1.0.3.
@@ -22,23 +22,12 @@
2222
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2323
</PropertyGroup>
2424

25-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
26-
<PlatformTarget>AnyCPU</PlatformTarget>
27-
<Optimize>false</Optimize>
28-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
29-
</PropertyGroup>
30-
3125
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
3226
<PlatformTarget>AnyCPU</PlatformTarget>
3327
<Optimize>false</Optimize>
3428
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3529
</PropertyGroup>
3630

37-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
38-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
39-
<DocumentationFile>D:\Projects\dotNET projects\DIV2.Format.Exporter\DIV2.Format.Exporter\DIV2.Format.Exporter.xml</DocumentationFile>
40-
</PropertyGroup>
41-
4231
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
4332
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4433
<DocumentationFile>D:\Projects\dotNET projects\DIV2.Format.Exporter\DIV2.Format.Exporter\DIV2.Format.Exporter.xml</DocumentationFile>

0 commit comments

Comments
 (0)