Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

If this library helps you, please support it: **[Become a supporter](https://www.patreon.com/MasBandwidth/membership)**

**Status: released** — v1.0.0, the first release. Wire compatibility with the C reference is proven in CI on every push (the "C wire compatibility" gate).
**Status: released** — v1.1.0, tested against the C reference at netcode 1.4.8. Wire compatibility with the C reference is proven in CI on every push (the "C wire compatibility" gate).

C# port of [netcode](https://github.com/mas-bandwidth/netcode), a simple protocol
for creating secure client/server connections over UDP (protocol
Expand Down
5 changes: 5 additions & 0 deletions src/Netcode.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
library; net10.0 is the current SDK. (family precedent: serialize.cs) -->
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<RootNamespace>Netcode</RootNamespace>
<!-- this port's own release number. it does NOT track the C reference's
numbering (netcode 1.4.8 is the C release this port is tested against);
"NETCODE 1.02" in Protocol.VersionInfo is the wire protocol version and
never moves. -->
<Version>1.1.0</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Loading