2018-08-30 21:54:42 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-10-03 23:37:46 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-03-15 23:26:09 +01:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2019-10-28 23:58:43 +01:00
|
|
|
|
<AssemblyName>dotnet-electronize</AssemblyName>
|
|
|
|
|
|
<ToolCommandName>electronize</ToolCommandName>
|
2018-02-28 10:27:00 +08:00
|
|
|
|
<PackageType>DotnetCliTool</PackageType>
|
2023-04-01 23:44:25 +02:00
|
|
|
|
<PackageOutputPath>..\..\artifacts</PackageOutputPath>
|
2017-10-03 23:37:46 +02:00
|
|
|
|
<PackageId>ElectronNET.CLI</PackageId>
|
2019-10-03 23:36:21 +02:00
|
|
|
|
<!-- Version 99 is just set for local development stuff to avoid a conflict with "real" packages on NuGet.org -->
|
2019-10-28 23:58:43 +01:00
|
|
|
|
<Version>99.0.0.0</Version>
|
2023-03-23 14:02:46 +01:00
|
|
|
|
<Authors>Gregor Biswanger, Florian Rappl</Authors>
|
2017-10-17 23:33:52 +02:00
|
|
|
|
<Product>Electron.NET</Product>
|
|
|
|
|
|
<Company />
|
2019-11-30 01:30:22 +01:00
|
|
|
|
<Description>
|
|
|
|
|
|
Building cross platform electron based desktop apps with .NET Core and ASP.NET Core.
|
|
|
|
|
|
This package contains the dotnet tooling to electronize your application.
|
|
|
|
|
|
</Description>
|
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>
|
2018-02-28 10:27:00 +08: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>
|
2023-04-01 23:44:25 +02:00
|
|
|
|
<PackageReleaseNotes>Changelog: https://github.com/ElectronNET/Electron.NET/blob/main/Changelog.md</PackageReleaseNotes>
|
2019-10-03 22:30:58 +02:00
|
|
|
|
<PackageIcon>PackageIcon.png</PackageIcon>
|
2018-08-30 21:54:42 +02:00
|
|
|
|
<PackAsTool>true</PackAsTool>
|
2023-02-24 14:56:40 +01:00
|
|
|
|
<StartupObject>
|
|
|
|
|
|
</StartupObject>
|
2020-04-30 22:31:12 +10:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2017-10-03 23:37:46 +02:00
|
|
|
|
</PropertyGroup>
|
2017-10-04 23:11:23 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="ElectronHost\package-lock.json" />
|
|
|
|
|
|
<None Remove="ElectronHost\package.json" />
|
2017-10-15 22:43:35 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2020-04-30 22:31:12 +10:00
|
|
|
|
<None Include="PackageIcon.png" Pack="true" PackagePath="\" />
|
2017-10-04 23:11:23 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-04-04 16:40:45 +02:00
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.Host\template\electron.manifest.json" Link="ElectronHost\electron.manifest.json" />
|
|
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.Host\template\package.json" Link="ElectronHost\package.json" />
|
2023-04-03 18:16:59 +02:00
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.Host\dist\main.js" Link="ElectronHost\dist\main.js" />
|
|
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.Host\dist\build-helper.js" Link="ElectronHost\dist\build-helper.js" />
|
2019-05-18 15:04:11 +02:00
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.Host\splashscreen\index.html" Link="ElectronHost\splashscreen\index.html" />
|
2023-03-23 21:04:36 +01:00
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.Host\.vscode\launch.json" Link="ElectronHost\.vscode\launch.json" />
|
|
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.Host\.vscode\tasks.json" Link="ElectronHost\.vscode\tasks.json" />
|
2023-04-04 14:31:25 +02:00
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.HostHook\package.json" Link="ElectronHost\hook\package.json" />
|
|
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.HostHook\tsconfig.json" Link="ElectronHost\hook\tsconfig.json" />
|
|
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.HostHook\index.ts" Link="ElectronHost\hook\index.ts" />
|
|
|
|
|
|
<EmbeddedResource Include="..\ElectronNET.HostHook\.gitignore" Link="ElectronHost\hook\.gitignore" />
|
2017-10-21 04:37:01 +02:00
|
|
|
|
</ItemGroup>
|
2018-12-30 23:18:18 +01:00
|
|
|
|
<ItemGroup>
|
2020-11-21 16:24:24 -06:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
|
2018-12-30 23:18:18 +01:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-02-24 14:56:40 +01:00
|
|
|
|
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.410601">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
2018-12-30 23:18:18 +01: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>
|
2023-02-24 14:56:40 +01:00
|
|
|
|
</Project>
|