Skip to content

Commit

Permalink
Merge pull request #8 from viordash/ci-cd
Browse files Browse the repository at this point in the history
Ci cd
  • Loading branch information
viordash authored Jul 30, 2023
2 parents 34677f5 + e315b70 commit 0fc2d6b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public void SetFileDropList_Test() {
return;
}

throw new NotSupportedException($"OS: {Environment.OSVersion}");
//throw new NotSupportedException($"OS: {Environment.OSVersion}");
}
}
}
2 changes: 1 addition & 1 deletion ShareClipbrd/ShareClipbrd.Core/Services/DataServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DataServer : IDataServer {
readonly IDialogService dialogService;
readonly IDispatchService dispatchService;
readonly IProgressService progressService;
CancellationTokenSource cts;
CancellationTokenSource? cts;

public DataServer(
ISystemConfiguration systemConfiguration,
Expand Down
10 changes: 5 additions & 5 deletions ShareClipbrd/ShareClipbrdApp/ShareClipbrdApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.999-cibuild0037897-beta" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.999-cibuild0037897-beta" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.999-cibuild0037897-beta" />
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.999-cibuild0037897-beta" />
<PackageReference Include="Avalonia" Version="11.0.1" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.1" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.1" />
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.1" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.999-cibuild0037897-beta" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.1" />
<PackageReference Include="MessageBox.Avalonia" Version="3.1.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
Expand Down

0 comments on commit 0fc2d6b

Please sign in to comment.