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