Skip to content

Commit

Permalink
Add support for arm64.
Browse files Browse the repository at this point in the history
  • Loading branch information
YBCA7 committed Feb 19, 2024
1 parent 4db3a2c commit 490b0d4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Lottery.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,26 @@
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\ARM64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>ARM64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
<OutputPath>bin\ARM64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
6 changes: 6 additions & 0 deletions Lottery.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,23 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Debug|ARM64.ActiveCfg = Debug|ARM64
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Debug|ARM64.Build.0 = Debug|ARM64
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Debug|x64.ActiveCfg = Debug|x64
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Debug|x64.Build.0 = Debug|x64
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Release|Any CPU.Build.0 = Release|Any CPU
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Release|ARM64.ActiveCfg = Release|ARM64
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Release|ARM64.Build.0 = Release|ARM64
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Release|x64.ActiveCfg = Release|x64
{51A28973-A4D6-47A1-BFD5-34713CC1451A}.Release|x64.Build.0 = Release|x64
EndGlobalSection
Expand Down

0 comments on commit 490b0d4

Please sign in to comment.