diff --git a/Directory.Build.targets b/Directory.Build.targets index b59583d8cd..f29908bd15 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -1,6 +1,12 @@ + + + + + @@ -101,7 +107,7 @@ - + @@ -123,7 +129,7 @@ + Text="ConfigurationSchema.json is out of date for $(MSBuildProjectFile). Run 'dotnet build --no-incremental /p:UpdateConfigurationSchema=true' to update it." /> diff --git a/mtp-test-entitlements.plist b/mtp-test-entitlements.plist new file mode 100644 index 0000000000..41bb93a0c7 --- /dev/null +++ b/mtp-test-entitlements.plist @@ -0,0 +1,16 @@ + + + + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-dyld-environment-variables + + com.apple.security.cs.disable-library-validation + + com.apple.security.cs.debugger + + com.apple.security.get-task-allow + + + \ No newline at end of file diff --git a/src/Configuration/test/RandomValue.Test/CrashDumpTest.cs b/src/Configuration/test/RandomValue.Test/CrashDumpTest.cs new file mode 100644 index 0000000000..122379ebfb --- /dev/null +++ b/src/Configuration/test/RandomValue.Test/CrashDumpTest.cs @@ -0,0 +1,19 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License. +// See the LICENSE file in the project root for more information. + +// ReSharper disable all +#pragma warning disable + +namespace Steeltoe.Configuration.RandomValue.Test; + +public sealed class CrashDumpTest +{ + [Fact] + public void CrashTestHostUsingStackOverflow() + { + CrashTestHostUsingStackOverflow(); + + true.Should().BeTrue(); + } +}