mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-25 16:34:49 +00:00
39 lines
2.2 KiB
XML
39 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<PropertyGroup Label="ElectronNetCommon">
|
|
<ElectronVersion>30.4.0</ElectronVersion>
|
|
<ElectronBuilderVersion>26.0</ElectronBuilderVersion>
|
|
<!-- ElectronRuntimeIdentifier may be set explicitly here; it is otherwise resolved from
|
|
RuntimeIdentifier (or the host) in ElectronResolveRuntimeIdentifier, which runs late
|
|
enough to also see RIDs coming from the project file or a publish profile. -->
|
|
<ElectronSingleInstance>true</ElectronSingleInstance>
|
|
<ElectronSplashScreen></ElectronSplashScreen>
|
|
<ElectronIcon></ElectronIcon>
|
|
<PackageIcon></PackageIcon>
|
|
<ElectronPackageId Condition="'$(ElectronPackageId)' == ''">$(MSBuildProjectName.Replace(".", "-").ToLower())</ElectronPackageId>
|
|
<ElectronBuilderJson>electron-builder.json</ElectronBuilderJson>
|
|
<Title Condition="'$(Title)' == ''">$(MSBuildProjectName)</Title>
|
|
<!-- Location of the Electron binary relative to the .NET application directory of a packaged app.
|
|
The default matches the standard layout, where the .NET app is placed in 'resources/bin'. -->
|
|
<ElectronRootDir Condition="'$(ElectronRootDir)' == ''">../..</ElectronRootDir>
|
|
<!-- Set to true to suppress the npm/npx invocations of the Electron build and publish targets. -->
|
|
<ElectronSkipExecCommands Condition="'$(ElectronSkipExecCommands)' == ''">false</ElectronSkipExecCommands>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<AccelerateBuildsInVisualStudio>false</AccelerateBuildsInVisualStudio>
|
|
<ImportNuGetBuildTasksPackTargetsFromSdk>false</ImportNuGetBuildTasksPackTargetsFromSdk>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<CustomAfterDirectoryBuildTargets>$(MSBuildThisFileDirectory)ElectronNET.LateImport.targets</CustomAfterDirectoryBuildTargets>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<CollectUpToDateCheckBuiltDesignTimeDependsOn>$(CollectUpToDateCheckBuiltDesignTimeDependsOn);ElectronCollectUpToDateCheckBuiltDesignTime</CollectUpToDateCheckBuiltDesignTimeDependsOn>
|
|
<FileSystemPublishDependsOn>$(FileSystemPublishDependsOn);ElectronFileSystemPublishClearItems</FileSystemPublishDependsOn>
|
|
</PropertyGroup>
|
|
|
|
</Project> |