Compare commits

..

4 Commits

Author SHA1 Message Date
Jedd Morgan 81ef81eef1 comment tweaks
.NET Build and Publish / build (push) Has been cancelled
2026-03-02 11:48:00 +00:00
Jedd Morgan fa03714c11 restore solution 2026-03-02 11:47:14 +00:00
Jedd Morgan ca04c9836d transitive for sdk 2026-03-02 11:12:36 +00:00
Jedd Morgan ecf90336ee Repacked channel 2026-03-02 11:09:34 +00:00
2 changed files with 2 additions and 2 deletions
@@ -53,7 +53,7 @@
<_ILRepackExcludeAssemblies_Items Include="$(OutputPath)*.dll" Exclude="@(_ILRepackIncludeAssemblies_Items)" />
</ItemGroup>
<Message
Text="These are the packages we are NOT ilrepacking '@(_ILRepackExcludeAssemblies_Items)'"
Text="These are the packages we are NOT ilrepacking '$(_ILRepackExcludeAssemblies_Items)'"
Importance="high"
/>
<PropertyGroup>
+1 -1
View File
@@ -56,7 +56,7 @@ public sealed class DiskStore
await foreach (var item in _channel.ReadAllAsync(_cancellationToken).ConfigureAwait(false))
{
await writer.WriteLineAsync($"{item.Id}\t{item.SpeckleType}\t{item.Json}").ConfigureAwait(false);
await writer.WriteLineAsync($"{item.Id}\t{item.Json}\t{item.SpeckleType}").ConfigureAwait(false);
}
#if NET8_0_OR_GREATER
await writer.FlushAsync(_cancellationToken).ConfigureAwait(false);