Rob Prouse

Results 62 issues of Rob Prouse

#3301 brings up the fact that Partial Trust is no longer supported in .NET Core and conflicts with `HandleProcessCorruptedStateExceptions` in the full framework. This and other changes make me think...

is:enhancement
pri:normal
design
awaiting:discussion

The `Platforms` attribute currently takes a string to specify the platforms that it supports. These are error prone and sometimes hard to guess. Switch to passing in a flags enum...

awaiting:discussion

https://github.com/github/renaming for info

is:enhancement

Given this test fixture: ``` csharp [TestFixture] public class TestClass { [OneTimeSetUp] public void FixtureSetup () { Console.WriteLine ("FixSetUp"); } [SetUp] public void SetUp () { Console.WriteLine ("SetUp"); } [TearDown]...

is:bug
pri:normal

Now that the test adapter supports .NET Core, it should be fairly easy to add in UWP (Windows 10) support. - Add `appx` to the supported file formats - Add...

is:enhancement
pri:normal

Using NUnit 3.9 and adapter 3.9, I added `[assembly: Parallelizable(ParallelScope.All)]` to a project that I use for testing NUnit issues to test running everything in parallel. When I use **Run...

is:bug
VS Issue

Markdowndeep and Github support indented blocks as `` or code blocks. Github also has the [Syntax Highlighting](https://help.github.com/articles/github-flavored-markdown#syntax-highlighting) format. `````` ```ruby require 'redcarpet' markdown = Redcarpet.new("Hello World!") puts markdown.to_html ``` ``````...

The change to 4.0 and running tests in the NUnitLite test runner removed the test targets that referenced WinForms and WCF. They should be reinstated. See #3753

is:build
pri:normal

The NUnitLite project is fairly small and is tightly coupled to the framework, so to me it makes sense to pull the classes into the framework giving people an easy...

is:enhancement
pri:normal
is:refactor

The dotnet runtime repo does this, https://github.com/dotnet/runtime/blob/main/.github/workflows/backport.yml Note that it refers to custom actions in the repo located here, https://github.com/dotnet/runtime/tree/main/eng/actions/backport

is:build