Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update repo root gitignore to exclude launchSettings.json
  • Loading branch information
azabbasi committed Jun 17, 2020
commit e5e8b56b22721996efd1e50fb8a1eee2723edb0f
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*.lock.json
developer/
launch.json
launchSettings.json

# Build results
binaries/
Expand Down
1 change: 0 additions & 1 deletion sdk/iot/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
!*common.config.json
!*common.test.assets.config.json
*.etl
*launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public async Task<DeviceIdentity> CreateDeviceIdentityAsync(string deviceId)
SampleLogger.PrintHeader("CREATE DEVICE IDENTITY");

// Construct the device identity object.
DeviceIdentity deviceIdentity = new DeviceIdentity
var deviceIdentity = new DeviceIdentity
{
DeviceId = deviceId
};
Expand Down Expand Up @@ -96,7 +96,7 @@ public async Task<ModuleIdentity> CreateModuleIdentityAsync(DeviceIdentity devic
SampleLogger.PrintHeader("CREATE MODULE IDENTITY");

// Construct the module identity object.
ModuleIdentity moduleIdentity = new ModuleIdentity
var moduleIdentity = new ModuleIdentity
{
DeviceId = deviceIdentity.DeviceId,
ModuleId = moduleId
Expand Down