2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-28 01:22:18 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-02-12 21:34:29 -05:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
|
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
2018-04-28 01:22:18 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
2018-11-05 22:01:29 -05:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2018-04-28 01:22:18 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
2018-05-28 21:30:31 -04:00
|
|
|
|
<ProjectReference Include="..\Stats\Stats.csproj" />
|
2018-04-28 01:22:18 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-02-12 21:34:29 -05:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.2.2" />
|
2018-04-28 01:22:18 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|