2018-07-29 14:43:42 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-19 17:52:48 -05:00
|
|
|
|
|
2017-09-27 15:07:43 -05:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2018-07-29 14:43:42 -05:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP2_0</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2017-09-27 15:07:43 -05:00
|
|
|
|
<ItemGroup>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
2017-09-27 15:07:43 -05:00
|
|
|
|
</ItemGroup>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
|
2018-04-23 16:03:50 -05:00
|
|
|
|
<ItemGroup>
|
2018-07-29 14:43:42 -05:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App"/>
|
2018-04-23 16:03:50 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-19 17:52:48 -05:00
|
|
|
|
</Project>
|