diff options
author | Matt Ellis <matell@microsoft.com> | 2015-08-10 16:45:38 -0700 |
---|---|---|
committer | Matt Ellis <matell@microsoft.com> | 2015-08-17 17:01:20 -0700 |
commit | 793558ed5b888b57553df4c8a3e740aa171e51d3 (patch) | |
tree | 99d8a8192923ea1cfbbf369ccdfb9b6503fa08da | |
parent | dc0fca478639add871244ad106500ae0f5ff676c (diff) | |
download | coreclr-793558ed5b888b57553df4c8a3e740aa171e51d3.tar.gz coreclr-793558ed5b888b57553df4c8a3e740aa171e51d3.tar.bz2 coreclr-793558ed5b888b57553df4c8a3e740aa171e51d3.zip |
Remove unused resource string
StackTrace_Stack was conditional between Unix and Windows, which is
problematic when building on Unix, since the Mono provided ResGen does
not understand our define directives. It turns out this string is
unused (in both CoreCLR and Desktop) so to make things easier, we can
just remove it.
-rw-r--r-- | src/mscorlib/src/mscorlib.txt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mscorlib/src/mscorlib.txt b/src/mscorlib/src/mscorlib.txt index 1a036b88c3..6a519b2dc5 100644 --- a/src/mscorlib/src/mscorlib.txt +++ b/src/mscorlib/src/mscorlib.txt @@ -68,12 +68,6 @@ PostconditionOnExceptionFailed = Postcondition failed after throwing an exceptio PostconditionOnExceptionFailed_Cnd = Postcondition failed after throwing an exception: {0} InvariantFailed = Invariant failed. InvariantFailed_Cnd = Invariant failed: {0} -#if PLATFORM_UNIX -StackTrace_Stack = Stack trace: \n{0} -#endif -#if !PLATFORM_UNIX -StackTrace_Stack = Stack trace: \r\n{0} -#endif // PLATFORM_UNIX MustUseCCRewrite = An assembly (probably "{1}") must be rewritten using the code contracts binary rewriter (CCRewrite) because it is calling Contract.{0} and the CONTRACTS_FULL symbol is defined. Remove any explicit definitions of the CONTRACTS_FULL symbol from your project and rebuild. CCRewrite can be downloaded from http://go.microsoft.com/fwlink/?LinkID=169180. \r\nAfter the rewriter is installed, it can be enabled in Visual Studio from the project's Properties page on the Code Contracts pane. Ensure that "Perform Runtime Contract Checking" is enabled, which will define CONTRACTS_FULL. ; Access Control |