mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-10 13:49:07 +00:00
28 lines
841 B
XML
28 lines
841 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<PropertyGroup>
|
|
<TargetPlatformVersion>8.1</TargetPlatformVersion>
|
|
<IsCodeSharingProject>true</IsCodeSharingProject>
|
|
<DefineCommonItemSchemas>true</DefineCommonItemSchemas>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<MdIncludes>**/*.md;**/*.markdown</MdIncludes>
|
|
<ImageIncludes>**/*.png;**/*.bmp;**/*.jpg;**/*.gif;**/*.mp4</ImageIncludes>
|
|
<WebIncludes>**/*.css;**/*.js;**/*.json</WebIncludes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="**/*" />
|
|
<Content Remove="**/*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(ImageIncludes)" />
|
|
<None Include="$(WebIncludes)" />
|
|
<None Include="$(MdIncludes)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|