19 lines
577 B
XML
19 lines
577 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>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Enum\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|