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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFan Yang <52458914+fanyang-mono@users.noreply.github.com>2021-04-15 03:24:34 +0300
committerGitHub <noreply@github.com>2021-04-15 03:24:34 +0300
commit9289928aa0e2449138e4301952c6916dfec02164 (patch)
treebb3c37ed28c3a05ba3baa3b4bf734bd5064eb10b /src/tasks/AotCompilerTask
parentcab8e14b74a3677b458b66556490e1dc995b89cf (diff)
Create a nuget package for RuntimeConfigParser (#51240)
Fixes #51236
Diffstat (limited to 'src/tasks/AotCompilerTask')
-rw-r--r--src/tasks/AotCompilerTask/MonoAOTCompiler.csproj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tasks/AotCompilerTask/MonoAOTCompiler.csproj b/src/tasks/AotCompilerTask/MonoAOTCompiler.csproj
index 9c0c55c6573..419a364377d 100644
--- a/src/tasks/AotCompilerTask/MonoAOTCompiler.csproj
+++ b/src/tasks/AotCompilerTask/MonoAOTCompiler.csproj
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <TargetFrameworks>$(NetCoreAppToolCurrent)</TargetFrameworks>
+ <TargetFramework>$(NetCoreAppToolCurrent)</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
@@ -26,7 +26,7 @@
<!-- GetFilesToPackage assists to place `MonoAOTCompiler.dll` in a NuGet package in Microsoft.NET.Runtime.MonoAOTCompiler.Task.pkgproj for external use -->
<Target Name="GetFilesToPackage" Returns="@(FilesToPackage)">
<ItemGroup>
- <FilesToPackage Include="$(OutputPath)$(NetCoreAppToolCurrent)\$(AssemblyName).dll" TargetPath="tasks" />
+ <FilesToPackage Include="$(OutputPath)$(AssemblyName).dll" TargetPath="tasks" />
</ItemGroup>
</Target>
</Project>