2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-19 18:52:48 -04:00
|
|
|
|
|
2017-09-27 16:07:43 -04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2018-07-29 15:43:42 -04:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-04-19 18:52:48 -04: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 16:07:43 -04:00
|
|
|
|
<ItemGroup>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
2017-09-27 16:07:43 -04:00
|
|
|
|
</ItemGroup>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
|
2018-04-23 17:03:50 -04:00
|
|
|
|
<ItemGroup>
|
2018-07-29 15:43:42 -04:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App"/>
|
2018-04-23 17:03:50 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-19 18:52:48 -04:00
|
|
|
|
</Project>
|