Skip to content

Commit

Permalink
Publish package
Browse files Browse the repository at this point in the history
  • Loading branch information
RussKie committed Dec 7, 2023
1 parent 2e72ff2 commit 8ba0d67
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
17 changes: 17 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,23 @@
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>

<!-- Packaging -->
<PropertyGroup>
<Company>Git Extensions</Company>
<Product>Git Extensions</Product>
<Copyright>Copyright © 2008-2023 Git Extensions Team</Copyright>
<Description>Git Extensions API contracts and shared helpers</Description>

<PackageProjectUrl>https://github.com/gitextensions/gitextensions/</PackageProjectUrl>
<RepositoryUrl>https://github.com/gitextensions/gitextensions.extensibility/</RepositoryUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>

<None Include="..\..\LICENSE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</PropertyGroup>

<!-- https://learn.microsoft.com/nuget/consume-packages/Central-Package-Management -->
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
<PropertyGroup>
<!-- TODO -->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
<None Include="build/GitExtensions.Extensibility.targets">
<Pack>True</Pack>
<PackagePath>build/net8.0/GitExtensions.Extensibility.targets</PackagePath>
</None>

</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@
<version>$version$</version>
<authors>Git Extensions</authors>
<description>Git Extensions Extensibility package.</description>
<projectUrl>https://github.com/gitextensions/gitextensions.extensibility</projectUrl>
<license type="file">LICENSE.md</license>
</metadata>
<files>
<file src="build/GitExtensions.Extensibility.targets" target="build/net461/GitExtensions.Extensibility.targets" />
<file src="build/GitExtensions.Extensibility.targets" target="build/net5.0/GitExtensions.Extensibility.targets" />

<file src="../../LICENSE.md" target="LICENSE.md" />
<file src="tools/Download-GitExtensions.ps1" target="tools/Download-GitExtensions.ps1" />
</files>
</package>

0 comments on commit 8ba0d67

Please sign in to comment.