Skip to content

Commit

Permalink
WebSocketApp: stop using floating numbers
Browse files Browse the repository at this point in the history
Otherwise when starting to use nuget Centralized Package
Management we would get this error:

```
error NU1011: Centrally defined floating package versions are not allowed.
```
  • Loading branch information
knocte committed Feb 2, 2024
1 parent 4b0ee66 commit ee69be3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WebSocketApp/WebSocketApp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<Compile Include="Middleware\WebSocketMiddleware.fs" />
<Compile Include="Program.fs" />
<None Include="web.config" CopyToOutputDirectory="PreserveNewest" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.*" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.34" />
<PackageReference Include="Giraffe" Version="3.1.0" />
<PackageReference Include="Giraffe.Razor" Version="1.3.*" />
<PackageReference Include="Giraffe.Razor" Version="1.3.0" />
<Watch Include="**\*.cshtml" Exclude="bin\**\*" />
<PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="2.1.1" />
<PackageReference Include="TaskBuilder.fs" Version="2.1.0" />
Expand Down

0 comments on commit ee69be3

Please sign in to comment.