Skip to content

Commit 2164ce9

Browse files
committed
Release v0.1.1
Fix projectUrl/repository nupkg metadata. The v0.1.0 packages on nuget.org pointed projectUrl at github.com/FieldCure/ToolHost (spec draft, 404). v0.1.1 corrects both URLs to github.com/fieldcure/fieldcure-toolhost. No code changes — nupkg contents are byte-identical to v0.1.0 except the nuspec URLs.
1 parent 24559ad commit 2164ce9

6 files changed

Lines changed: 22 additions & 8 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ here. We will politely close such PRs.
1919
## Building from source
2020

2121
```bash
22-
git clone https://github.com/FieldCure/ToolHost.git
23-
cd ToolHost
22+
git clone https://github.com/fieldcure/fieldcure-toolhost.git
23+
cd fieldcure-toolhost
2424
dotnet restore FieldCure.ToolHost.slnx
2525
dotnet build FieldCure.ToolHost.slnx -c Release
2626
dotnet test FieldCure.ToolHost.slnx -c Release --filter "Category!=Integration"

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<Company>FieldCure Co., Ltd.</Company>
2424
<Copyright>Copyright (c) FieldCure Co., Ltd. and contributors.</Copyright>
2525
<PackageLicenseExpression>MIT</PackageLicenseExpression>
26-
<PackageProjectUrl>https://github.com/FieldCure/ToolHost</PackageProjectUrl>
27-
<RepositoryUrl>https://github.com/FieldCure/ToolHost</RepositoryUrl>
26+
<PackageProjectUrl>https://github.com/fieldcure/fieldcure-toolhost</PackageProjectUrl>
27+
<RepositoryUrl>https://github.com/fieldcure/fieldcure-toolhost</RepositoryUrl>
2828
<RepositoryType>git</RepositoryType>
2929
<PublishRepositoryUrl>true</PublishRepositoryUrl>
3030
<EmbedUntrackedSources>true</EmbedUntrackedSources>

RELEASENOTES.ToolHost.Cli.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes — FieldCure.ToolHost.Cli (`fcdnx`)
22

3+
## v0.1.1 (2026-05-18)
4+
5+
### Fixed
6+
7+
- **Package metadata**`projectUrl` and `repository` URLs now point at the actual GitHub repository (`fieldcure/fieldcure-toolhost`) instead of the spec's draft path (`FieldCure/ToolHost`, which 404s). No code changes; nupkg contents byte-identical to v0.1.0 except the nuspec URLs.
8+
39
## v0.1.0 (2026-05-18)
410

511
Initial release. `fcdnx` is a drop-in `dnx` / `dotnet tool execute` replacement for environments without the .NET 10 SDK.

RELEASENOTES.ToolHost.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes — FieldCure.ToolHost
22

3+
## v0.1.1 (2026-05-18)
4+
5+
### Fixed
6+
7+
- **Package metadata**`projectUrl` and `repository` URLs now point at the actual GitHub repository (`fieldcure/fieldcure-toolhost`) instead of the spec's draft path (`FieldCure/ToolHost`, which 404s). No code changes; nupkg contents byte-identical to v0.1.0 except the nuspec URLs.
8+
39
## v0.1.0 (2026-05-18)
410

511
Initial release.

src/FieldCure.ToolHost.Cli/FieldCure.ToolHost.Cli.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<LangVersion>latest</LangVersion>
9-
<Version>0.1.0</Version>
9+
<Version>0.1.1</Version>
1010
<AssemblyName>FieldCure.ToolHost.Cli</AssemblyName>
1111
<RootNamespace>FieldCure.ToolHost.Cli</RootNamespace>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -28,11 +28,12 @@
2828
<PackageTags>dnx;dotnet-tool;nuget;fcdnx;tool-runner;sdk-less;cli</PackageTags>
2929
<PackageReadmeFile>README.md</PackageReadmeFile>
3030
<PackageIcon>icon.png</PackageIcon>
31-
<PackageReleaseNotes>v0.1.0Initial fcdnx CLI. dnx-compatible flag matrix on the v0.1 surface. See RELEASENOTES.ToolHost.Cli.md on GitHub for the full notes.</PackageReleaseNotes>
31+
<PackageReleaseNotes>v0.1.1Fix projectUrl/repository metadata to point at fieldcure/fieldcure-toolhost. No code changes. See RELEASENOTES.ToolHost.Cli.md on GitHub for the full notes.</PackageReleaseNotes>
3232
</PropertyGroup>
3333

3434
<ItemGroup>
3535
<None Include="README.md" Pack="true" PackagePath="" />
36+
<None Include="icon.png" Pack="true" PackagePath="" />
3637
</ItemGroup>
3738

3839
<ItemGroup>

src/FieldCure.ToolHost/FieldCure.ToolHost.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<LangVersion>latest</LangVersion>
8-
<Version>0.1.0</Version>
8+
<Version>0.1.1</Version>
99
<AssemblyName>FieldCure.ToolHost</AssemblyName>
1010
<RootNamespace>FieldCure.ToolHost</RootNamespace>
1111
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -23,11 +23,12 @@
2323
<PackageTags>dnx;dotnet-tool;nuget;tool-runner;sdk-less;runtime;cli</PackageTags>
2424
<PackageReadmeFile>README.md</PackageReadmeFile>
2525
<PackageIcon>icon.png</PackageIcon>
26-
<PackageReleaseNotes>v0.1.0Initial MVP. Library API to resolve, extract, and launch .NET tools from NuGet without the .NET SDK. See RELEASENOTES.ToolHost.md on GitHub for the full notes.</PackageReleaseNotes>
26+
<PackageReleaseNotes>v0.1.1Fix projectUrl/repository metadata to point at fieldcure/fieldcure-toolhost. No code changes. See RELEASENOTES.ToolHost.md on GitHub for the full notes.</PackageReleaseNotes>
2727
</PropertyGroup>
2828

2929
<ItemGroup>
3030
<None Include="README.md" Pack="true" PackagePath="" />
31+
<None Include="icon.png" Pack="true" PackagePath="" />
3132
</ItemGroup>
3233

3334
<ItemGroup>

0 commit comments

Comments
 (0)