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>
|
2018-07-29 15:43:42 -04:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-10-07 22:34:30 -04:00
|
|
|
|
<RuntimeFrameworkVersion>2.1.5</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>
|
2018-10-07 22:34:30 -04:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.1.5" />
|
2018-04-28 01:22:18 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|