-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Update branding to 6.0.0 Alpha1 #24983
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
Changes from all commits
4590cf9
67c57b5
6cb5dec
22206a4
d357dfa
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 |
---|---|---|
|
@@ -12,24 +12,10 @@ | |
<NoWarn>$(NoWarn.Replace('1591', ''))</NoWarn> | ||
<!-- Set this to false because assemblies should not reference this assembly directly, (except for tests, of course). --> | ||
<IsProjectReferenceProvider>false</IsProjectReferenceProvider> | ||
|
||
<!-- | ||
This project compiles against Microsoft.AspNetCore.App from the SDK. | ||
This ensures that it's packaging output is correct and does not include local artifacts. | ||
--> | ||
<UseAspNetCoreSharedRuntime>true</UseAspNetCoreSharedRuntime> | ||
<DoNotApplyWorkaroundsToMicrosoftAspNetCoreApp>true</DoNotApplyWorkaroundsToMicrosoftAspNetCoreApp> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
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 did this reference change? I'm not too sure about the changes in this file but as long as @pranavkm signs off it should be fine. 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. Probably putting an error above that indicating that we expect "netN" so that we catch this location if something changes. 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. The whole project changed because we have a mess of conflicts because this project attempted to use AspNetCore bits from the SDK as well as reference projects elsewhere in the repo. @pranavkm signed off on doing this in Teams. #26448 is about trimming the package correctly at some point in the 6.0 train but only if this project doesn't move elsewhere. |
||
|
||
<ProjectReference | ||
Include="$(RepoRoot)src\Framework\App.Runtime\src\Microsoft.AspNetCore.App.Runtime.csproj" | ||
PrivateAssets="All" | ||
ReferenceOutputAssembly="false" | ||
SkipGetTargetFrameworkProperties="true" /> | ||
|
||
<Reference Include="Microsoft.AspNetCore" /> | ||
<Reference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" /> | ||
<Compile Include="$(SharedSourceRoot)CommandLineUtils\**\*.cs" /> | ||
</ItemGroup> | ||
|
@@ -46,5 +32,4 @@ | |
<NuspecProperty Include="PackageThirdPartyNoticesFile=$(PackageThirdPartyNoticesFile)" /> | ||
</ItemGroup> | ||
|
||
|
||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
<ItemGroup> | ||
<FrameworkListRootAttributes Include="Name" Value="$(AspNetCoreAppFrameworkBrandName)" /> | ||
<FrameworkListRootAttributes Include="TargetFrameworkIdentifier" Value="$(NETCoreAppFrameworkIdentifier)" /> | ||
<FrameworkListRootAttributes Include="TargetFrameworkVersion" Value="$(AspNetCoreMajorMinorVersion)" /> | ||
<FrameworkListRootAttributes Include="TargetFrameworkVersion" Value="$(DefaultNetCoreTargetFramework.Substring(3))" /> | ||
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. This aligns with the 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. This doesn't look resilient. Granted we probably won't change the format netX.Y to something else, I guess I'm okay with it. |
||
<FrameworkListRootAttributes Include="FrameworkName" Value="$(SharedFxName)" /> | ||
</ItemGroup> | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.