Skip to content

Commit

Permalink
update vhdp extension
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Feb 29, 2024
1 parent 9b82ce6 commit cbff9ff
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
10 changes: 5 additions & 5 deletions oneware-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@
],
"versions": [
{
"version": "0.2",
"version": "0.3",
"targets": [
{
"target": "win-x64",
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.2/OneWare.VhdpExtension_0.2_win-x64.zip"
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.3/OneWare.VhdpExtension_0.3_win-x64.zip"
},
{
"target": "linux-x64",
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.2/OneWare.VhdpExtension_0.2_linux-x64.zip"
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.3/OneWare.VhdpExtension_0.3_linux-x64.zip"
},
{
"target": "osx-x64",
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.2/OneWare.VhdpExtension_0.2_osx-x64.zip"
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.3/OneWare.VhdpExtension_0.3_osx-x64.zip"
},
{
"target": "osx-arm64",
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.2/OneWare.VhdpExtension_0.2_osx-arm64.zip"
"url": "https://github.com/ProtopSolutions/OneWare.Vhdp/releases/download/0.3/OneWare.VhdpExtension_0.3_osx-arm64.zip"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion src/OneWare.Vhdp/AutoConnect/VhdpAutoConnect.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Text.RegularExpressions;
using AvaloniaEdit;
using OneWare.SDK.Services;
using OneWare.Essentials.Services;
using Prism.Ioc;
using VHDPlus.Analyzer;
using VHDPlus.Analyzer.Elements;
Expand Down
2 changes: 1 addition & 1 deletion src/OneWare.Vhdp/Formatting/IndentationReformatterVhdp.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Globalization;
using System.Text;
using OneWare.SDK.EditorExtensions;
using OneWare.Essentials.EditorExtensions;

namespace OneWare.Vhdp.Formatting;

Expand Down
2 changes: 1 addition & 1 deletion src/OneWare.Vhdp/Formatting/VhdpIndentationStrategy.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using AvaloniaEdit;
using AvaloniaEdit.Document;
using AvaloniaEdit.Indentation;
using OneWare.SDK.EditorExtensions;
using OneWare.Essentials.EditorExtensions;

namespace OneWare.Vhdp.Formatting;

Expand Down
4 changes: 2 additions & 2 deletions src/OneWare.Vhdp/HdpProjectContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
using System.Text;
using OmniSharp.Extensions.LanguageServer.Protocol.Models;
using OneWare.ProjectSystem.Models;
using OneWare.SDK.Helpers;
using OneWare.SDK.Services;
using OneWare.Essentials.Helpers;
using OneWare.Essentials.Services;
using OneWare.UniversalFpgaProjectSystem.Parser;
using Prism.Ioc;
using VHDPlus.Analyzer;
Expand Down
4 changes: 2 additions & 2 deletions src/OneWare.Vhdp/LanguageServiceVhdp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
using System.Reactive.Linq;
using OmniSharp.Extensions.LanguageServer.Protocol;
using OmniSharp.Extensions.LanguageServer.Protocol.Models;
using OneWare.SDK.LanguageService;
using OneWare.SDK.ViewModels;
using OneWare.Essentials.LanguageService;
using OneWare.Essentials.ViewModels;
using VHDPlus.Analyzer;
using VHDPlus.Analyzer.Checks;
using VHDPlus.Analyzer.Diagnostics;
Expand Down
6 changes: 3 additions & 3 deletions src/OneWare.Vhdp/OneWare.Vhdp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.2.1</Version>
<Version>0.3</Version>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand All @@ -16,8 +16,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OneWare.SDK" Version="0.12.9.0" Private="false" ExcludeAssets="runtime;Native"/>
<PackageReference Include="OneWare.UniversalFpgaProjectSystem" Version="0.12.9.0" Private="false" ExcludeAssets="runtime;Native"/>
<PackageReference Include="OneWare.Essentials" Version="0.1" Private="false" ExcludeAssets="runtime;Native"/>
<PackageReference Include="OneWare.UniversalFpgaProjectSystem" Version="0.14" Private="false" ExcludeAssets="runtime;Native"/>
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/OneWare.Vhdp/OneWareVhdpModule.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using OneWare.SDK.Models;
using OneWare.SDK.Services;
using OneWare.SDK.ViewModels;
using OneWare.Essentials.Models;
using OneWare.Essentials.Services;
using OneWare.Essentials.ViewModels;
using Prism.Ioc;
using Prism.Modularity;

Expand Down
4 changes: 2 additions & 2 deletions src/OneWare.Vhdp/ProjectWatcher.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Avalonia.Threading;
using OneWare.SDK.Models;
using OneWare.SDK.Services;
using OneWare.Essentials.Models;
using OneWare.Essentials.Services;
using Prism.Ioc;

namespace OneWare.Vhdp;
Expand Down
6 changes: 3 additions & 3 deletions src/OneWare.Vhdp/TypeAssistanceVhdp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
using Avalonia;
using Avalonia.Input;
using CommunityToolkit.Mvvm.Input;
using OneWare.SDK.EditorExtensions;
using OneWare.SDK.LanguageService;
using OneWare.SDK.ViewModels;
using OneWare.Essentials.EditorExtensions;
using OneWare.Essentials.LanguageService;
using OneWare.Essentials.ViewModels;
using OneWare.Vhdp.AutoConnect;
using OneWare.Vhdp.Folding;
using OneWare.Vhdp.Formatting;
Expand Down
6 changes: 3 additions & 3 deletions src/OneWare.Vhdp/oneware.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"Dependencies": [
{
"Name": "OneWare.SDK",
"MinVersion": "0.12.9.0",
"MaxVersion": "0.12.9.0"
"Name": "OneWare.Essentials",
"MinVersion": "0.1.0.0",
"MaxVersion": "0.1.0.0"
}
]
}

0 comments on commit cbff9ff

Please sign in to comment.