-
-
Notifications
You must be signed in to change notification settings - Fork 745
Expand file tree
/
Copy pathElectronNET.csproj
More file actions
49 lines (47 loc) · 1.71 KB
/
ElectronNET.csproj
File metadata and controls
49 lines (47 loc) · 1.71 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\common.props" />
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net10.0</TargetFrameworks>
<PackageOutputPath>..\..\artifacts</PackageOutputPath>
<PackageId>$(PackageNamePrefix)</PackageId>
<Title>$(PackageId)</Title>
<Description>$(DescriptionFirstPart) This package contains the ElectronNET project system.</Description>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<IncludeSymbols>false</IncludeSymbols>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="PackageIcon.png" Pack="true" PackagePath="\" />
<None Include="../../README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Folder Include=".electron\" />
</ItemGroup>
<ItemGroup>
<None Include="..\ElectronNET.Host\**\*.js;..\ElectronNET.Host\**\*.html" Exclude="..\ElectronNET.Host\node_modules\**">
<Link>.electron\%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>.electron\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="build\**\*">
<Pack>true</Pack>
<PackagePath>build\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ElectronNET.API\ElectronNET.API.csproj">
<ReferenceOutputAssembly>True</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Update="build\ElectronNETRules.Project2.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="build\ElectronNETRules.Project.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
</ItemGroup>
</Project>