Skip to content

Commit

Permalink
Update github actions.
Browse files Browse the repository at this point in the history
Update Meziantou.Analyzer to 2.0.139.
  • Loading branch information
Kurochi51 committed Jan 29, 2024
1 parent 1eeb6ab commit 0aea837
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ReleaseCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.x.x'
- name: Restore dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.x.x'
- name: Restore dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/net8ReleaseCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x.x'
- name: Restore dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/net8build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x.x'
- name: Restore dependencies
Expand Down
6 changes: 6 additions & 0 deletions TickTracker/Windows/DevWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public sealed class DevWindow : Window
private static readonly List<string> PrintLines = new();
public int partId { get; set; }
public int partListIndex { get; set; }
public string uldPath { get; set; } = string.Empty;

public DevWindow() : base("DevWindow")
{
Expand All @@ -26,6 +27,7 @@ public override void Draw()
{
var pId = partId;
var pListIndex = partListIndex;
var uld = uldPath;
ImGui.SetNextItemWidth(ImGui.GetContentRegionAvail().X / 3);
if (ImGui.InputInt("ImageNode PartId", ref pId, 1))
{
Expand All @@ -36,6 +38,10 @@ public override void Draw()
{
partListIndex = pListIndex;
}
if(ImGui.InputTextWithHint("Uld", "Uld Path...", ref uld,200,ImGuiInputTextFlags.EnterReturnsTrue))
{
uldPath = uld;
}
foreach (var line in PrintLines)
{
ImGui.TextUnformatted(line);
Expand Down
6 changes: 3 additions & 3 deletions TickTracker/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"Meziantou.Analyzer": {
"type": "Direct",
"requested": "[2.0.138, )",
"resolved": "2.0.138",
"contentHash": "WjqWE3D2nheZ4CsPVaa4qZnIJ97d7uiJo/1vU9HFlLiA/rJOF3lugiP8BHtc9jB3YqhOeAye++BvUBuNA0LsMQ=="
"requested": "[2.0.139, )",
"resolved": "2.0.139",
"contentHash": "fN5lUcDuEAu0W/9owSNH/5OB5VuHT7mx48geXumj8Qt6MfEmVDrdxPy4CZ2cpR48UkZhckwsaba1VSI6mnIzTw=="
}
}
}
Expand Down

0 comments on commit 0aea837

Please sign in to comment.