commit
10b0e6f18b
|
|
@ -62,6 +62,10 @@
|
||||||
<WarningsNotAsErrors>$(WarningsNotAsErrors);CS1591</WarningsNotAsErrors>
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);CS1591</WarningsNotAsErrors>
|
||||||
<!-- xUnit1004 = warns about skipped tests. Make this a non-fatal build warning. -->
|
<!-- xUnit1004 = warns about skipped tests. Make this a non-fatal build warning. -->
|
||||||
<WarningsNotAsErrors>$(WarningsNotAsErrors);xUnit1004</WarningsNotAsErrors>
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);xUnit1004</WarningsNotAsErrors>
|
||||||
|
<!-- Working around https://github.com/NuGet/Home/issues/8467 -->
|
||||||
|
<NoWarn>$(NoWarn);NU5131</NoWarn>
|
||||||
|
<!-- Needed until we resolve https://github.com/aspnet/AspNetCore-Internal/issues/3103 -->
|
||||||
|
<NoWarn>$(NoWarn);NU5048</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Source code settings -->
|
<!-- Source code settings -->
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,20 @@
|
||||||
<PackageReference Include="Internal.AspNetCore.BuildTasks" PrivateAssets="All" Version="$(InternalAspNetCoreBuildTasksPackageVersion)" IsImplicitlyDefined="true" />
|
<PackageReference Include="Internal.AspNetCore.BuildTasks" PrivateAssets="All" Version="$(InternalAspNetCoreBuildTasksPackageVersion)" IsImplicitlyDefined="true" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<!-- Workaround when there is no vNext SDK available, copy known apphost/framework reference info from 3.0 -->
|
||||||
|
<KnownAppHostPack
|
||||||
|
Include="@(KnownAppHostPack->WithMetadataValue('TargetFramework', 'netcoreapp3.0'))"
|
||||||
|
TargetFramework="$(DefaultNetCoreTargetFramework)"
|
||||||
|
Condition="@(KnownAppHostPack->Count()) != '0' AND !(@(KnownAppHostPack->AnyHaveMetadataValue('TargetFramework', '$(DefaultNetCoreTargetFramework)')))"
|
||||||
|
/>
|
||||||
|
<KnownFrameworkReference
|
||||||
|
Include="@(KnownFrameworkReference->WithMetadataValue('TargetFramework', 'netcoreapp3.0'))"
|
||||||
|
TargetFramework="$(DefaultNetCoreTargetFramework)"
|
||||||
|
Condition="@(KnownFrameworkReference->Count()) != '0' AND !(@(KnownFrameworkReference->AnyHaveMetadataValue('TargetFramework', '$(DefaultNetCoreTargetFramework)')))"
|
||||||
|
/>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Workaround for netstandard2.1 projects until we can get a preview 8 SDK containing https://github.com/dotnet/sdk/pull/3463 fix. -->
|
<!-- Workaround for netstandard2.1 projects until we can get a preview 8 SDK containing https://github.com/dotnet/sdk/pull/3463 fix. -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<KnownFrameworkReference Update="NETStandard.Library">
|
<KnownFrameworkReference Update="NETStandard.Library">
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"sdk": {
|
"sdk": {
|
||||||
"version": "5.0.100-alpha1-013788"
|
"version": "5.0.100-alpha1-014696"
|
||||||
},
|
},
|
||||||
"tools": {
|
"tools": {
|
||||||
"dotnet": "5.0.100-alpha1-013788",
|
"dotnet": "5.0.100-alpha1-014696",
|
||||||
"runtimes": {
|
"runtimes": {
|
||||||
"dotnet/x64": [
|
"dotnet/x64": [
|
||||||
"$(MicrosoftNETCoreAppRuntimeVersion)"
|
"$(MicrosoftNETCoreAppRuntimeVersion)"
|
||||||
|
|
|
||||||
|
|
@ -16,22 +16,12 @@
|
||||||
|
|
||||||
<KnownFrameworkReference
|
<KnownFrameworkReference
|
||||||
Update="Microsoft.AspNetCore.App"
|
Update="Microsoft.AspNetCore.App"
|
||||||
TargetFramework="${DefaultNetCoreTargetFramework}"
|
|
||||||
DefaultRuntimeFrameworkVersion="${MicrosoftAspNetCoreAppRuntimePackageVersion}"
|
DefaultRuntimeFrameworkVersion="${MicrosoftAspNetCoreAppRuntimePackageVersion}"
|
||||||
LatestRuntimeFrameworkVersion="${MicrosoftAspNetCoreAppRuntimePackageVersion}"
|
LatestRuntimeFrameworkVersion="${MicrosoftAspNetCoreAppRuntimePackageVersion}"
|
||||||
TargetingPackVersion="${MicrosoftAspNetCoreAppRefPackageVersion}"
|
TargetingPackVersion="${MicrosoftAspNetCoreAppRefPackageVersion}"
|
||||||
RuntimePackRuntimeIdentifiers="${SupportedRuntimeIdentifiers}" />
|
RuntimePackRuntimeIdentifiers="${SupportedRuntimeIdentifiers}" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- This can be removed after we update our build to use .NET Core Preivew7 SDK or newer. (Needs https://github.com/dotnet/core-sdk/pull/2401) -->
|
|
||||||
<ItemGroup>
|
|
||||||
<KnownFrameworkReference
|
|
||||||
Update="Microsoft.NETCore.App"
|
|
||||||
RuntimePackNamePatterns="Microsoft.NETCore.App.Runtime.**RID**"
|
|
||||||
AppHostPackNamePattern=""
|
|
||||||
AppHostRuntimeIdentifiers="" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Net.Compilers.Toolset"
|
<PackageReference Include="Microsoft.Net.Compilers.Toolset"
|
||||||
Version="${MicrosoftNetCompilersToolsetPackageVersion}"
|
Version="${MicrosoftNetCompilersToolsetPackageVersion}"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue