-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.csproj
More file actions
29 lines (28 loc) · 1.2 KB
/
Copy pathProgram.csproj
File metadata and controls
29 lines (28 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>link</TrimMode>
<RuntimeSuffix>.LLVM.AOT</RuntimeSuffix>
</PropertyGroup>
<ItemGroup>
<KnownFrameworkReference
Include="Microsoft.NETCore.App.Mono$(RuntimeSuffix)"
TargetFramework="$(TargetFramework)"
RuntimeFrameworkName="Microsoft.NETCore.App"
DefaultRuntimeFrameworkVersion="$(BundledNETCorePlatformsPackageVersion)"
LatestRuntimeFrameworkVersion="$(BundledNETCorePlatformsPackageVersion)"
TargetingPackName="Microsoft.NETCore.App.Ref"
TargetingPackVersion="$(BundledNETCorePlatformsPackageVersion)"
RuntimePackNamePatterns="Microsoft.NETCore.App.Runtime.Mono$(RuntimeSuffix).**RID**"
RuntimePackRuntimeIdentifiers="$(RuntimeIdentifier)"
IsTrimmable="true" />
<FrameworkReference Remove="Microsoft.NETCore.App" />
<FrameworkReference
Include="Microsoft.NETCore.App.Mono$(RuntimeSuffix)"
IsImplicitlyDefined="true"
Pack="true"
PrivateAssets="All" />
</ItemGroup>
</Project>