Skip to content

Commit

Permalink
Merge pull request #87 from capsen/main
Browse files Browse the repository at this point in the history
Add support to build for arm64 version
  • Loading branch information
fortenforge authored May 17, 2024
2 parents 42002b3 + 3fd9591 commit a8fbaab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CodeiumVS/CodeiumVS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,25 @@
<WarningLevel>4</WarningLevel>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|arm64' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\arm64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|arm64' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\arm64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="CodeLensConnection\CodeLensConnectionHandler.cs" />
<Compile Include="CodeLensConnection\CodeLensListener.cs" />
Expand Down

0 comments on commit a8fbaab

Please sign in to comment.