Skip to content

Macios symbolicate - #74

Merged
jstedfast merged 7 commits into
dotnet:masterfrom
jstedfast:macios-symbolicate
May 31, 2016
Merged

Macios symbolicate#74
jstedfast merged 7 commits into
dotnet:masterfrom
jstedfast:macios-symbolicate

Conversation

@jstedfast

@jstedfast jstedfast commented May 24, 2016

Copy link
Copy Markdown
Member

@xamarin-release-manager

Copy link
Copy Markdown
Collaborator

Build success

@rolfbjarne

Copy link
Copy Markdown
Member

This is unconditionally enable mSYMs by default, however iirc it was decided to only enable it by default for release builds (because it's quite useless for debug builds, and still adds to build time).

@jstedfast

Copy link
Copy Markdown
Member Author

Something has to enable it or disable it via the .csproj settings

@xamarin-release-manager

Copy link
Copy Markdown
Collaborator

Build success

@xamarin-release-manager

Copy link
Copy Markdown
Collaborator

Build success

1 similar comment
@xamarin-release-manager

Copy link
Copy Markdown
Collaborator

Build success

@rolfbjarne

Copy link
Copy Markdown
Member

Isn't it now disabled by default instead of enabled by default? Can't you use MtouchDebug to choose a default?

@jstedfast

Copy link
Copy Markdown
Member Author

I suppose, but the IDE is what overrides the MonoSymbolArchive variable in the .csproj.

If we want it strictly tied to MtouchDebug, then it probably doesn't make sense to have the MonoSymbolArchive variable or the --msym arg, right?

@rolfbjarne

Copy link
Copy Markdown
Member

So the IDEs will write a MonoSymbolArchive variable to every csproj then?

We don't want it strictly tied to MtouchDebug, we want it default to !MtouchDebug, unless otherwise specified.

@jstedfast

Copy link
Copy Markdown
Member Author

So the IDEs will write a MonoSymbolArchive variable to every csproj then?

Correct.

We don't want it strictly tied to MtouchDebug, we want it default to !MtouchDebug, unless otherwise specified.

Okay, we can probably do that.

@jstedfast

Copy link
Copy Markdown
Member Author

Slight problem: Xamarin.Mac does not have anything equivalent to MtouchDebug, so it would not be consistent if we use that for Xamarin.iOS.

@rolfbjarne

Copy link
Copy Markdown
Member

It would be the variable which causes /debug to be passed to mmp, which seems to be $(DebugSymbols): https://github.com/xamarin/xamarin-macios/blob/master/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Common.targets#L469

@jstedfast

Copy link
Copy Markdown
Member Author

Well, $(DebugSymbols) is not XM specific. It's the Csc compiler tool value which means it won't really be the same behavior as iOS...

@xamarin-release-manager

Copy link
Copy Markdown
Collaborator

Build success

Comment thread msbuild/Xamarin.Mac.Tasks/Tasks/Mmp.cs Outdated
{
XamMacArch arch;
return Enum.TryParse<XamMacArch> (Architecture, true, out arch);
return Enum.TryParse (Architecture, true, out arch);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't look related to the msym changes?

@rolfbjarne

Copy link
Copy Markdown
Member

@jstedfast Could you rebase on master? There seems to be conflicts now.

@jstedfast

Copy link
Copy Markdown
Member Author

rebased on master

@xamarin-release-manager

Copy link
Copy Markdown
Collaborator

Build success

rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 14, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@e5a46fd [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@f8d9a21 [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@c151a18 [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@74fbc3f [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@857c584 [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@85f716d [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@8bea179 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@2c2a55e Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@09733ed [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@8f2d02e Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..e5a46fd0a05b3c3c84a0ba013463e957311db6f2
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 14, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 14, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 15, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 15, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 15, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 16, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 16, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 16, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 16, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 17, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..1c272a98ac525f1578d4bd2ee96a8f6c14802152
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 17, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..926673287338482f3949659288ab36001413d251
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 21, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..926673287338482f3949659288ab36001413d251
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 21, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..926673287338482f3949659288ab36001413d251
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 22, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..926673287338482f3949659288ab36001413d251
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 22, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..926673287338482f3949659288ab36001413d251
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 22, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@dafdf9f [Touch.Client] Add API to exclude tests based on categories.
* xamarin/Touch.Unit@e6fb7d7 [Touch.Client] Fix paths in the .NET project files.
* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..dafdf9f44f8fada4e47e2abd0c95c9e494377a8c
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 22, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..926673287338482f3949659288ab36001413d251
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 23, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@dafdf9f [Touch.Client] Add API to exclude tests based on categories.
* xamarin/Touch.Unit@e6fb7d7 [Touch.Client] Fix paths in the .NET project files.
* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..dafdf9f44f8fada4e47e2abd0c95c9e494377a8c
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 30, 2020
New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@dafdf9f [Touch.Client] Add API to exclude tests based on categories.
* xamarin/Touch.Unit@e6fb7d7 [Touch.Client] Fix paths in the .NET project files.
* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..dafdf9f44f8fada4e47e2abd0c95c9e494377a8c
rolfbjarne added a commit that referenced this pull request Jul 30, 2020
This also required adding System.Core.dll to the MonoTouch.NUnitLite.dll, and fixing a csproj path.

New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@dafdf9f [Touch.Client] Add API to exclude tests based on categories.
* xamarin/Touch.Unit@e6fb7d7 [Touch.Client] Fix paths in the .NET project files.
* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..dafdf9f44f8fada4e47e2abd0c95c9e494377a8c
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 30, 2020
This also required adding System.Core.dll to the MonoTouch.NUnitLite.dll, and fixing a csproj path.

New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@dafdf9f [Touch.Client] Add API to exclude tests based on categories.
* xamarin/Touch.Unit@e6fb7d7 [Touch.Client] Fix paths in the .NET project files.
* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..dafdf9f44f8fada4e47e2abd0c95c9e494377a8c
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Jul 31, 2020
This also required adding System.Core.dll to the MonoTouch.NUnitLite.dll, and fixing a csproj path.

New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@dafdf9f [Touch.Client] Add API to exclude tests based on categories.
* xamarin/Touch.Unit@e6fb7d7 [Touch.Client] Fix paths in the .NET project files.
* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..dafdf9f44f8fada4e47e2abd0c95c9e494377a8c
rolfbjarne added a commit to rolfbjarne/macios that referenced this pull request Aug 3, 2020
This also required adding System.Core.dll to the MonoTouch.NUnitLite.dll, and fixing a csproj path.

New commits in spouliot/Touch.Unit:

* xamarin/Touch.Unit@f620668 [Touch.Client] Adjust project configurations. (dotnet#83)
* xamarin/Touch.Unit@545400b [Touch.Client] Fix paths in the .NET project files. (dotnet#81)
* xamarin/Touch.Unit@703586b [Touch.Client] Add API to exclude tests based on categories. (dotnet#82)
* xamarin/Touch.Unit@9266732 [Touch.Client] Add support for macOS. (dotnet#80)
* xamarin/Touch.Unit@2d556a5 [TouchRunner] Fix network logging to log if we're logging to a file even if EnableNetwork is false. (dotnet#79)
* xamarin/Touch.Unit@1f85e16 [TouchOptions] Fix a few issues related to command-line parsing. (dotnet#78)
* xamarin/Touch.Unit@1c272a9 [TouchRunner] Rename TestElement.Update to TestElement.TestFinished to make it clearer when it's used. (dotnet#73)
* xamarin/Touch.Unit@9a654ca [TouchRunner] Fix running multiple test assemblies in NUnitLite mode. (dotnet#76)
* xamarin/Touch.Unit@55c747f [TouchRunner] Print test output to the console. (dotnet#75)
* xamarin/Touch.Unit@ab5dce0 [TouchRunner] Keep track of the last shown test suite, and return to it when the app is relaunched. (dotnet#74)
* xamarin/Touch.Unit@1a7068c [TouchRunner] Only update the UI for a single test after the test has finished running. (dotnet#72)
* xamarin/Touch.Unit@ba93ddf [TouchRunner] Fix unused variable warning by only defining the variable when it's used. (dotnet#71)
* xamarin/Touch.Unit@ab2aaa5 [TouchRunner] Always show 'Run all'. (dotnet#70)
* xamarin/Touch.Unit@af58317 Move every Touch.Client projects to its own folder. (dotnet#69)
* xamarin/Touch.Unit@8a0ec0d [TouchRunner] Improve name printing in NuGet mode. (dotnet#68)
* xamarin/Touch.Unit@c7f8ff0 Ignore any 'packages' directory. (dotnet#67)

Diff: https://github.com/spouliot/Touch.Unit/compare/b4e8606a85255f2456b0b20d5a0732298fa1ad36..f62066880ae548bac9302d714b8c045955051014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants