2019-05-15 23:56:53 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2017-10-02 20:40:28 +02:00
|
|
|
|
<PropertyGroup>
|
2019-10-03 22:30:58 +02:00
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
|
|
|
|
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
|
|
|
|
|
|
<AspNetCoreModuleName>AspNetCoreModule</AspNetCoreModuleName>
|
2017-11-04 09:25:43 -07:00
|
|
|
|
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
|
2019-10-03 22:30:58 +02:00
|
|
|
|
<TypeScriptToolsVersion>3.6</TypeScriptToolsVersion>
|
2017-10-02 20:40:28 +02:00
|
|
|
|
</PropertyGroup>
|
2017-10-21 04:37:01 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Controllers\ManageWindowsController.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Remove="Views\Windows\HandleErrorCrashes.cshtml" />
|
|
|
|
|
|
</ItemGroup>
|
2017-10-02 20:40:28 +02:00
|
|
|
|
<ItemGroup>
|
2017-10-19 06:01:54 +02:00
|
|
|
|
<Folder Include="wwwroot\assets\" />
|
2017-10-02 20:40:28 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2019-10-03 22:30:58 +02:00
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" />
|
2017-10-02 20:40:28 +02:00
|
|
|
|
</ItemGroup>
|
2018-07-22 21:35:44 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\ElectronNET.API\ElectronNET.API.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2017-10-15 17:03:07 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="Assets\electron.ico">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Assets\electron_32x32.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2017-10-15 00:08:15 +02:00
|
|
|
|
<ItemGroup>
|
2019-05-18 02:01:06 +02:00
|
|
|
|
<Content Update="ElectronHostHook\**\*.*">
|
|
|
|
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
2017-10-15 00:08:15 +02:00
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
2019-05-15 23:56:53 +02:00
|
|
|
|
<ItemGroup>
|
2019-05-18 02:01:06 +02:00
|
|
|
|
<Content Update="electron.manifest.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-05-15 23:56:53 +02:00
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
2017-10-15 22:43:35 +02:00
|
|
|
|
</Project>
|