зеркало из https://github.com/dotnet/razor.git
Use new PreserveCompilationReferences in Razor Sdk (#187)
* Use new PreserveCompilationReferences in Razor Sdk Fixes https://github.com/aspnet/AspNetCore/issues/6512
This commit is contained in:
Родитель
27e1d8c011
Коммит
f58c436961
|
@ -37,9 +37,9 @@ jobs:
|
||||||
pool:
|
pool:
|
||||||
# agent pool can't be read from a user-defined variable (Azure DevOps limitation)
|
# agent pool can't be read from a user-defined variable (Azure DevOps limitation)
|
||||||
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
|
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
|
||||||
name: dotnet-external-temp
|
name: dotnet-external-temp-vs2019
|
||||||
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
||||||
name: dotnet-internal-temp
|
name: dotnet-internal-temp-vs2019
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
debug:
|
debug:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"tools": {
|
"tools": {
|
||||||
"dotnet": "3.0.100-preview-009812",
|
"dotnet": "3.0.100-preview-010184",
|
||||||
"vs": {
|
"vs": {
|
||||||
"version": "15.9",
|
"version": "15.9",
|
||||||
"components": [
|
"components": [
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sdk": {
|
"sdk": {
|
||||||
"version": "3.0.100-preview-009812"
|
"version": "3.0.100-preview-010184"
|
||||||
},
|
},
|
||||||
"msbuild-sdks": {
|
"msbuild-sdks": {
|
||||||
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19108.1"
|
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19108.1"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 16.0.28410.60
|
VisualStudioVersion = 16.0.28410.60
|
||||||
MinimumVisualStudioVersion = 15.0.26730.03
|
MinimumVisualStudioVersion = 16.0.0.0
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3C0D6505-79B3-49D0-B4C3-176F0F1836ED}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3C0D6505-79B3-49D0-B4C3-176F0F1836ED}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
src\Directory.Build.props = src\Directory.Build.props
|
src\Directory.Build.props = src\Directory.Build.props
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 16.0.28410.60
|
VisualStudioVersion = 16.0.28410.60
|
||||||
MinimumVisualStudioVersion = 15.0.26730.03
|
MinimumVisualStudioVersion = 16.0.0.0
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3C0D6505-79B3-49D0-B4C3-176F0F1836ED}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3C0D6505-79B3-49D0-B4C3-176F0F1836ED}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
src\Directory.Build.props = src\Directory.Build.props
|
src\Directory.Build.props = src\Directory.Build.props
|
||||||
|
|
|
@ -42,14 +42,6 @@ Copyright (c) .NET Foundation. All rights reserved.
|
||||||
-->
|
-->
|
||||||
<CopyRazorGenerateFilesToPublishDirectory Condition="'$(CopyRazorGenerateFilesToPublishDirectory)'==''">false</CopyRazorGenerateFilesToPublishDirectory>
|
<CopyRazorGenerateFilesToPublishDirectory Condition="'$(CopyRazorGenerateFilesToPublishDirectory)'==''">false</CopyRazorGenerateFilesToPublishDirectory>
|
||||||
|
|
||||||
<!--
|
|
||||||
Set to true to copy reference assembly items to the publish directory.
|
|
||||||
|
|
||||||
Typically reference assemblies are not needed for a published application if Razor compilation occurs at build-time
|
|
||||||
or publish-time. By default, the Razor SDK will suppress the copying of reference assemblies to the publish directory.
|
|
||||||
-->
|
|
||||||
<CopyRefAssembliesToPublishDirectory Condition="'$(CopyRefAssembliesToPublishDirectory)'==''">false</CopyRefAssembliesToPublishDirectory>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Determines the toolset to use to compile Razor (.cshtml) files. Defaults to 'Implicit' to let the Razor Sdk determine the toolset to use.
|
Determines the toolset to use to compile Razor (.cshtml) files. Defaults to 'Implicit' to let the Razor Sdk determine the toolset to use.
|
||||||
Valid values include 'Implicit', 'RazorSdk', and 'PrecompilationTool'.
|
Valid values include 'Implicit', 'RazorSdk', and 'PrecompilationTool'.
|
||||||
|
@ -68,7 +60,11 @@ Copyright (c) .NET Foundation. All rights reserved.
|
||||||
-->
|
-->
|
||||||
<RazorGenerateOutputFileExtension>.g.cs</RazorGenerateOutputFileExtension>
|
<RazorGenerateOutputFileExtension>.g.cs</RazorGenerateOutputFileExtension>
|
||||||
|
|
||||||
|
<!-- Determines if the deps file includes complication context -->
|
||||||
<PreserveCompilationContext>true</PreserveCompilationContext>
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
||||||
|
|
||||||
|
<!-- Determines if the refs folder is produced as part of build \ publish -->
|
||||||
|
<PreserveCompilationReferences>false</PreserveCompilationReferences>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(EnableDefaultItems)' == 'true' And '$(EnableDefaultContentItems)' == 'true'">
|
<ItemGroup Condition="'$(EnableDefaultItems)' == 'true' And '$(EnableDefaultContentItems)' == 'true'">
|
||||||
|
|
|
@ -174,8 +174,14 @@ Copyright (c) .NET Foundation. All rights reserved.
|
||||||
<CopyRazorGenerateFilesToPublishDirectory Condition="'$(MvcRazorExcludeViewFilesFromPublish)'=='true'">false</CopyRazorGenerateFilesToPublishDirectory>
|
<CopyRazorGenerateFilesToPublishDirectory Condition="'$(MvcRazorExcludeViewFilesFromPublish)'=='true'">false</CopyRazorGenerateFilesToPublishDirectory>
|
||||||
<CopyRazorGenerateFilesToPublishDirectory Condition="'$(MvcRazorExcludeViewFilesFromPublish)'=='false'">true</CopyRazorGenerateFilesToPublishDirectory>
|
<CopyRazorGenerateFilesToPublishDirectory Condition="'$(MvcRazorExcludeViewFilesFromPublish)'=='false'">true</CopyRazorGenerateFilesToPublishDirectory>
|
||||||
|
|
||||||
<CopyRefAssembliesToPublishDirectory Condition="'$(MvcRazorExcludeRefAssembliesFromPublish)'=='true'">false</CopyRefAssembliesToPublishDirectory>
|
<!--
|
||||||
<CopyRefAssembliesToPublishDirectory Condition="'$(MvcRazorExcludeRefAssembliesFromPublish)'=='false'">true</CopyRefAssembliesToPublishDirectory>
|
In 2.x, setting CopyRefAssembliesToPublishDirectory controlled copying of the refs directory to the publish directory.
|
||||||
|
If explicitly specified, use it to override PreserveCompilationReferences.
|
||||||
|
-->
|
||||||
|
<PreserveCompilationReferences Condition="'$(CopyRefAssembliesToPublishDirectory)'!=''">$(CopyRefAssembliesToPublishDirectory)</PreserveCompilationReferences>
|
||||||
|
|
||||||
|
<PreserveCompilationReferences Condition="'$(MvcRazorExcludeRefAssembliesFromPublish)'=='true'">false</PreserveCompilationReferences>
|
||||||
|
<PreserveCompilationReferences Condition="'$(MvcRazorExcludeRefAssembliesFromPublish)'=='false'">true</PreserveCompilationReferences>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
We can't set the actual default value here due to evaluation order (depends on $(OutDir)).
|
We can't set the actual default value here due to evaluation order (depends on $(OutDir)).
|
||||||
|
@ -228,6 +234,16 @@ Copyright (c) .NET Foundation. All rights reserved.
|
||||||
<MvcRazorCompileOnPublish Condition="'$(MvcRazorCompileOnPublish)' == ''">true</MvcRazorCompileOnPublish>
|
<MvcRazorCompileOnPublish Condition="'$(MvcRazorCompileOnPublish)' == ''">true</MvcRazorCompileOnPublish>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- Back-compat for PrecompilationTool -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<!--
|
||||||
|
For 2.x desktop targeting projects using MvcPrecompilation, ref assemblies are required to compile the PrecompiledViews.dll,
|
||||||
|
but are removed by the tool once done. Set PreserveCompilationReferences = true, ignoring any value configured in the project,
|
||||||
|
if the project is using the precompilation tool.
|
||||||
|
-->
|
||||||
|
<PreserveCompilationReferences Condition="'$(ResolvedRazorCompileToolset)'=='PrecompilationTool'">true</PreserveCompilationReferences>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Properties that configure Razor SDK, but need to be defined in targets due to evaluation order.
|
Properties that configure Razor SDK, but need to be defined in targets due to evaluation order.
|
||||||
-->
|
-->
|
||||||
|
@ -711,21 +727,6 @@ Copyright (c) .NET Foundation. All rights reserved.
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target
|
|
||||||
Name="_RazorRemoveRefAssembliesFromPublish"
|
|
||||||
AfterTargets="ComputeRefAssembliesToPublish"
|
|
||||||
Condition="'$(ResolvedRazorCompileToolset)'=='RazorSdk' and '$(RazorCompileOnPublish)'=='true' and '$(CopyRefAssembliesToPublishDirectory)'=='false'">
|
|
||||||
<!--
|
|
||||||
The ref assemblies are published whenever PreserveCompilationContext is true, which we expect to be true for
|
|
||||||
most usages of Razor. There's no setting that excludes just the ref assemblies, so we do it ourselves.
|
|
||||||
-->
|
|
||||||
<ItemGroup>
|
|
||||||
<ResolvedFileToPublish
|
|
||||||
Remove="%(ResolvedFileToPublish.Identity)"
|
|
||||||
Condition="'%(ResolvedFileToPublish.RelativePath)'=='$(RefAssembliesFolderName)\%(Filename)%(Extension)'"/>
|
|
||||||
</ItemGroup>
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<Target Name="_CheckForMissingRazorCompiler" Condition="'$(IsRazorCompilerReferenced)' != 'true'">
|
<Target Name="_CheckForMissingRazorCompiler" Condition="'$(IsRazorCompilerReferenced)' != 'true'">
|
||||||
<Error
|
<Error
|
||||||
Text="A PackageReference for 'Microsoft.AspNetCore.Razor.Design' was not included in your project. This package is required to compile Razor files. Typically, a
|
Text="A PackageReference for 'Microsoft.AspNetCore.Razor.Design' was not included in your project. This package is required to compile Razor files. Typically, a
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<!-- To generate baselines, run tests with /p:GenerateBaselines=true -->
|
<!-- To generate baselines, run tests with /p:GenerateBaselines=true -->
|
||||||
<DefineConstants Condition="'$(GenerateBaselines)'=='true'">$(DefineConstants);GENERATE_BASELINES</DefineConstants>
|
<DefineConstants Condition="'$(GenerateBaselines)'=='true'">$(DefineConstants);GENERATE_BASELINES</DefineConstants>
|
||||||
<DefineConstants>$(DefineConstants);__RemoveThisBitTo__GENERATE_BASELINES</DefineConstants>
|
<DefineConstants>$(DefineConstants);__RemoveThisBitTo__GENERATE_BASELINES</DefineConstants>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -32,6 +32,7 @@ namespace Microsoft.CodeAnalysis
|
||||||
|
|
||||||
private static IEnumerable<string> ResolvePaths(CompilationLibrary library)
|
private static IEnumerable<string> ResolvePaths(CompilationLibrary library)
|
||||||
{
|
{
|
||||||
|
#if NETFRAMEWORK
|
||||||
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
|
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
|
||||||
for (var i = 0; i < assemblies.Length; i++)
|
for (var i = 0; i < assemblies.Length; i++)
|
||||||
{
|
{
|
||||||
|
@ -40,6 +41,7 @@ namespace Microsoft.CodeAnalysis
|
||||||
return new[] { assemblies[i].Location };
|
return new[] { assemblies[i].Location };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
@ -235,7 +235,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[InitializeTestProject("SimpleMvc")]
|
[InitializeTestProject("SimpleMvc")]
|
||||||
public async Task Build_WithViews_ProducesDepsFileWithCompilationContext()
|
public async Task Build_WithViews_ProducesDepsFileWithCompilationContext_ButNoReferences()
|
||||||
{
|
{
|
||||||
var customDefine = "RazorSdkTest";
|
var customDefine = "RazorSdkTest";
|
||||||
var result = await DotnetMSBuild("Build", $"/p:DefineConstants={customDefine}");
|
var result = await DotnetMSBuild("Build", $"/p:DefineConstants={customDefine}");
|
||||||
|
@ -247,13 +247,16 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
var dependencyContext = ReadDependencyContext(depsFilePath);
|
var dependencyContext = ReadDependencyContext(depsFilePath);
|
||||||
|
|
||||||
// Pick a couple of libraries and ensure they have some compile references
|
// Pick a couple of libraries and ensure they have some compile references
|
||||||
var packageReference = dependencyContext.CompileLibraries.First(l => l.Name == "Microsoft.NETCore.App");
|
var packageReference = dependencyContext.CompileLibraries.First(l => l.Name == "System.Diagnostics.DiagnosticSource");
|
||||||
Assert.NotEmpty(packageReference.Assemblies);
|
Assert.NotEmpty(packageReference.Assemblies);
|
||||||
|
|
||||||
var projectReference = dependencyContext.CompileLibraries.First(l => l.Name == "SimpleMvc");
|
var projectReference = dependencyContext.CompileLibraries.First(l => l.Name == "SimpleMvc");
|
||||||
Assert.NotEmpty(projectReference.Assemblies);
|
Assert.NotEmpty(projectReference.Assemblies);
|
||||||
|
|
||||||
Assert.Contains(customDefine, dependencyContext.CompilationOptions.Defines);
|
Assert.Contains(customDefine, dependencyContext.CompilationOptions.Defines);
|
||||||
|
|
||||||
|
// Verify no refs folder is produced
|
||||||
|
Assert.FileCountEquals(result, 0, Path.Combine(PublishOutputPath, "refs"), "*.dll");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
|
|
@ -37,5 +37,25 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
Path.Combine(IntermediateOutputPath, "SimpleMvc21.TagHelpers.output.cache"),
|
Path.Combine(IntermediateOutputPath, "SimpleMvc21.TagHelpers.output.cache"),
|
||||||
@"""Name"":""SimpleMvc.SimpleTagHelper""");
|
@"""Name"":""SimpleMvc.SimpleTagHelper""");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
[InitializeTestProject("SimpleMvc21")]
|
||||||
|
public async Task Publish_NETCoreApp21TargetingProject()
|
||||||
|
{
|
||||||
|
TargetFramework = "netcoreapp2.1";
|
||||||
|
|
||||||
|
var result = await DotnetMSBuild("Publish");
|
||||||
|
|
||||||
|
Assert.BuildPassed(result);
|
||||||
|
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc21.dll");
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc21.pdb");
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc21.Views.dll");
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc21.Views.pdb");
|
||||||
|
|
||||||
|
// By default refs and .cshtml files will not be copied on publish
|
||||||
|
Assert.FileCountEquals(result, 0, Path.Combine(PublishOutputPath, "refs"), "*.dll");
|
||||||
|
Assert.FileCountEquals(result, 0, Path.Combine(PublishOutputPath, "Views"), "*.cshtml");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,6 +247,30 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
Assert.FileCountEquals(result, 8, Path.Combine(PublishOutputPath, "Views"), "*.cshtml");
|
Assert.FileCountEquals(result, 8, Path.Combine(PublishOutputPath, "Views"), "*.cshtml");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
[InitializeTestProject("SimpleMvc")]
|
||||||
|
public async Task Publish_WithCopySettingsInProjectFile_CopiesFiles()
|
||||||
|
{
|
||||||
|
AddProjectFileContent(@"
|
||||||
|
<PropertyGroup>
|
||||||
|
<CopyRefAssembliesToPublishDirectory>true</CopyRefAssembliesToPublishDirectory>
|
||||||
|
<CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory>
|
||||||
|
</PropertyGroup>");
|
||||||
|
|
||||||
|
var result = await DotnetMSBuild("Publish");
|
||||||
|
|
||||||
|
Assert.BuildPassed(result);
|
||||||
|
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc.dll");
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc.pdb");
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc.Views.dll");
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "SimpleMvc.Views.pdb");
|
||||||
|
|
||||||
|
// By default refs and .cshtml files will not be copied on publish
|
||||||
|
Assert.FileExists(result, PublishOutputPath, "refs", "mscorlib.dll");
|
||||||
|
Assert.FileCountEquals(result, 8, Path.Combine(PublishOutputPath, "Views"), "*.cshtml");
|
||||||
|
}
|
||||||
|
|
||||||
[Fact] // Tests old MvcPrecompilation behavior that we support for compat.
|
[Fact] // Tests old MvcPrecompilation behavior that we support for compat.
|
||||||
[InitializeTestProject("SimpleMvc")]
|
[InitializeTestProject("SimpleMvc")]
|
||||||
public async Task Publish_MvcRazorExcludeFilesFromPublish_False_CopiesFiles()
|
public async Task Publish_MvcRazorExcludeFilesFromPublish_False_CopiesFiles()
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<!-- Test Placeholder -->
|
<!-- Test Placeholder -->
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NETCore.App" IsImplicitlyDefined="true" />
|
<FrameworkReference Include="Microsoft.NETCore.App" />
|
||||||
<ProjectReference Include="..\ClassLibrary\ClassLibrary.csproj"/>
|
<ProjectReference Include="..\ClassLibrary\ClassLibrary.csproj"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NETCore.App" IsImplicitlyDefined="true" />
|
<FrameworkReference Include="Microsoft.NETCore.App" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NETCore.App" IsImplicitlyDefined="true" />
|
<FrameworkReference Include="Microsoft.NETCore.App" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NETCore.App" IsImplicitlyDefined="true" />
|
<FrameworkReference Include="Microsoft.NETCore.App" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NETCore.App" IsImplicitlyDefined="true" />
|
<FrameworkReference Include="Microsoft.NETCore.App" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NETCore.App" IsImplicitlyDefined="true" />
|
<FrameworkReference Include="Microsoft.NETCore.App" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
<ItemGroup Condition="'$(BinariesRoot)'==''">
|
||||||
|
|
Загрузка…
Ссылка в новой задаче