Merge in 'release/5.0' changes
This commit is contained in:
commit
00bb7181c3
|
|
@ -134,17 +134,16 @@
|
||||||
In addition, enforce use of Reference items for projects reference providers.
|
In addition, enforce use of Reference items for projects reference providers.
|
||||||
-->
|
-->
|
||||||
<Target Name="_CheckForReferenceBoundaries" BeforeTargets="CollectPackageReferences;ResolveReferences">
|
<Target Name="_CheckForReferenceBoundaries" BeforeTargets="CollectPackageReferences;ResolveReferences">
|
||||||
|
<!-- Dependency graph checks may include unexpected packages. Ignore this because it's not an error. -->
|
||||||
<Error
|
<Error
|
||||||
Condition="@(_InvalidReferenceToSharedFxOnlyAssembly->Count()) != 0"
|
Condition=" '$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)' AND
|
||||||
Text="Cannot reference "%(_InvalidReferenceToSharedFxOnlyAssembly.Identity)" directly because it is part of the shared framework and this project is not. Use <FrameworkReference Include="Microsoft.AspNetCore.App" /> instead." />
|
'$(MSBuildRestoreSessionId)' != '' AND
|
||||||
|
@(_InvalidReferenceToNonSharedFxAssembly->Count()) != 0 "
|
||||||
<Error
|
Text="Cannot reference "%(Identity)". This dependency is not in the shared framework. See docs/SharedFramework.md for instructions on how to modify what is in the shared framework." />
|
||||||
Condition="@(_InvalidReferenceToNonSharedFxAssembly->Count()) != 0 AND '$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'"
|
|
||||||
Text="Cannot reference "%(_InvalidReferenceToNonSharedFxAssembly.Identity)". This dependency is not in the shared framework. See docs/SharedFramework.md for instructions on how to modify what is in the shared framework." />
|
|
||||||
|
|
||||||
<Error
|
<Error
|
||||||
Condition=" '$(EnableCustomReferenceResolution)' == 'true' AND @(_AllProjectReference->WithMetadataValue('DirectUse', '1')->Count()) != 0 "
|
Condition=" '$(EnableCustomReferenceResolution)' == 'true' AND @(_AllProjectReference->WithMetadataValue('DirectUse', '1')->Count()) != 0 "
|
||||||
Text="Cannot reference "%(_AllProjectReference.Identity)" with a ProjectReference item; use a Reference item." />
|
Text="Cannot reference "%(Identity)" with a ProjectReference item; use a Reference item." />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="_WarnAboutRedundantRef" AfterTargets="ResolveFrameworkReferences;ProcessFrameworkReferences">
|
<Target Name="_WarnAboutRedundantRef" AfterTargets="ResolveFrameworkReferences;ProcessFrameworkReferences">
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Client" />
|
<Reference Include="Microsoft.AspNetCore.SignalR.Client" />
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" />
|
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Common" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Ignitor" />
|
<Reference Include="Ignitor" />
|
||||||
<!-- Avoid MSB3277 warnings due to dependencies brought in through Ignitor targeting netstandard2.0. -->
|
|
||||||
<Reference Include="System.Text.Json" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" />
|
<Reference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" />
|
||||||
<Reference Include="Microsoft.AspNetCore.Diagnostics" />
|
<Reference Include="Microsoft.AspNetCore.Diagnostics" />
|
||||||
<Reference Include="Microsoft.Extensions.Hosting" />
|
<Reference Include="Microsoft.Extensions.Hosting" />
|
||||||
<!-- Avoid MSB3277 warnings due to dependencies brought in through Microsoft.AspNetCore.Blazor targeting netstandard2.0. -->
|
|
||||||
<Reference Include="System.Text.Json" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
|
|
||||||
<!-- This project references the shared framework transitively. Prevent restore errors by setting this flag. -->
|
<!-- This project references the shared framework transitively. Prevent restore errors by setting this flag. -->
|
||||||
<GenerateErrorForMissingTargetingPacks>false</GenerateErrorForMissingTargetingPacks>
|
<GenerateErrorForMissingTargetingPacks>false</GenerateErrorForMissingTargetingPacks>
|
||||||
|
|
@ -21,7 +20,6 @@
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.Relational" />
|
<Reference Include="Microsoft.EntityFrameworkCore.Relational" />
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.SQLite" />
|
<Reference Include="Microsoft.EntityFrameworkCore.SQLite" />
|
||||||
<Reference Include="Microsoft.Extensions.Hosting" />
|
<Reference Include="Microsoft.Extensions.Hosting" />
|
||||||
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -29,11 +29,11 @@
|
||||||
<Reference Include="System.Security.Cryptography.Xml" />
|
<Reference Include="System.Security.Cryptography.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Security.Principal.Windows" />
|
<Reference Include="System.Security.Principal.Windows" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" />
|
<Reference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" />
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
<Reference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.DataProtection" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.Json" />
|
<Reference Include="Microsoft.Extensions.Configuration.Json" />
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
|
<Reference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.DataProtection" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,6 @@
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
<Reference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging" />
|
<Reference Include="Microsoft.Extensions.Logging" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.DataProtection" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -35,8 +35,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Configuration" />
|
<Reference Include="Microsoft.Extensions.Logging.Configuration" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.Hosting" />
|
<Reference Include="Microsoft.AspNetCore.Hosting" />
|
||||||
<Reference Include="Microsoft.AspNetCore.Http" />
|
<Reference Include="Microsoft.AspNetCore.Http" />
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
<Reference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
|
<Reference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.FileExtensions" />
|
<Reference Include="Microsoft.Extensions.Configuration.FileExtensions" />
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.Json" />
|
<Reference Include="Microsoft.Extensions.Configuration.Json" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,8 @@
|
||||||
<Reference Include="Microsoft.Extensions.Options" />
|
<Reference Include="Microsoft.Extensions.Options" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup
|
||||||
|
Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.ComponentModel.Annotations" />
|
<Reference Include="System.ComponentModel.Annotations" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Hosting" />
|
<Reference Include="Microsoft.Extensions.Hosting" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,5 @@
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.UserSecrets" />
|
<Reference Include="Microsoft.Extensions.Configuration.UserSecrets" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -42,8 +42,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Configuration" />
|
<Reference Include="Microsoft.Extensions.Logging.Configuration" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Text.Json" />
|
<Reference Include="System.Text.Json" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
<Reference Include="System.ValueTuple" />
|
<Reference Include="System.ValueTuple" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Net.Http" />
|
<Reference Include="System.Net.Http" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
<Reference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
||||||
<Reference Include="Microsoft.AspNetCore.TestHost" />
|
<Reference Include="Microsoft.AspNetCore.TestHost" />
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
<Reference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
<Reference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
<Reference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.Server.IISIntegration" />
|
<Reference Include="Microsoft.AspNetCore.Server.IISIntegration" />
|
||||||
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
<Reference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -9,10 +9,6 @@
|
||||||
<Reference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
<Reference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
||||||
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" />
|
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks" />
|
|
||||||
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -15,10 +15,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" />
|
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="Newtonsoft.Json" />
|
<Reference Include="Newtonsoft.Json" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks" />
|
|
||||||
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.Build.Framework" />
|
<Reference Include="Microsoft.Build.Framework" />
|
||||||
<Reference Include="Microsoft.Build.Utilities.Core" />
|
<Reference Include="Microsoft.Build.Utilities.Core" />
|
||||||
<Reference Include="System.Reflection.Metadata" Condition="'$(TargetFramework)'=='net46'" />
|
<Reference Include="System.Reflection.Metadata" Condition="'$(TargetFramework)'=='net46' OR '$(MSBuildRestoreSessionId)' == ''" />
|
||||||
|
|
||||||
<Reference Include="rzc"
|
<Reference Include="rzc"
|
||||||
Targets="Publish"
|
Targets="Publish"
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,5 @@
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.UserSecrets" />
|
<Reference Include="Microsoft.Extensions.Configuration.UserSecrets" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,10 @@
|
||||||
<Compile Include="$(SharedSourceRoot)CodeAnalysis\*.cs" />
|
<Compile Include="$(SharedSourceRoot)CodeAnalysis\*.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<!-- Special case building from source because Microsoft.Bcl.AsyncInterfaces isn't available for source builds. -->
|
||||||
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR
|
||||||
|
'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR
|
||||||
|
('$(MSBuildRestoreSessionId)' == '' AND '$(DotNetBuildFromSource)' != 'true') ">
|
||||||
<Reference Include="Microsoft.Bcl.AsyncInterfaces" />
|
<Reference Include="Microsoft.Bcl.AsyncInterfaces" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
<Reference Include="Microsoft.Extensions.Options" />
|
<Reference Include="Microsoft.Extensions.Options" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Net.Http" />
|
<Reference Include="System.Net.Http" />
|
||||||
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -36,8 +36,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
||||||
<Reference Include="Newtonsoft.Json" />
|
<Reference Include="Newtonsoft.Json" />
|
||||||
<Reference Include="System.Reactive.Linq" />
|
<Reference Include="System.Reactive.Linq" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Common" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,8 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.Connections.Abstractions" />
|
<Reference Include="Microsoft.AspNetCore.Connections.Abstractions" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup
|
||||||
|
Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Text.Json" />
|
<Reference Include="System.Text.Json" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,11 +26,12 @@
|
||||||
<Reference Include="Microsoft.Extensions.Options" />
|
<Reference Include="Microsoft.Extensions.Options" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup
|
||||||
|
Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Text.Json" />
|
<Reference Include="System.Text.Json" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Net.Sockets" />
|
<Reference Include="System.Net.Sockets" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" />
|
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" />
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" />
|
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" />
|
||||||
<Reference Include="Microsoft.AspNetCore.Testing" />
|
<Reference Include="Microsoft.AspNetCore.Testing" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Common" />
|
|
||||||
|
|
||||||
<Compile Include="$(SharedSourceRoot)ValueStopwatch\*.cs" />
|
<Compile Include="$(SharedSourceRoot)ValueStopwatch\*.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Client" />
|
<Reference Include="Microsoft.AspNetCore.SignalR.Client" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging" />
|
<Reference Include="Microsoft.Extensions.Logging" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Common" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Client" />
|
<Reference Include="Microsoft.AspNetCore.SignalR.Client" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Common" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,6 @@
|
||||||
<Reference Include="Microsoft.Extensions.Configuration.CommandLine" />
|
<Reference Include="Microsoft.Extensions.Configuration.CommandLine" />
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
||||||
<Reference Include="System.Reactive.Linq" />
|
<Reference Include="System.Reactive.Linq" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Common" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="CopyTSClient" BeforeTargets="AfterBuild">
|
<Target Name="CopyTSClient" BeforeTargets="AfterBuild">
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,6 @@
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" />
|
<Reference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" />
|
||||||
<Reference Include="xunit.assert" />
|
<Reference Include="xunit.assert" />
|
||||||
<Reference Include="xunit.extensibility.core" />
|
<Reference Include="xunit.extensibility.core" />
|
||||||
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
||||||
<Reference Include="Microsoft.AspNetCore.SignalR.Common" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
<Reference Include="xunit.extensibility.execution" />
|
<Reference Include="xunit.extensibility.execution" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Net.Http" />
|
<Reference Include="System.Net.Http" />
|
||||||
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net472' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Net.Http" />
|
<Reference Include="System.Net.Http" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,8 @@
|
||||||
<Reference Include="Microsoft.Extensions.Options" />
|
<Reference Include="Microsoft.Extensions.Options" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
|
<ItemGroup
|
||||||
|
Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">
|
||||||
<Reference Include="System.Text.Encodings.Web" />
|
<Reference Include="System.Text.Encodings.Web" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue