Skip to content

Commit

Permalink
Remove ARM32 support in Mile.Project.VisualStudio and ensure you only…
Browse files Browse the repository at this point in the history
… to use NuGet under non-uefi application projects.
  • Loading branch information
MouriNaruto committed May 17, 2021
1 parent 84bef38 commit 33c72b7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
6 changes: 0 additions & 6 deletions Mile.Project.VisualStudio/BuildAllTargets.proj
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@
<ProjectReference Include="$(SolutionPath)">
<AdditionalProperties>Configuration=Release;Platform=x64</AdditionalProperties>
</ProjectReference>
<ProjectReference Include="$(SolutionPath)">
<AdditionalProperties>Configuration=Debug;Platform=ARM</AdditionalProperties>
</ProjectReference>
<ProjectReference Include="$(SolutionPath)">
<AdditionalProperties>Configuration=Release;Platform=ARM</AdditionalProperties>
</ProjectReference>
<ProjectReference Include="$(SolutionPath)">
<AdditionalProperties>Configuration=Debug;Platform=ARM64</AdditionalProperties>
</ProjectReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|ARM">
<Configuration>Debug</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|ARM64">
<Configuration>Debug</Configuration>
<Platform>ARM64</Platform>
Expand All @@ -44,10 +40,6 @@
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM">
<Configuration>Release</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM64">
<Configuration>Release</Configuration>
<Platform>ARM64</Platform>
Expand All @@ -69,8 +61,8 @@
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<NuGetTargetMoniker>native,Version=v0.0</NuGetTargetMoniker>
<RuntimeIdentifiers>win;win-x86;win-x64;win-arm;win-arm64</RuntimeIdentifiers>
<NuGetTargetMoniker Condition="'$(MileProjectType)'!='UefiApplication'">native,Version=v0.0</NuGetTargetMoniker>
<RuntimeIdentifiers Condition="'$(MileProjectType)'!='UefiApplication'">win;win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<ConfigurationType Condition="'$(MileProjectType)'=='ConsoleApplication'">Application</ConfigurationType>
<ConfigurationType Condition="'$(MileProjectType)'=='WindowsApplication'">Application</ConfigurationType>
<ConfigurationType Condition="'$(MileProjectType)'=='DynamicLibrary'">DynamicLibrary</ConfigurationType>
Expand Down
6 changes: 0 additions & 6 deletions Mile.Project.VisualStudio/SimpleProject.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,20 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SimpleProject", "SimpleProj
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|ARM.ActiveCfg = Debug|ARM
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|ARM.Build.0 = Debug|ARM
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|ARM64.ActiveCfg = Debug|ARM64
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|ARM64.Build.0 = Debug|ARM64
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|x64.ActiveCfg = Debug|x64
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|x64.Build.0 = Debug|x64
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|x86.ActiveCfg = Debug|Win32
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Debug|x86.Build.0 = Debug|Win32
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Release|ARM.ActiveCfg = Release|ARM
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Release|ARM.Build.0 = Release|ARM
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Release|ARM64.ActiveCfg = Release|ARM64
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Release|ARM64.Build.0 = Release|ARM64
{F3E82C07-D4FD-45AD-9C7C-29C7FC210158}.Release|x64.ActiveCfg = Release|x64
Expand Down

0 comments on commit 33c72b7

Please sign in to comment.