Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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 .yamato/project-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ standards_{{ projects.first.name }}:
name: Standards Check {{ projects.first.name }}
agent:
type: Unity::VM
image: package-ci/ubuntu-22.04:v4
image: package-ci/win10:v4.36.0
flavor: b1.large
commands:
- dotnet --version
Expand Down
8 changes: 4 additions & 4 deletions Packages/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"com.unity.memoryprofiler": "1.1.6",
"com.unity.multiplayer.center": "1.0.0",
"com.unity.multiplayer.playmode": "1.5.0",
"com.unity.multiplayer.tools": "2.2.4",
"com.unity.netcode.gameobjects": "2.4.3",
"com.unity.multiplayer.tools": "2.2.6",
"com.unity.netcode.gameobjects": "2.6.0",
"com.unity.performance.profile-analyzer": "1.2.3",
"com.unity.postprocessing": "3.5.0",
"com.unity.render-pipelines.universal": "17.0.4",
"com.unity.services.authentication": "3.5.1",
"com.unity.services.multiplayer": "1.1.4",
"com.unity.services.multiplayer": "1.2.0",
"com.unity.test-framework": "1.5.1",
"com.unity.toolchain.macos-arm64-linux-x86_64": "2.0.4",
"com.unity.toolchain.macos-x86_64-linux-x86_64": "2.0.10",
"com.unity.transport": "2.5.1",
"com.unity.transport": "2.6.0",
"com.unity.ugui": "2.0.0",
"jp.hadashikick.vcontainer": "1.16.8",
"com.unity.modules.accessibility": "1.0.0",
Expand Down
28 changes: 14 additions & 14 deletions Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://packages.unity.com"
},
"com.unity.burst": {
"version": "1.8.23",
"version": "1.8.24",
"depth": 1,
"source": "registry",
"dependencies": {
Expand Down Expand Up @@ -154,7 +154,7 @@
}
},
"com.unity.multiplayer.tools": {
"version": "2.2.4",
"version": "2.2.6",
"depth": 0,
"source": "registry",
"dependencies": {
Expand All @@ -169,7 +169,7 @@
"url": "https://packages.unity.com"
},
"com.unity.netcode.gameobjects": {
"version": "2.4.3",
"version": "2.6.0",
"depth": 0,
"source": "registry",
"dependencies": {
Expand Down Expand Up @@ -289,36 +289,36 @@
"url": "https://packages.unity.com"
},
"com.unity.services.deployment": {
"version": "1.3.0",
"version": "1.6.2",
"depth": 1,
"source": "registry",
"dependencies": {
"com.unity.services.core": "1.12.0",
"com.unity.services.deployment.api": "1.0.0"
"com.unity.services.core": "1.15.1",
"com.unity.services.deployment.api": "1.1.2"
},
"url": "https://packages.unity.com"
},
"com.unity.services.deployment.api": {
"version": "1.0.0",
"version": "1.1.2",
"depth": 2,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.services.multiplayer": {
"version": "1.1.4",
"version": "1.2.0",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.transport": "2.5.0",
"com.unity.collections": "2.2.1",
"com.unity.services.qos": "1.3.0",
"com.unity.services.core": "1.13.0",
"com.unity.services.core": "1.15.1",
"com.unity.services.wire": "1.4.0",
"com.unity.services.deployment": "1.3.0",
"com.unity.services.deployment": "1.6.2",
"com.unity.nuget.newtonsoft-json": "3.2.1",
"com.unity.modules.unitywebrequest": "1.0.0",
"com.unity.services.authentication": "3.3.3"
"com.unity.services.authentication": "3.5.1"
},
"url": "https://packages.unity.com"
},
Expand Down Expand Up @@ -430,13 +430,13 @@
"url": "https://packages.unity.com"
},
"com.unity.transport": {
"version": "2.5.1",
"version": "2.6.0",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.burst": "1.8.12",
"com.unity.burst": "1.8.24",
"com.unity.collections": "2.2.1",
"com.unity.mathematics": "1.3.1"
"com.unity.mathematics": "1.3.2"
},
"url": "https://packages.unity.com"
},
Expand Down
28 changes: 14 additions & 14 deletions dotnet-tools/netcode.standards/netcode.standards.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<ToolCommandName>netcode.standards</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.3.0-alpha.21216.1" />
</ItemGroup>

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<ToolCommandName>netcode.standards</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.3.0-alpha.21216.1" />
</ItemGroup>
</Project>