2017-10-03 03:28:56 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-10-03 04:17:14 +02:00
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2017-10-03 23:37:46 +02:00
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<PackageOutputPath>..\artifacts</PackageOutputPath>
|
|
|
|
|
<PackageId>ElectronNET.API</PackageId>
|
2017-10-03 03:28:56 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-10-06 22:51:43 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.0.0" />
|
2017-10-03 03:28:56 +02:00
|
|
|
<PackageReference Include="SocketIoClientDotNet" Version="1.0.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-10-08 22:53:17 +02:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(OS)' == 'Windows_NT'">
|
2017-10-06 22:51:43 +02:00
|
|
|
<Exec Command="$(ProjectDir)devCleanup.cmd" />
|
|
|
|
|
</Target>
|
2017-10-06 05:04:56 +02:00
|
|
|
|
2017-10-03 23:37:46 +02:00
|
|
|
|
2017-10-03 03:28:56 +02:00
|
|
|
</Project>
|