-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Clean-up VMR repo projects #48436
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
Clean-up VMR repo projects #48436
Changes from 8 commits
c507adf
46ea906
fe3cbe3
6da42ad
4710dca
4ec1343
0ec4c3e
a9274db
8238da6
1da4775
e61e106
0cba842
08e6cbc
385fb57
7478dd4
64a7a3e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
<Project Sdk="Microsoft.Build.NoTargets"> | ||
|
||
<PropertyGroup> | ||
<LogVerbosityOptOut>true</LogVerbosityOptOut> | ||
|
||
<!-- Tests are only building on Windows - https://github.com/dotnet/source-build/issues/4882 --> | ||
<DotNetBuildTestsOptOut Condition="'$(OS)' != 'Windows_NT'">true</DotNetBuildTestsOptOut> | ||
|
||
<BuildArgs>$(BuildArgs) /p:PortableRid=$(PortableRid)</BuildArgs> | ||
<BuildArgs>$(BuildArgs) $(FlagParameterPrefix)v $(LogVerbosity)</BuildArgs> | ||
|
||
<!-- | ||
Setting NETCoreAppMaximumVersion to a high version so that the sdk doesn't complain if we're restoring/publishing for a higher version than the sdk. | ||
See https://github.com/dotnet/sdk/issues/1512#issuecomment-377082883 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why do we no longer need this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We will rev to the next major version differently with the VMR for .NET 11. At that point I expect that we will globally flow a set of properties in to the inner repos which will allow to target the next major version. The property is currently not needed as maximum version is 10. |
||
--> | ||
<BuildArgs>$(BuildArgs) /p:NETCoreAppMaximumVersion=99.9</BuildArgs> | ||
|
||
<!-- We need to extract the non-portable OS name from the non-portable RID and pass that to installer build script. | ||
This should not happen except when building non-portable. installer generally extracts the OSName from the host OS, | ||
|
@@ -74,11 +65,6 @@ | |
<KeepFeedPrefixes Include="darc-int-dotnet-aspnetcore-" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- https://github.com/dotnet/source-build/issues/4115. --> | ||
<EnvironmentVariables Include="PublishWindowsPdb=false" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ExtraPackageVersionPropsPackageInfo Include="MicrosoftWindowsDesktopAppRuntimewinx64PackageVersion" Version="%24(MicrosoftWindowsDesktopAppRefPackageVersion)" /> | ||
<ExtraPackageVersionPropsPackageInfo Include="MicrosoftNETCoreAppHostwinx64PackageVersion" Version="%24(MicrosoftNETCoreAppRefPackageVersion)" /> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we have a tracking issue for that? since eventually we'll see it in the VMR build too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The remaining roslyn-analyzers component (NetAnalyzers) will be moved into sdk soon (ETA: May-June). The warnings will then show up as part of the move and naturally resolved.