mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-04-14 04:38:26 +10:00
Skin projects are created just once and then they are not supposed to be changed (from within VS). So we can mark them as _read only_ projects. https://learn.microsoft.com/en-us/cpp/build/reference/vcxproj-files-and-wildcards?view=msvc-170
20 lines
752 B
XML
20 lines
752 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<OutDir>$(SolutionDir)StartMenu\Skins\</OutDir>
|
|
<IntDir>$(Configuration)\</IntDir>
|
|
<IgnoreImportLibrary>true</IgnoreImportLibrary>
|
|
<LinkIncremental>false</LinkIncremental>
|
|
<ReadOnlyProject>true</ReadOnlyProject>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup>
|
|
<Link>
|
|
<GenerateDebugInformation>false</GenerateDebugInformation>
|
|
<SubSystem>Windows</SubSystem>
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
<NoEntryPoint>true</NoEntryPoint>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
</Project>
|