forked from ElectronNET/Electron.NET
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathElectronNET.ConsoleApp.csproj
More file actions
78 lines (72 loc) · 2.88 KB
/
ElectronNET.ConsoleApp.csproj
File metadata and controls
78 lines (72 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- When this is enabled, the project will be switched from nuget packages to consuming the ElectronNet orchestration directly -->
<ElectronNetDevMode>true</ElectronNetDevMode>
</PropertyGroup>
<Import Project="..\ElectronNET\build\ElectronNET.Core.props" Condition="$(ElectronNetDevMode)" />
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
<ImportNuGetBuildTasksPackTargetsFromSdk>false</ImportNuGetBuildTasksPackTargetsFromSdk>
<PublishTrimmed>False</PublishTrimmed>
<NuGetAudit>false</NuGetAudit>
<Nullable>disable</Nullable>
</PropertyGroup>
<PropertyGroup Label="ElectronNetCommon">
<PackageIcon>128.png</PackageIcon>
<ApplicationIcon>app.ico</ApplicationIcon>
<NoWin32Manifest>true</NoWin32Manifest>
<ElectronIcon>app.ico</ElectronIcon>
<Title>ElectronNET API Demo1</Title>
<Version>1.0.2</Version>
<Product>com.electronnet-apisamples.app</Product>
<Description>Electron.NET Demo Application</Description>
<Company>Electron.Net</Company>
<Copyright>Copyright © 2025, Electron.NET</Copyright>
<PackageTags>Electron;.NET;ASP;NET;Sample;App</PackageTags>
<ElectronVersion>30.4.0</ElectronVersion>
<ElectronSplashScreen></ElectronSplashScreen>
<License>MIT</License>
<TypeScriptModuleKind>commonjs</TypeScriptModuleKind>
<ElectronSingleInstance>false</ElectronSingleInstance>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<Compile Remove="publish\**" />
<Content Remove="publish\**" />
<EmbeddedResource Remove="bin\**" />
<EmbeddedResource Remove="publish\**" />
<None Remove="bin\**" />
<None Remove="publish\**" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\electron.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\electron_32x32.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="obj\**" />
<Compile Remove="publish\**" />
<Content Remove="publish\**" />
<EmbeddedResource Remove="obj\**" />
<EmbeddedResource Remove="publish\**" />
<None Remove="obj\**" />
<None Remove="publish\**" />
<TypeScriptCompile Remove="bin\**" />
<TypeScriptCompile Remove="obj\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ElectronNET.API\ElectronNET.API.csproj" Condition="$(ElectronNetDevMode)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ElectronNET.Core" Version="0.2.0" Condition="'$(ElectronNetDevMode)' != 'true'" />
</ItemGroup>
<Import Project="..\ElectronNET\build\ElectronNET.Core.targets" Condition="$(ElectronNetDevMode)" />
</Project>