You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should be able to run tests against multiple versions of ASP.Net Core by defining the default versions in Directory.Build.props and then override by passing the versions as msbuild properties:
dotnet test ./test/UnitTests/UnitTests.csproj \
/p:AspNetCoreVersion=2.0.0 \
/p:EFCoreVersion=2.0.0 \
/p:MicrosoftLoggingVersion=2.0.0
Steps to implementation:
Find a way to define the supported versions in a single place that can be imported by both build scripts
Import the supported versions
Iterate over the versions, passing them to the dotnet test command as shown above.
For now, the example projects will not work with Asp.Net Core v1, so as a POC, we should start with the following versions:
2.0.0
2.1.0
The text was updated successfully, but these errors were encountered:
We should be able to run tests against multiple versions of ASP.Net Core by defining the default versions in Directory.Build.props and then override by passing the versions as msbuild properties:
Steps to implementation:
dotnet test
command as shown above.For now, the example projects will not work with Asp.Net Core v1, so as a POC, we should start with the following versions:
The text was updated successfully, but these errors were encountered: