diff options
| author | stijn <stijn@ignitron.net> | 2022-10-18 12:21:50 +0200 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2022-11-15 16:37:31 +1100 |
| commit | fbc96009f8e97abf78fe447f644e5ca8ca2bb05f (patch) | |
| tree | 5e66ce44e67280bdf67f5e3121497b305ac18fa9 | |
| parent | e7875829c2d3540c2a261a256442db747bfd34aa (diff) | |
windows: Make project file read-only for IDE.
Avoids the 'warning: Wildcards in project items are not supported'
message from the C++ project system in Visual Studio, while otherwise
remaining completely functional.
| -rw-r--r-- | ports/windows/micropython.vcxproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/windows/micropython.vcxproj b/ports/windows/micropython.vcxproj index 4fa0c47df..0294b9fa7 100644 --- a/ports/windows/micropython.vcxproj +++ b/ports/windows/micropython.vcxproj @@ -21,6 +21,7 @@ <PropertyGroup Label="Globals"> <ProjectGuid>{740F3C30-EB6C-4B59-9C50-AE4D5A4A9D12}</ProjectGuid> <RootNamespace>micropython</RootNamespace> + <ReadOnlyProject>true</ReadOnlyProject> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
