Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable local deploy of the arm64 ServiceHub project #69200

Merged
merged 1 commit into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
<OutputType>Library</OutputType>
<TargetFramework>net472</TargetFramework>
<SetupProductArch>arm64</SetupProductArch>
<!-- If the user is building the entire repository locally, don't deploy this project. We will deploy the x64 flavor,
which for purposes of local deploy is actually the same thing; the only difference of this project and the x64 flavor
is for crossgen, which we don't run during F5. Since either project will work equally well (even if you were developing on
an arm64 machine), we'll just disable this one. -->
<DeployExtension>false</DeployExtension>
</PropertyGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\..\Workspaces\Remote\ServiceHub.CoreComponents\arm64\Microsoft.CodeAnalysis.Remote.ServiceHub.CoreComponents.arm64.csproj">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="35B9F49B-CC6A-4102-923E-2A41C179BF1F" Version="|%CurrentProject%;GetVsixVersion|" Language="en-US" Publisher="Microsoft" />
<DisplayName>Roslyn Services for .NET ServiceHub Host</DisplayName>
<DisplayName>Roslyn Services for .NET ServiceHub Host (arm64)</DisplayName>
<Description xml:space="preserve">Roslyn Services for .NET ServiceHub Host</Description>
<PackageId>Microsoft.CodeAnalysis.VisualStudio.ServiceHub.Setup.arm64</PackageId>
<License>EULA.rtf</License>
Expand Down