Azure-Samples / azure-functions-tests

Demonstrates how to run automated tests in C# and JavaScript
MIT License
38 stars 23 forks source link

Minor edits to avoid use of pubternal (public-yet-internal) namespaces #4

Open rdalkire opened 4 years ago

rdalkire commented 4 years ago

Purpose

Namespaces ending with .Internal are not actually intended to be used, in fact they've been removed from AspDotNet 3.1, so I've made a couple very small changes in the solution csharp-visualstudio\FunctionsTesting.sln to avoid them. For an explanation from docs.microsoft.com, see ..."Pubternal" APIs removed

Does this introduce a breaking change?

[ ] Yes
[x ] No

Pull Request Type

What kind of change does this Pull Request introduce?

[ ] Bugfix
[ ] Feature
[x ] Code style update (formatting, local variables)
[x ] Refactoring (no functional changes, no api changes)
[ ] Documentation content changes
[ ] Other... Please describe:

How to Test

git clone https://github.com/rdalkire/azure-functions-tests
cd azure-functions-tests
git checkout rdalkire-nixInternalNamespaceRefs
Run the tests that already exist within the FunctionsTesting solution

What to Check

Verify that the following are valid

Other Information

n/a

ghost commented 4 years ago

CLA assistant check
All CLA requirements met.

juan7732 commented 2 years ago

Bump as this is compliant with upgrading package references as well. Looks good.