Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build_plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ jobs:
runs-on: [windows-latest]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 2.2.108
dotnet-version: '10.x'

- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
- name: Restore
run: dotnet restore --verbosity q --nologo

- name: Build & package with `msbuild`
- name: Build & package with `dotnet`
run: |
msbuild -target:restore -property:Configuration=Release
msbuild -target:pack -property:Configuration=Release
dotnet build -c Release --verbosity q --nologo
dotnet publish --configuration Release --verbosity q --nologo

# - name: Push to `Nuget.org` nuget feed
# run: |
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="GitExtensions.Extensibility" Version="1.0.0.118" />
<PackageVersion Include="GitExtensions.Extensibility" Version="1.0.0.129" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageVersion Include="System.ComponentModel.Composition" Version="6.0.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
</PropertyGroup>

<!-- References to Git Extensions' DLLs -->
<!-- PackageReference triggers the MSBuild targets that download GE before build -->
<ItemGroup>
<PackageReference Include="GitExtensions.Extensibility" />
<Reference Include="GitExtensions.Extensibility">
<HintPath>$(GitExtensionsPath)\GitExtensions.Extensibility.dll</HintPath>
</Reference>
Expand Down