Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.

Commit 0951170

Browse files
committed
Chore: dotnet format sweep
1 parent f1843fe commit 0951170

37 files changed

Lines changed: 39 additions & 39 deletions

OpenTabletDriver.Web.Core/Contracts/IRelease.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public interface IRelease
1414

1515
Task<IEnumerable<IReleaseAsset>> GetReleaseAssets();
1616
}
17-
}
17+
}

OpenTabletDriver.Web.Core/Contracts/IReleaseAsset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ public interface IReleaseAsset
77
public string FileName { get; }
88
public string Url { get; }
99
}
10-
}
10+
}

OpenTabletDriver.Web.Core/DependencyInjectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ public static T CreateInstance<T>(this IServiceProvider provider, params object[
1919
return ActivatorUtilities.CreateInstance<T>(provider, parameters);
2020
}
2121
}
22-
}
22+
}

OpenTabletDriver.Web.Core/Framework/DotnetCoreService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ private string GetNormalizedArchitecture(FrameworkArchitecture architecture)
8484
};
8585
}
8686
}
87-
}
87+
}

OpenTabletDriver.Web.Core/FrameworkArchitecture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ public enum FrameworkArchitecture
77
x64 = 1 << 1,
88
ARM64 = 1 << 2
99
}
10-
}
10+
}

OpenTabletDriver.Web.Core/FrameworkPlatform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ public enum FrameworkPlatform
77
Linux = 1 << 1,
88
MacOS = 1 << 2
99
}
10-
}
10+
}

OpenTabletDriver.Web.Core/GitHub/GitHubRelease.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ public async Task<IEnumerable<IReleaseAsset>> GetReleaseAssets()
4444
return releaseAssets.Select(r => serviceProvider.CreateInstance<GitHubReleaseAsset>(r));
4545
}
4646
}
47-
}
47+
}

OpenTabletDriver.Web.Core/GitHub/GitHubReleaseAsset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ public GitHubReleaseAsset(ReleaseAsset asset)
1515
public string FileName => asset.Name;
1616
public string Url => asset.BrowserDownloadUrl;
1717
}
18-
}
18+
}

OpenTabletDriver.Web.Core/GitHub/Services/GitHubReleaseService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ private async Task<IReadOnlyList<IRelease>> GetAllReleasesInternal(ICacheEntry e
7070
return releases.Select(r => serviceProvider.CreateInstance<GitHubRelease>(r)).ToArray();
7171
}
7272
}
73-
}
73+
}

OpenTabletDriver.Web.Core/GitHub/Services/GitHubRepositoryService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ private Task<Repository> GetRepositoryInternal(ICacheEntry entry)
102102
return client.Repository.Get(REPOSITORY_OWNER, REPOSITORY_NAME);
103103
}
104104
}
105-
}
105+
}

0 commit comments

Comments
 (0)