Skip to content

Commit d8fa158

Browse files
Version 1.0.7 push - to try and get NuGet to play nice.
1 parent d1ee5ef commit d8fa158

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [1.0.7] - 2024-03-19
5+
6+
### Changed
7+
- Get NuGet to play nice about dependencies.
8+
49
## [1.0.6] - 2024-01-09
510

611
### Changed

TelnetNegotiationCore.UnitTests/TelnetNegotiationCore.UnitTests.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
</ItemGroup>
2525

2626
<ItemGroup>
27+
<ProjectReference Include="..\TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj" />
2728
<ProjectReference Include="..\TelnetNegotiationCore\TelnetNegotiationCore.csproj" />
2829
</ItemGroup>
2930

TelnetNegotiationCore.sln

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Files", "Solution
1313
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
1414
LICENSE = LICENSE
1515
README.md = README.md
16+
.github\workflows\release.yml = .github\workflows\release.yml
1617
EndProjectSection
1718
EndProject
1819
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelnetNegotiationCore.UnitTests", "TelnetNegotiationCore.UnitTests\TelnetNegotiationCore.UnitTests.csproj", "{0EC8EB89-8596-4426-83B0-29354F5B8938}"
1920
EndProject
2021
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelnetNegotiationCore.TestClient", "TelnetNegotiationCore.TestClient\TelnetNegotiationCore.TestClient.csproj", "{E1A76C78-8246-472F-824E-9F7F9B3778B7}"
2122
EndProject
22-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "TelnetNegotiationCore.Functional", "TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj", "{0307D0B8-AAA7-40C8-9E3E-34BE64F93BB7}"
23+
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "TelnetNegotiationCore.Functional", "TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj", "{0307D0B8-AAA7-40C8-9E3E-34BE64F93BB7}"
2324
EndProject
2425
Global
2526
GlobalSection(SolutionConfigurationPlatforms) = preSolution

TelnetNegotiationCore/TelnetNegotiationCore.csproj

+3-5
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.6</Version>
6+
<Version>1.0.7</Version>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<Title>Telnet Negotiation Core</Title>
99
<PackageId>$(AssemblyName)</PackageId>
@@ -25,7 +25,7 @@
2525
</PropertyGroup>
2626

2727
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
28-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
28+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
2929
</PropertyGroup>
3030

3131
<ItemGroup>
@@ -56,9 +56,7 @@
5656
</ItemGroup>
5757

5858
<ItemGroup>
59-
<ProjectReference Include="..\TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj">
60-
<Private>True</Private>
61-
</ProjectReference>
59+
<ProjectReference Include="..\TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj" PrivateAssets="all"/>
6260
</ItemGroup>
6361

6462
</Project>

0 commit comments

Comments
 (0)