Last active
March 23, 2020 22:19
-
-
Save kant2002/1999b68483c40be49ccd9a10fb1fedc6 to your computer and use it in GitHub Desktop.
Disable standard runtime in CoreRT application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<PropertyGroup> | |
<NoStdLib>true</NoStdLib> | |
<NoConfig>true</NoConfig> | |
<RuntimeMetadataVersion>v4.0.30319</RuntimeMetadataVersion> | |
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | |
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> | |
<IlcSystemModule>SeeSharpSnake</IlcSystemModule> | |
</PropertyGroup> | |
<Target Name="CustomizeReferences" BeforeTargets="BeforeCompile" AfterTargets="FindReferenceAssembliesForReferences"> | |
<ItemGroup> | |
<ReferencePathWithRefAssemblies Remove="@(ReferencePathWithRefAssemblies)" /> | |
<ReferencePath Remove="@(ReferencePath)" /> | |
</ItemGroup> | |
</Target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment