Skip to content

Commit 4768ee9

Browse files
Copilotkerryjiang
andauthored
Fix NuGet package readme inclusion via correct MSBuild path resolution (#8)
* Fix NuGet package readme by using MSBuildThisFileDirectory for correct path resolution Agent-Logs-Url: https://github.com/kerryjiang/OpenEtradeMcp/sessions/95aab159-e74a-458a-9848-70acaf898711 Co-authored-by: kerryjiang <456060+kerryjiang@users.noreply.github.com> * Upgrade version to 1.0.3 in version.json Agent-Logs-Url: https://github.com/kerryjiang/OpenEtradeMcp/sessions/e792b61a-9d1f-41ed-a5ea-a74734210c72 Co-authored-by: kerryjiang <456060+kerryjiang@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kerryjiang <456060+kerryjiang@users.noreply.github.com>
1 parent 7d01486 commit 4768ee9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Authors>Kerry Jiang</Authors>
1313
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1414
<RepositoryUrl>https://github.com/kerryjiang/OpenEtradeMcp.git</RepositoryUrl>
15-
<PackageReadmeFilePath>../../releaseNotes/v$(PackageVersion).md</PackageReadmeFilePath>
15+
<PackageReadmeFilePath>$(MSBuildThisFileDirectory)releaseNotes/v$(PackageVersion).md</PackageReadmeFilePath>
1616
</PropertyGroup>
1717
<PropertyGroup Condition="Exists('$(PackageReadmeFilePath)')">
1818
<ReadmeFileAvailable>true</ReadmeFileAvailable>
@@ -21,6 +21,6 @@
2121
<PackageReadmeFile>v$(PackageVersion).md</PackageReadmeFile>
2222
</PropertyGroup>
2323
<ItemGroup Condition="'$(IncludeReleaseNotes)' == 'true' and $(ReadmeFileAvailable) == 'true'">
24-
<None Include="$(PackageReadmeFile)" Pack="true" PackagePath="/" />
24+
<None Include="$(PackageReadmeFilePath)" Pack="true" PackagePath="/" />
2525
</ItemGroup>
2626
</Project>

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"publicReleaseRefSpec": [
55
"^refs/heads/main$",
66
"^refs/heads/v\\d+(?:\\.\\d+)?$"

0 commit comments

Comments
 (0)