Add EnableUnamangedDebugging=true default to csproj

* Since RenderDoc is heavily mixed .NET/C++ code, regardless of any
  disadvantages this option is practically required (e.g. if building in
  profile, the first error message or assert will take the program down
  as the breakpoint won't get caught).
* In the UI, enabling this option will always go into csproj.user, but
  in fact the option works fine if you manually put it into the csproj,
  which means this will be the default for all new clones. Yay!
This commit is contained in:
baldurk
2015-03-11 11:13:08 +00:00
parent e7307455f6
commit b8d5b3f4af
+1
View File
@@ -29,6 +29,7 @@
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<EnableUnmanagedDebugging>true</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>