15 lines
516 B
XML
15 lines
516 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputPath>../LFlow_Bin/</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<UseCommonOutputDirectory>true</UseCommonOutputDirectory>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|