Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Nov 9, 2024
1 parent 598baef commit d5d882f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
run: ls
- uses: ncipollo/[email protected]
with:
artifacts: "OneWare.Quartus_${{steps.get-version.outputs.version}}_all.zip"
artifacts: "OneWare.Quartus_${{steps.get-version.outputs.version}}_all.zip,./publish/compatibility.txt"
tag: ${{steps.get-version.outputs.version}}
allowUpdates: true
24 changes: 3 additions & 21 deletions oneware-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,13 @@
"url": "https://github.com/one-ware/OneWare.Quartus"
}
],
"sourceUrl": "https://github.com/one-ware/OneWare.Quartus/releases/download",
"versions": [
{
"version": "0.7.3",
"version": "0.8.4",
"targets": [
{
"target": "all",
"url": "https://github.com/one-ware/OneWare.Quartus/releases/download/0.7.3/OneWare.Quartus_0.7.3_all.zip"
}
]
},
{
"version": "0.8.0",
"targets": [
{
"target": "all",
"url": "https://github.com/one-ware/OneWare.Quartus/releases/download/0.8.0/OneWare.Quartus_0.8.0_all.zip"
}
]
},
{
"version": "0.8.3",
"targets": [
{
"target": "all",
"url": "https://github.com/one-ware/OneWare.Quartus/releases/download/0.8.3/OneWare.Quartus_0.8.3_all.zip"
"target": "all"
}
]
}
Expand Down
18 changes: 14 additions & 4 deletions src/OneWare.Quartus/OneWare.Quartus.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.8.3</Version>
<Version>0.8.4</Version>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand All @@ -11,13 +11,23 @@
</PropertyGroup>

<ItemGroup>
<Content Include="oneware.json" CopyToOutputDirectory="PreserveNewest"/>
<AvaloniaResource Include="Assets\**\*.*" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="OneWare.Essentials" Version="0.9.0" Private="false" ExcludeAssets="runtime;Native"/>
<PackageReference Include="OneWare.UniversalFpgaProjectSystem" Version="0.30.3" Private="false" ExcludeAssets="runtime;Native" />
<PackageReference Include="OneWare.Essentials" Version="0.11.0" Private="false" ExcludeAssets="runtime;Native" />
<PackageReference Include="OneWare.UniversalFpgaProjectSystem" Version="0.41.0" Private="false" ExcludeAssets="runtime;Native" />
</ItemGroup>

<Target Name="GenerateCompatibilityFile" AfterTargets="Build">
<ItemGroup>
<FilteredDependencies Include="@(PackageReference)" Condition="'%(Private)' == 'false'" />
</ItemGroup>

<WriteLinesToFile
File="$(OutDir)compatibility.txt"
Lines="@(FilteredDependencies->'%(Identity) : %(Version)')"
Overwrite="true" />
</Target>

</Project>
14 changes: 0 additions & 14 deletions src/OneWare.Quartus/oneware.json

This file was deleted.

0 comments on commit d5d882f

Please sign in to comment.