Skip to content

Commit 985e6c3

Browse files
Nuspec fix
1 parent 236fb89 commit 985e6c3

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
3+
4+
## [1.0.3] - 2024-01-08
5+
6+
### Fixed
7+
- Ensure that the Project Dependency on TelnetNegotiationCore.Functional is added as a DLL.
38

49
## [1.0.2] - 2024-01-07
510

LargerLogo.png

22.4 KB
Loading

TelnetNegotiationCore/TelnetNegotiationCore.csproj

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
6-
<Version>1.0.2</Version>
6+
<Version>1.0.3</Version>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<Title>Telnet Negotiation Core</Title>
99
<PackageId>$(AssemblyName)</PackageId>
@@ -44,6 +44,10 @@
4444
</ItemGroup>
4545

4646
<ItemGroup>
47+
<Content Include="$(TargetDir)\TelnetNegotiationCore.Functional.dll">
48+
<Pack>true</Pack>
49+
<PackagePath>lib\$(TargetFramework)</PackagePath>
50+
</Content>
4751
<PackageReference Include="morelinq" Version="3.4.2" />
4852
<PackageReference Include="OneOf" Version="3.0.255" />
4953
<PackageReference Include="Serilog" Version="3.0.1" />
@@ -54,7 +58,9 @@
5458
</ItemGroup>
5559

5660
<ItemGroup>
57-
<ProjectReference Include="..\TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj" />
61+
<ProjectReference Include="..\TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj">
62+
<Private>True</Private>
63+
</ProjectReference>
5864
</ItemGroup>
5965

6066
</Project>

0 commit comments

Comments
 (0)