Skip to content

Commit

Permalink
add package info and settings
Browse files Browse the repository at this point in the history
  • Loading branch information
DavenaHack committed Nov 16, 2024
1 parent 18e5fbe commit 08446a9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
8 changes: 5 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
</PropertyGroup>

<PropertyGroup Label="PackageProperties">
<Description>Handles internal and distributed locks for efficient resource synchronization.</Description>
<PackageTags>AdHoc;lock;locking;distributed;semaphore</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Ad-Hoc-org/AdHoc.Locking</RepositoryUrl>
<PackageTags>AdHoc</PackageTags>
<PackageIcon>icon-512.png</PackageIcon>
<Authors>AdHoc Authors</Authors>
<Company>AdHoc</Company>
Expand All @@ -24,14 +25,15 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<!-- <PackagePrimaryLicenseFile>$(RepoRoot)LICENSE</PackagePrimaryLicenseFile> -->
<PackagePrimaryLicenseFile>$(RepoRoot)LICENSE</PackagePrimaryLicenseFile>
<!-- <PackageThirdPartyNoticesFile>$(RepoRoot)THIRD-PARTY-NOTICES.TXT</PackageThirdPartyNoticesFile> -->
<!-- <PackageReadmeFile>README.md</PackageReadmeFile> -->
<!-- <PackageChangelogFile>CHANGELOG.md</PackageChangelogFile> -->
<!-- <PackageReleaseNotesFile>$(RepoRoot)RELEASENOTES.md</PackageReleaseNotesFile> -->
</PropertyGroup>
<ItemGroup>
<None Include="$(RepoRoot)icon-512.png" Pack="true" PackagePath="\" />
<!--<PackageMarkdownFiles Include="README.md" />-->
<None Include="$(RepoRoot)icon-512.png" Pack="true" PackagePath="\" />
</ItemGroup>

<!-- Enable sourcelink https://docs.microsoft.com/dotnet/standard/library-guidance/sourcelink -->
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
<ItemGroup Label="SourceLinkProperties">
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
</ItemGroup>
</Project>
</Project>
6 changes: 5 additions & 1 deletion NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
<configuration>
<packageSources>
<clear />
<add key="AdHoc" value="https://nuget.pkg.github.com/Ad-Hoc-org/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>

<packageSourceMapping>
<packageSource key="AdHoc">
<package pattern="AdHoc*" />
</packageSource>
<packageSource key="NuGet">
<package pattern="*" />
</packageSource>
</packageSourceMapping>

<disabledPackageSources />
</configuration>
</configuration>
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"rollForward": "latestFeature",
"version": "9.0.100-rc.1.24452.12"
"version": "9.0.100"
}
}
}

0 comments on commit 08446a9

Please sign in to comment.