Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set global.json SDK version to first SDK release #2997

Merged
merged 4 commits into from
May 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
kbeaugrand marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ namespace IoTHub.Portal.Tests.Unit.Infrastructure.Services
using System.Net;
using System.Net.Http;
using System.Net.Http.Json;
using System.Text;
using System.Threading.Tasks;
using AutoFixture;
using IoTHub.Portal.Application.Services;
Expand Down Expand Up @@ -66,9 +65,9 @@ public async Task ExecuteLoRaDeviceMessageMustBeSuccessfullWhenParametersAreProv
// Arrange
var deviceId = Fixture.Create<string>();

string regex = "[0-9A-F]{8,15}";
var regex = "[0-9A-F]{8,15}";

Xeger xeger = new Xeger(regex, new Random(0)); // Note zero in Random constructor
var xeger = new Xeger(regex, new Random(0)); // Note zero in Random constructor

var command = new DeviceModelCommandDto
{
Expand Down
5 changes: 3 additions & 2 deletions src/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "8.0.201"
"version": "8.0.100",
"rollForward": "latestFeature"
}
}
}
Loading