Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2019-10-29 04:06:32 +0300
committerJohn Luo <johluo@microsoft.com>2019-10-29 04:06:32 +0300
commit2c6456d4634df947e3cafd5e7dee02289dc12697 (patch)
treed558ed700b77e4690882c8577d4790131ce06615 /Directory.Build.targets
parent0da2edb205969ccbf51e1ac5d0b8df399060907f (diff)
[release/3.0] Update dependencies from 4 repositories (#14425)
* Update dependencies from https://github.com/dotnet/arcade build 20190924.3 * Update dependencies from https://github.com/aspnet/Blazor build 20191003.2 * Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20191007.2 * Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20191010.4 * Remove potentially unnecessary feeds * Install the runtime during source build * Pin m.nc.app.ref * Add aspnetcore-dev feed back to nuget.config * Pin internal refs package * Move efcore internal refs dependency * Compile against ref assemblies * Add manually generated internal ref assembly: * DataProtection * Kestrel * Hosting * Http * Mvc * Middleware * SignalR * Identity * Components * Fix crossgen for ref compilation * Fix tools for ref compilation * Explicitly specify ExcludeFromSourceBuild * Build targeting pack for 3.0.1 * Improve condition for building targeting pack in 3.0.1 * Fixing siteex build for ref compilation * Resolve reference assemblies from Extensions * Don't build refPack during source build * Add big list of project references, for tests to use * Exclude sources files from indirect references * The types in these packages will be compiled into the binaries of the projects that directly depended o it * Add manual indirect references to project references * Add samples/test assets * Don't add indirect refs for ProjectRefs with ReferenceOutputAssembly=false * Fix JSInterop for ref compilation * Do not substitute ext ref assemblies in ref pack * Disable the TestFramework assembly attribute from Logging.Testing There's custom logic in ProjectTemplates.Tests to use a different TestFramework instead * Fix Functional tests * Issues caused by incorrect deps files working around this via test infrastructure instead * Mvc * Analyzers * StaticFiles * SignalR * HttpOverrides
Diffstat (limited to 'Directory.Build.targets')
-rw-r--r--Directory.Build.targets4
1 files changed, 2 insertions, 2 deletions
diff --git a/Directory.Build.targets b/Directory.Build.targets
index db3cea59f1..5cc9bcea01 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -105,9 +105,8 @@
<Compile Include="$(SharedSourceRoot)ReferenceAssemblyInfo.cs" LinkBase="Properties" />
</ItemGroup>
- <PropertyGroup Condition="'$(Language)' == 'C#'">
+ <PropertyGroup Condition="'$(Language)' == 'C#' AND '$(IsReferenceAssemblyProject)' == 'true'">
<!-- Reference assemblies should always use Major.Minor.0.0 for assembly versions even during servicing. Only the package version should be updated. -->
- <!-- Pinning the implementation assemblies at Major.Minor.0.0 as we figure out compiling against ref assemblies. -->
<AssemblyVersion>$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).0.0</AssemblyVersion>
</PropertyGroup>
@@ -155,6 +154,7 @@
</Target>
<Import Project="eng\Workarounds.targets" />
+ <Import Project="eng\IndirectReferences.props" Condition="'$(IsTestProject)' == 'true' OR '$(IsTestAssetProject)' == 'true' OR '$(IsBenchmarkProject)' == 'true' OR '$(IsSampleProject)' == 'true'" />
<Import Project="eng\targets\ResolveIisReferences.targets" Condition=" '$(MSBuildProjectExtension)' != '.vcxproj' " />
<Import Project="eng\targets\Cpp.Common.targets" Condition="'$(MSBuildProjectExtension)' == '.vcxproj'" />
<Import Project="eng\targets\CSharp.Common.targets" Condition="'$(MSBuildProjectExtension)' == '.csproj'" />