You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- use SignalR.Npm.FunctionalTests.npmproj to get non-stable version
- not Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj (avoid C# and F# projects)
- add `_GetPackageVersionInfo` target to all `*.npmproj` projects
- make `_GetPackageVersionInfo` target work when `yarn` is not installed
- switch codesign-xplat.yml to use `dotnet msbuild`
- above change also fixes Code-sign jobs but they're slightly faster using `dotnet msbuild`
Copy file name to clipboardExpand all lines: eng/Publishing.props
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,14 @@
31
31
</ItemGroup>
32
32
33
33
<TargetName="_PublishInstallersAndChecksums">
34
-
<!--
35
-
This target is defined in eng/targets/Packaging.targets and included in every C# and F# project.
36
-
We use Microsoft.AspNetCore.DeveloperCertificates.XPlat because it is a nonshipping package, and we need a non-stable version string to use as our publish location.
37
-
If Microsoft.AspNetCore.DeveloperCertificates.XPlat ever becomes a shipping package, this logic will break, so be careful
34
+
<!--
35
+
This target is defined in eng/targets/Packaging.targets and Npm.Common.targets and included in every C#, F#,
36
+
and npm project. We use SignalR.Npm.FunctionalTests.npmproj because it is non-shipping (we need a non-stable
37
+
version string to use as our publish location), non-packed (won't be shipped in the future), and it is _not_ a
38
+
C# or F# project. For now at least, C# and F# projects should not be referenced when using desktop msbuild.
0 commit comments