зеркало из https://github.com/dotnet/razor.git
Publish rzls as a nuget package for vs-code (#10453)
The majority of this was just copied from the way Roslyn packages their language server. Publish each of our RIDs for rzls as nuget packages instead of zipping them for the cdn.
This commit is contained in:
Родитель
0b7c3a0bc3
Коммит
74bed8ee11
|
@ -38,67 +38,4 @@
|
|||
<FileWrites Include="$(_DependentAssemblyVersionsFile)"/>
|
||||
</ItemGroup>
|
||||
</Target>
|
||||
|
||||
<Target Name="_ZipLanguageServerBinaries" AfterTargets="Pack" Condition="'$(ArcadeBuildFromSource)' != 'true'">
|
||||
<!-- This target is defined in eng/targets/Packaging.targets and included in every project. -->
|
||||
<MSBuild Projects="$(RepoRoot)src\Razor\src\Microsoft.AspNetCore.Razor.LanguageServer\Microsoft.AspNetCore.Razor.LanguageServer.csproj"
|
||||
Targets="_GetPackageVersionInfo"
|
||||
SkipNonexistentProjects="false">
|
||||
<Output TaskParameter="TargetOutputs" ItemName="_ResolvedPackageVersionInfo" />
|
||||
</MSBuild>
|
||||
|
||||
<!-- Build a .zip file from each platform's directory and write it to 'artifacts' -->
|
||||
<PropertyGroup>
|
||||
<RidsPublishDir>$(ArtifactsDir)LanguageServer\$(Configuration)\</RidsPublishDir>
|
||||
<ZipOutputDir>$(RidsPublishDir)</ZipOutputDir>
|
||||
<_PackageVersion>@(_ResolvedPackageVersionInfo->'%(PackageVersion)')</_PackageVersion>
|
||||
<_DotNetPath>$(DOTNET_HOST_PATH)</_DotNetPath>
|
||||
<_DotNetPath Condition="'$(_DotNetPath)' == ''">dotnet</_DotNetPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<LanguageServiceBinaryDir Include="$([System.IO.Directory]::GetDirectories("$(RidsPublishDir)"))" />
|
||||
<LanguageServiceBinary Include="@(LanguageServiceBinaryDir)">
|
||||
<SourceDir>%(LanguageServiceBinaryDir.Identity)</SourceDir>
|
||||
<ZipFile>$(ZipOutputDir)RazorLanguageServer-%(LanguageServiceBinaryDir.Filename)-$(_PackageVersion).zip</ZipFile>
|
||||
</LanguageServiceBinary>
|
||||
</ItemGroup>
|
||||
|
||||
<MakeDir Directories="$(ZipOutputDir)" />
|
||||
<Delete Files="%(LanguageServiceBinary.ZipFile)" />
|
||||
|
||||
<!-- Build a .zip file from each platform's directory and write it to 'artifacts' -->
|
||||
<ZipDirectory SourceDirectory="%(LanguageServiceBinary.SourceDir)" DestinationFile="%(LanguageServiceBinary.ZipFile)" />
|
||||
</Target>
|
||||
|
||||
<Target Name="_ZipDevKitTelemetryBinaries" AfterTargets="_ZipLanguageServerBinaries" Condition="'$(ArcadeBuildFromSource)' != 'true'">
|
||||
<!-- This target is defined in eng/targets/Packaging.targets and included in every project. -->
|
||||
<MSBuild Projects="$(RepoRoot)src\Razor\src\Microsoft.VisualStudio.DevKit.Razor\Microsoft.VisualStudio.DevKit.Razor.csproj"
|
||||
Targets="_GetPackageVersionInfo"
|
||||
SkipNonexistentProjects="false">
|
||||
<Output TaskParameter="TargetOutputs" ItemName="_ResolvedPackageVersionInfo" />
|
||||
</MSBuild>
|
||||
|
||||
<!-- Build a .zip file from each platform's directory and write it to 'artifacts' -->
|
||||
<PropertyGroup>
|
||||
<RidsPublishDir>$(ArtifactsDir)DevKitTelemetry\$(Configuration)\</RidsPublishDir>
|
||||
<ZipOutputDir>$(RidsPublishDir)</ZipOutputDir>
|
||||
<_DotNetPath>$(DOTNET_HOST_PATH)</_DotNetPath>
|
||||
<_DotNetPath Condition="'$(_DotNetPath)' == ''">dotnet</_DotNetPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<DevKitTelemetryBinaryDir Include="$([System.IO.Directory]::GetDirectories("$(RidsPublishDir)"))" />
|
||||
<DevKitTelemetryBinary Include="@(DevKitTelemetryBinaryDir)">
|
||||
<SourceDir>%(DevKitTelemetryBinaryDir.Identity)</SourceDir>
|
||||
<ZipFile>$(ZipOutputDir)DevKitTelemetry-%(DevKitTelemetryBinaryDir.Filename)-$(_PackageVersion).zip</ZipFile>
|
||||
</DevKitTelemetryBinary>
|
||||
</ItemGroup>
|
||||
|
||||
<MakeDir Directories="$(ZipOutputDir)" />
|
||||
<Delete Files="%(DevKitTelemetryBinary.ZipFile)" />
|
||||
|
||||
<!-- Build a .zip file from each platform's directory and write it to 'artifacts' -->
|
||||
<ZipDirectory SourceDirectory="%(DevKitTelemetryBinary.SourceDir)" DestinationFile="%(DevKitTelemetryBinary.ZipFile)" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
|
|
@ -1,30 +0,0 @@
|
|||
<Project>
|
||||
|
||||
<Target Name="_PublishLanguageServerRids" AfterTargets="Pack" Condition="'$(DotNetBuildFromSourceOnly)' != 'true' and '$(DotNetBuildFromSource)' != 'true'">
|
||||
<PropertyGroup>
|
||||
<BuildAnalyzersSolutionPath>$(MSBuildThisFileDirectory)..\BuildAnalyzers.sln</BuildAnalyzersSolutionPath>
|
||||
<LanguageServerProject>$(MSBuildThisFileDirectory)..\src\Razor\src\rzls\rzls.csproj</LanguageServerProject>
|
||||
<RazorSolutionPath>$(MSBuildThisFileDirectory)..\Razor.sln</RazorSolutionPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<MSBuild Projects="$(BuildAnalyzersSolutionPath)"
|
||||
Targets="Restore" />
|
||||
<MSBuild Projects="$(RazorSolutionPath)"
|
||||
Targets="Restore" />
|
||||
<MSBuild Projects="$(LanguageServerProject)"
|
||||
Targets="PublishAllRids" />
|
||||
</Target>
|
||||
|
||||
<Target Name="_PublishDevKitTelemetryRids" AfterTargets="Pack" Condition="'$(DotNetBuildFromSourceOnly)' != 'true' and '$(DotNetBuildFromSource)' != 'true'">
|
||||
<PropertyGroup>
|
||||
<DevKitTelemetryProject>$(MSBuildThisFileDirectory)..\src\Razor\src\Microsoft.VisualStudio.DevKit.Razor\Microsoft.VisualStudio.DevKit.Razor.csproj</DevKitTelemetryProject>
|
||||
<RazorSolutionPath>$(MSBuildThisFileDirectory)..\Razor.sln</RazorSolutionPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<MSBuild Projects="$(RazorSolutionPath)"
|
||||
Targets="Restore" />
|
||||
<MSBuild Projects="$(DevKitTelemetryProject)"
|
||||
Targets="PublishAllRids" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
|
@ -9,6 +9,8 @@
|
|||
<FileSignInfo Include="Nerdbank.Streams.dll" CertificateName="3PartySHA2" />
|
||||
<FileSignInfo Include="MessagePack.Annotations.dll" CertificateName="3PartySHA2" />
|
||||
<FileSignInfo Include="MessagePack.dll" CertificateName="3PartySHA2" />
|
||||
<FileSignInfo Include="Humanizer.dll" CertificateName="3PartySHA2" />
|
||||
<FileSignInfo Include="ICSharpCode.Decompiler.dll" CertificateName="3PartySHA2" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
|
@ -1,4 +1,25 @@
|
|||
{
|
||||
"feeds": {
|
||||
"vs-impl": "https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-impl/nuget/v3/index.json"
|
||||
},
|
||||
"packages": {
|
||||
"default": {
|
||||
"rzls": "vs-impl",
|
||||
"rzls.alpine-arm64": "vs-impl",
|
||||
"rzls.alpine-x64": "vs-impl",
|
||||
"rzls.linux-arm64": "vs-impl",
|
||||
"rzls.linux-x64": "vs-impl",
|
||||
"rzls.linux-musl-x64": "vs-impl",
|
||||
"rzls.linux-musl-arm64": "vs-impl",
|
||||
"rzls.neutral": "vs-impl",
|
||||
"rzls.osx-arm64": "vs-impl",
|
||||
"rzls.osx-x64": "vs-impl",
|
||||
"rzls.win-arm64": "vs-impl",
|
||||
"rzls.win-x64": "vs-impl",
|
||||
"rzls.win-x86": "vs-impl",
|
||||
"Microsoft.VisualStudio.DevKit.Razor": "vs-impl"
|
||||
}
|
||||
},
|
||||
"branches": {
|
||||
"main": {
|
||||
"nugetKind": [
|
||||
|
|
|
@ -1,30 +1,15 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>$(DefaultNetCoreTargetFrameworks)</TargetFrameworks>
|
||||
<PublishTargetFramework>net8.0</PublishTargetFramework>
|
||||
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
||||
<OutputType>Library</OutputType>
|
||||
<Description>Razor is a markup syntax for adding server-side logic to web pages. This package contains the language server assets for C# DevKit.</Description>
|
||||
<EnableApiCheck>false</EnableApiCheck>
|
||||
<IsShippingPackage>false</IsShippingPackage>
|
||||
<RemoveDevicePlatformSupport>true</RemoveDevicePlatformSupport>
|
||||
</PropertyGroup>
|
||||
<IsShippingPackage>true</IsShippingPackage>
|
||||
<IsPackable>true</IsPackable>
|
||||
|
||||
<!--
|
||||
In a vertical build, we'll only publish for the RID of the vertical.
|
||||
In a non-vertical build, we'll publish for all RIDs of the OS we are building on (to reduce the number of CI jobs).
|
||||
-->
|
||||
<PropertyGroup Condition="'$(DotNetBuild)' != 'true'">
|
||||
<RuntimeIdentifiers Condition="$([MSBuild]::IsOSPlatform('Windows'))">win-x64;win-arm64</RuntimeIdentifiers>
|
||||
<RuntimeIdentifiers Condition="$([MSBuild]::IsOSPlatform('Linux'))">linux-x64;linux-musl-x64;linux-arm64;linux-musl-arm64</RuntimeIdentifiers>
|
||||
<RuntimeIdentifiers Condition="$([MSBuild]::IsOSPlatform('OSX'))">osx-x64;osx-arm64</RuntimeIdentifiers>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(DotNetBuild)' == 'true'">
|
||||
<RuntimeIdentifiers>$(TargetRid)</RuntimeIdentifiers>
|
||||
<RuntimeIdentifier>$(TargetRid)</RuntimeIdentifier>
|
||||
<SelfContained>false</SelfContained>
|
||||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
||||
<RidSpecificPublishNoBuildProperty>NoBuild=true</RidSpecificPublishNoBuildProperty>
|
||||
<!-- This is not a standard nuget package and only consumed by the extension build. We don't care if the folder structure doesn't match what nuget expects. -->
|
||||
<NoWarn>$(NoWarn);NU5100</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -37,6 +22,10 @@
|
|||
<PackageReference Include="Microsoft.VisualStudio.Telemetry" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="$(TargetPath)" Pack="true" PackagePath="content" CopyToOutputDirectory="PreserveNewest" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="$(RepositoryRoot)NOTICE.txt">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
|
@ -46,38 +35,4 @@
|
|||
<ItemGroup>
|
||||
<ProjectReference Include="..\Microsoft.AspNetCore.Razor.ProjectEngineHost\Microsoft.AspNetCore.Razor.ProjectEngineHost.csproj" PrivateAssets="all" />
|
||||
</ItemGroup>
|
||||
|
||||
<!--
|
||||
Technique for publishing multiple RIDs from
|
||||
https://github.com/dotnet/cli/issues/9221#issuecomment-387512008
|
||||
Example usage:
|
||||
dotnet msbuild -restore -t:PublishAllRids -p:Configuration=Release
|
||||
-->
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
|
||||
<!-- Enable roll-forward to latest patch. This allows one restore operation
|
||||
to apply to all of the self-contained publish operations. -->
|
||||
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
||||
<RidsPublishDir>$(ArtifactsDir)DevKitTelemetry\$(Configuration)\</RidsPublishDir>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="PublishAllRids">
|
||||
<ItemGroup>
|
||||
<!-- Transform RuntimeIdentifiers property to item -->
|
||||
<RuntimeIdentifierForPublish Include="$(RuntimeIdentifiers)" />
|
||||
|
||||
<!-- Transform RuntimeIdentifierForPublish items to project items to pass to MSBuild task -->
|
||||
<ProjectToPublish Include="@(RuntimeIdentifierForPublish->'$(MSBuildProjectFullPath)')">
|
||||
<AdditionalProperties>_IsPublishing=true;$(RidSpecificPublishNoBuildProperty);RuntimeIdentifier=%(RuntimeIdentifierForPublish.Identity);PublishDir=$(RidsPublishDir)%(RuntimeIdentifierForPublish.Identity)\;TargetFramework=$(PublishTargetFramework);SelfContained=false</AdditionalProperties>
|
||||
</ProjectToPublish>
|
||||
|
||||
<ProjectToPublish_PlatformAgnostic Include="$(MSBuildProjectFullPath)">
|
||||
<AdditionalProperties>_IsPublishing=true;NoBuild=true;PublishDir=$(RidsPublishDir)\PlatformAgnostic\;UseAppHost=false;TargetFramework=$(PublishTargetFramework);SelfContained=false</AdditionalProperties>
|
||||
</ProjectToPublish_PlatformAgnostic>
|
||||
</ItemGroup>
|
||||
|
||||
<MSBuild Projects="@(ProjectToPublish)" Targets="Publish" BuildInParallel="false" />
|
||||
<MSBuild Projects="@(ProjectToPublish_PlatformAgnostic)" Targets="Publish" BuildInParallel="false" Condition="'$(OS)' == 'WINDOWS_NT'" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
<Project>
|
||||
<!-- We are defining our own Pack target, so opt out of the SDK version. -->
|
||||
<PropertyGroup>
|
||||
<ImportNuGetBuildTasksPackTargetsFromSdk>false</ImportNuGetBuildTasksPackTargetsFromSdk>
|
||||
<_RazorPublishReadyToRun>false</_RazorPublishReadyToRun>
|
||||
<_RazorPublishReadyToRun Condition="'$(Configuration)' == 'Release'">true</_RazorPublishReadyToRun>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="Pack">
|
||||
<!--
|
||||
We have to run restore first with the PublishReadyToRun flag set to true to ensure that the correct crossgen packages get restored.
|
||||
See https://github.com/dotnet/sdk/issues/20701
|
||||
|
||||
We also pass the RestoreUseStaticGraphEvaluation=false flag to workaround a long path issue when calling the restore target.
|
||||
See https://github.com/NuGet/Home/issues/11968
|
||||
-->
|
||||
<MSBuild Projects="$(MSBuildProjectFullPath)" Targets="Restore" Properties="PublishReadyToRun=$(_RazorPublishReadyToRun);RestoreUseStaticGraphEvaluation=false" />
|
||||
|
||||
<ItemGroup>
|
||||
<!-- Transform RuntimeIdentifiers property to item -->
|
||||
<RuntimeIdentifierForPack Include="$(RuntimeIdentifiers)" />
|
||||
<RuntimeIdentifierForPack Include="neutral" />
|
||||
|
||||
<!-- Transform RuntimeIdentifierForPublish items to project items to pass to MSBuild task -->
|
||||
<ProjectToPublish Include="@(RuntimeIdentifierForPack->'$(MSBuildProjectFullPath)')">
|
||||
<AdditionalProperties>PackRuntimeIdentifier=%(RuntimeIdentifierForPack.Identity)</AdditionalProperties>
|
||||
</ProjectToPublish>
|
||||
</ItemGroup>
|
||||
|
||||
<MSBuild Projects="@(ProjectToPublish)" Targets="Pack" BuildInParallel="true" />
|
||||
</Target>
|
||||
</Project>
|
|
@ -1,36 +1,90 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>$(DefaultNetCoreTargetFrameworks)</TargetFrameworks>
|
||||
<PublishTargetFramework>net8.0</PublishTargetFramework>
|
||||
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
||||
<OutputType>Exe</OutputType>
|
||||
<Description>Razor is a markup syntax for adding server-side logic to web pages. This package contains a Razor language server.</Description>
|
||||
<Description>Razor is a markup syntax for adding server-side logic to web pages. This package
|
||||
contains a Razor language server.</Description>
|
||||
<RootNamespace>Microsoft.AspNetCore.Razor.LanguageServer</RootNamespace>
|
||||
<EnableApiCheck>false</EnableApiCheck>
|
||||
<IsShippingPackage>false</IsShippingPackage>
|
||||
<RemoveDevicePlatformSupport>true</RemoveDevicePlatformSupport>
|
||||
</PropertyGroup>
|
||||
<IsShippingPackage>true</IsShippingPackage>
|
||||
|
||||
<!--
|
||||
In a vertical build, we'll only publish for the RID of the vertical.
|
||||
In a non-vertical build, we'll publish for all RIDs of the OS we are building on (to reduce the number of CI jobs).
|
||||
Build a nuget package for this project. This is not consumed as a standard NuGet package; it just
|
||||
contains
|
||||
the server executables that we need to ship inside the extension vsix. The extension will download
|
||||
this and extract the
|
||||
executables when it builds. NuGet just happens to be a convenient way to share build artifacts.
|
||||
-->
|
||||
<PropertyGroup Condition="'$(DotNetBuild)' != 'true'">
|
||||
<RuntimeIdentifiers Condition="$([MSBuild]::IsOSPlatform('Windows'))">win-x64;win-arm64</RuntimeIdentifiers>
|
||||
<RuntimeIdentifiers Condition="$([MSBuild]::IsOSPlatform('Linux'))">linux-x64;linux-musl-x64;linux-arm64;linux-musl-arm64</RuntimeIdentifiers>
|
||||
<RuntimeIdentifiers Condition="$([MSBuild]::IsOSPlatform('OSX'))">osx-x64;osx-arm64</RuntimeIdentifiers>
|
||||
<IsPackable>true</IsPackable>
|
||||
<!-- Our outer Pack task (defined in PackAllRids.targets) invokes Pack passing in a
|
||||
PackRuntimeIdentifier to produce one package per RID; from that we can set everything else. -->
|
||||
<RuntimeIdentifier Condition="'$(PackRuntimeIdentifier)' != '' and '$(PackRuntimeIdentifier)' != 'neutral'">$(PackRuntimeIdentifier)</RuntimeIdentifier>
|
||||
|
||||
<!--
|
||||
By default since this is an Exe project and we build on windows, we'll get a .exe as output from a
|
||||
platform neutral build.
|
||||
However, we really only want an executable if we're building for a specific platform (aka have a
|
||||
runtime identifier).
|
||||
|
||||
So if we don't have a platform, tell the build not to output a .exe file because we're building
|
||||
platform neutral bits.
|
||||
-->
|
||||
<UseAppHost Condition="'$(RuntimeIdentifier)' == ''">false</UseAppHost>
|
||||
|
||||
<PackageId>$(AssemblyName).$(PackRuntimeIdentifier)</PackageId>
|
||||
|
||||
<!--
|
||||
Publish the platform specific executables before any of the pack related targets run.
|
||||
This is important to ensure that the content files exist on the project before nuget looks for
|
||||
them.
|
||||
|
||||
Note that BeforeTargets="Pack" is not enough, as the determination of what to include in the
|
||||
package runs
|
||||
before the actual "Pack" target runs.
|
||||
-->
|
||||
<BeforePack>PackPublishContent;$(BeforePack)</BeforePack>
|
||||
|
||||
<!--
|
||||
NU5100: Since this is not a standard nuget package and is only consumed by the extension build, we
|
||||
don't care if the folder structure doesn't match what nuget expects.
|
||||
NETSDK1206: Until we move to a newer release of the SQLitePCLRaw packages (2.1.6+) that removes the
|
||||
libs for alpine RIDs, we have to ignore the SDK warning about distribution specific RIDs.
|
||||
-->
|
||||
<NoWarn>$(NoWarn);NU5100;NETSDK1206</NoWarn>
|
||||
|
||||
<!-- Publishing settings -->
|
||||
<SelfContained>false</SelfContained>
|
||||
<PublishDir Condition="'$(RuntimeIdentifier)' != ''">$(ArtifactsDir)LanguageServer\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)</PublishDir>
|
||||
<PublishDir Condition="'$(RuntimeIdentifier)' == ''">$(ArtifactsDir)LanguageServer\$(Configuration)\$(TargetFramework)\neutral</PublishDir>
|
||||
|
||||
<!-- List of runtime identifiers that we want to publish an executable for. -->
|
||||
<!-- When building a VMR vertical, we don't need to pack everything. Just pack the passed in
|
||||
TargetRid.
|
||||
TargetRid is provided to razor via the build arguments passed in the VMR orchestrator's repo
|
||||
project. We copy roslyn here:
|
||||
https://github.com/dotnet/dotnet/blob/main/repo-projects/roslyn.proj. For definitions of the
|
||||
TargetRid
|
||||
and other common properties, see
|
||||
https://github.com/dotnet/arcade/blob/main/Documentation/UnifiedBuild/Unified-Build-Controls.md -->
|
||||
<RuntimeIdentifiers Condition="'$(TargetRid)' != ''">$(TargetRid)</RuntimeIdentifiers>
|
||||
<RuntimeIdentifiers Condition="'$(TargetRid)' == ''">win-x64;win-arm64;linux-x64;linux-arm64;linux-musl-x64;linux-musl-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
|
||||
<!-- Publish ready to run executables when we're publishing platform specific executables. -->
|
||||
<PublishReadyToRun Condition="'$(RuntimeIdentifier)' != '' AND '$(Configuration)' == 'Release' ">true</PublishReadyToRun>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(DotNetBuild)' == 'true'">
|
||||
<RuntimeIdentifiers>$(TargetRid)</RuntimeIdentifiers>
|
||||
<RuntimeIdentifier>$(TargetRid)</RuntimeIdentifier>
|
||||
<SelfContained>false</SelfContained>
|
||||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
||||
<RidSpecificPublishNoBuildProperty>NoBuild=true</RidSpecificPublishNoBuildProperty>
|
||||
</PropertyGroup>
|
||||
<!-- When we are packing each RID, we set PackRuntimeIdentifier; by default this will also get
|
||||
passed to the builds of all ResolveProjectReferences
|
||||
which causes a lot of duplicate building. This removes it. -->
|
||||
<ItemDefinitionGroup>
|
||||
<ProjectReference>
|
||||
<GlobalPropertiesToRemove>PackRuntimeIdentifier</GlobalPropertiesToRemove>
|
||||
</ProjectReference>
|
||||
</ItemDefinitionGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Microsoft.AspNetCore.Razor.LanguageServer\Microsoft.AspNetCore.Razor.LanguageServer.csproj" />
|
||||
<ProjectReference
|
||||
Include="..\Microsoft.AspNetCore.Razor.LanguageServer\Microsoft.AspNetCore.Razor.LanguageServer.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -47,39 +101,20 @@
|
|||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
<!--
|
||||
Technique for publishing multiple RIDs from
|
||||
https://github.com/dotnet/cli/issues/9221#issuecomment-387512008
|
||||
Example usage:
|
||||
dotnet msbuild -restore -t:PublishAllRids -p:Configuration=Release
|
||||
-->
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
<RollForward>LatestMajor</RollForward>
|
||||
<RidsPublishDir>$(ArtifactsDir)LanguageServer\$(Configuration)\</RidsPublishDir>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="PackPublishContent" DependsOnTargets="Publish">
|
||||
<!-- We have to add the content files in a target (and not just defined in a normal item group) since they are produced by the prior step and won't exist at evaluation time. -->
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.DiaSymReader" />
|
||||
<PackageReference Include="System.Private.Uri" />
|
||||
<Content Include="$(PublishDir)/**/*.*">
|
||||
<Pack>true</Pack>
|
||||
<PackagePath>content\LanguageServer\$(PackRuntimeIdentifier)</PackagePath>
|
||||
<CopyToOutput>false</CopyToOutput>
|
||||
<BuildAction>None</BuildAction>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="PublishAllRids">
|
||||
<ItemGroup>
|
||||
<!-- Transform RuntimeIdentifiers property to item -->
|
||||
<RuntimeIdentifierForPublish Include="$(RuntimeIdentifiers)" />
|
||||
|
||||
<!-- Transform RuntimeIdentifierForPublish items to project items to pass to MSBuild task -->
|
||||
<ProjectToPublish Include="@(RuntimeIdentifierForPublish->'$(MSBuildProjectFullPath)')">
|
||||
<AdditionalProperties>_IsPublishing=true;$(RidSpecificPublishNoBuildProperty);RuntimeIdentifier=%(RuntimeIdentifierForPublish.Identity);PublishDir=$(RidsPublishDir)%(RuntimeIdentifierForPublish.Identity)\;TargetFramework=$(PublishTargetFramework);SelfContained=false</AdditionalProperties>
|
||||
</ProjectToPublish>
|
||||
|
||||
<ProjectToPublish_PlatformAgnostic Include="$(MSBuildProjectFullPath)">
|
||||
<AdditionalProperties>_IsPublishing=true;NoBuild=true;PublishDir=$(RidsPublishDir)\PlatformAgnostic\;UseAppHost=false;TargetFramework=$(PublishTargetFramework);SelfContained=false</AdditionalProperties>
|
||||
</ProjectToPublish_PlatformAgnostic>
|
||||
</ItemGroup>
|
||||
|
||||
<MSBuild Projects="@(ProjectToPublish)" Targets="Publish" BuildInParallel="false" />
|
||||
<MSBuild Projects="@(ProjectToPublish_PlatformAgnostic)" Targets="Publish" BuildInParallel="false" Condition="'$(OS)' == 'WINDOWS_NT'" />
|
||||
</Target>
|
||||
|
||||
<!-- If we don't have a PackRuntimeIdentifier set, that means pack has been invoked on the project directly, with say dotnet pack. In this case
|
||||
we'll replace the Pack target with one that instead recursively invokes pack for each runtime identifier. We define those targets
|
||||
in a separate .targets file, since we can't say to MSBuild "only consider our Pack target as a definition based on this condition" any other way. -->
|
||||
<Import Project="PublishAllRids.targets" Condition="'$(PackRuntimeIdentifier)' == ''" />
|
||||
</Project>
|
||||
|
|
Загрузка…
Ссылка в новой задаче