22 lines
618 B
XML
22 lines
618 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyName>AssemblyLoader</AssemblyName>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<SelfContained>true</SelfContained>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<RollForward>Major</RollForward>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|