2018-12-30 23:18:18 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-10-03 03:28:56 +02:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-10-03 22:30:58 +02:00
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
2017-10-03 23:37:46 +02:00
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
|
<PackageOutputPath>..\artifacts</PackageOutputPath>
|
|
|
|
|
|
<PackageId>ElectronNET.API</PackageId>
|
2017-10-17 23:33:52 +02:00
|
|
|
|
<Authors>Gregor Biswanger, Robert Muehsig</Authors>
|
|
|
|
|
|
<Company />
|
|
|
|
|
|
<Product>Electron.NET</Product>
|
2018-12-30 23:18:18 +01:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2017-10-29 23:11:28 +01:00
|
|
|
|
<PackageProjectUrl>https://github.com/ElectronNET/Electron.NET/</PackageProjectUrl>
|
2019-05-18 02:00:56 +02:00
|
|
|
|
<Description>Building cross platform electron based desktop apps with .NET Core and ASP.NET Core.
|
2017-10-17 23:33:52 +02:00
|
|
|
|
This package contains the API to access the "native" electron API.</Description>
|
2017-10-29 23:11:28 +01:00
|
|
|
|
<RepositoryUrl>https://github.com/ElectronNET/Electron.NET/</RepositoryUrl>
|
2018-12-30 23:18:18 +01:00
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
2017-10-17 23:33:52 +02:00
|
|
|
|
<PackageTags>electron aspnetcore</PackageTags>
|
2017-10-29 23:11:28 +01:00
|
|
|
|
<PackageReleaseNotes>Changelog: https://github.com/ElectronNET/Electron.NET/blob/master/Changelog.md</PackageReleaseNotes>
|
2019-10-03 22:30:58 +02:00
|
|
|
|
<PackageIcon>PackageIcon.png</PackageIcon>
|
2019-10-03 23:36:21 +02:00
|
|
|
|
<Version>99.0.0.0</Version>
|
2019-10-14 23:44:25 +03:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2017-10-18 22:58:01 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2019-10-03 22:30:58 +02:00
|
|
|
|
<ItemGroup>
|
2019-10-07 22:48:49 +02:00
|
|
|
|
<None Include="PackageIcon.png" Pack="true" PackagePath="\" />
|
2019-10-03 22:30:58 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2017-10-08 22:53:17 +02:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(OS)' == 'Windows_NT'">
|
2017-10-12 22:44:07 +02:00
|
|
|
|
<Exec Command="$(ProjectDir)devCleanup.cmd" IgnoreExitCode="true" />
|
2017-10-06 22:51:43 +02:00
|
|
|
|
</Target>
|
2017-10-16 22:27:54 +02:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(OS)' != 'Windows_NT'">
|
|
|
|
|
|
<Exec Command="$(ProjectDir)devCleanup.sh" IgnoreExitCode="true" />
|
|
|
|
|
|
</Target>
|
2018-07-22 21:35:44 +02:00
|
|
|
|
<ItemGroup>
|
2019-10-07 22:48:49 +02:00
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01">
|
2018-12-30 23:18:18 +01:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2018-07-22 21:35:44 +02:00
|
|
|
|
<PackageReference Include="SocketIoClientDotNet" Version="1.0.5" />
|
|
|
|
|
|
</ItemGroup>
|
2017-10-03 23:37:46 +02:00
|
|
|
|
|
2017-10-03 03:28:56 +02:00
|
|
|
|
</Project>
|