Skip to content

Commit

Permalink
Set version 0.1.1, add readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeon8 committed Aug 27, 2024
1 parent 5d608cd commit 91ee37c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# StrideNet
# StrideNet

StrideNet is high-level networking library for developing multiplayer games in Stride Engine.
Provides workflow very similar to [Unity Netcode for GameObjects](https://docs-multiplayer.unity3d.com/netcode/current/about/) or [Mirror](https://mirror-networking.com/).

See [wiki](https://github.com/Zeon8/StrideNet/wiki) for more information.

# License

StrideNet is licenced under the MIT licence.
5 changes: 3 additions & 2 deletions StrideNet.SourceGenerator/StrideNet.SourceGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
<IsRoslynComponent>true</IsRoslynComponent>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<Title>StrideNet.SourceGenerator</Title>
<Authors>Zeon8</Authors>
<Authors>Zeon4</Authors>
<Description>Source generator for StrideNet library.</Description>
<PackageProjectUrl>https://github.com/Zeon8/StrideNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/Zeon8/StrideNet</RepositoryUrl>
<Version>1.0.0</Version>
<Version>0.1.1</Version>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<FileVersion>$(Version)</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
17 changes: 12 additions & 5 deletions StrideNet/StrideNet.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Title>StrideNet</Title>
<Authors>Zeon8</Authors>
<Authors>Zeon4</Authors>
<Description>Network library for Stride Game Engine.</Description>
<PackageProjectUrl>https://github.com/Zeon8/StrideNet</PackageProjectUrl>
<FileVersion></FileVersion>
<Version>1.0.0</Version>
<Version>0.1.1</Version>
<RepositoryUrl>https://github.com/Zeon8/StrideNet</RepositoryUrl>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<FileVersion>$(Version)</FileVersion>
</PropertyGroup>
<ItemGroup>
<!--<PackageReference Include="StrideNet.SourceGenerator" Version="1.0.0" />-->
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="StrideNet.SourceGenerator" Version="0.1.1" />
<PackageReference Include="MemoryPack" Version="1.10.0" />
<PackageReference Include="RiptideNetworking.Riptide" Version="2.1.2" />
<PackageReference Include="Stride.Engine" Version="4.2.0.2188" PrivateAssets="contentfiles;analyzers" />
Expand Down

0 comments on commit 91ee37c

Please sign in to comment.