2260d8974d
include version set on manual parser selection update projects to .NET Core 2.2 add middleware to support ip whitelisting (EnableWebfrontConnectionWhitelist and WebfrontConnectionWhitelist) issue #59
26 lines
784 B
XML
26 lines
784 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
|
<ProjectReference Include="..\Stats\Stats.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.2.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|