|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Library</OutputType> |
| 5 | + |
| 6 | + <RootNamespace></RootNamespace> |
| 7 | + <AssemblyName>Unity.Netcode.Components</AssemblyName> |
| 8 | + <TargetFramework>netstandard2.1</TargetFramework> |
| 9 | + <DefineConstants>UNITY_2021_1_OR_NEWER; UNITY_2021_2_OR_NEWER; UNITY_2022_3_OR_NEWER; UNITY_EDITOR; UNITY_INCLUDE_TESTS</DefineConstants> |
| 10 | + <Nullable>disable</Nullable> |
| 11 | + |
| 12 | + <IsPackable>false</IsPackable> |
| 13 | + </PropertyGroup> |
| 14 | + |
| 15 | + <ItemGroup> |
| 16 | + <InternalsVisibleTo Include="NetcodePatcher" /> |
| 17 | + <InternalsVisibleTo Include="Unity.Netcode.Runtime" /> |
| 18 | + </ItemGroup> |
| 19 | + |
| 20 | + <!-- Runtime dependencies --> |
| 21 | + <ItemGroup> |
| 22 | + <Reference Include="Unity.Burst"> |
| 23 | + <HintPath>$(ProjectDir)../UnityProject/Library/ScriptAssemblies/Unity.Burst.dll</HintPath> |
| 24 | + </Reference> |
| 25 | + <Reference Include="Unity.Collections"> |
| 26 | + <HintPath>$(ProjectDir)../UnityProject/Library/ScriptAssemblies/Unity.Collections.dll</HintPath> |
| 27 | + </Reference> |
| 28 | + <Reference Include="Unity.Mathematics"> |
| 29 | + <HintPath>$(ProjectDir)../UnityProject/Library/ScriptAssemblies/Unity.Mathematics.dll</HintPath> |
| 30 | + </Reference> |
| 31 | + <Reference Include="Unity.Collections.LowLevel.ILSupport"> |
| 32 | + <HintPath>$(ProjectDir)../UnityProject/Library/ScriptAssemblies/Unity.Collections.LowLevel.ILSupport.dll</HintPath> |
| 33 | + </Reference> |
| 34 | + <Reference Include="Unity.CompilationPipeline.Common"> |
| 35 | + <HintPath>$(UnityEditorDir)/Data/Managed/Unity.CompilationPipeline.Common.dll</HintPath> |
| 36 | + </Reference> |
| 37 | + <Reference Include="Unity.Networking.Transport"> |
| 38 | + <HintPath>$(ProjectDir)../UnityProject/Library/ScriptAssemblies/Unity.Networking.Transport.dll</HintPath> |
| 39 | + </Reference> |
| 40 | + <Reference Include="UnityEditor"> |
| 41 | + <HintPath>$(UnityEditorDir)/Data/Managed/UnityEditor.dll</HintPath> |
| 42 | + </Reference> |
| 43 | + <Reference Include="UnityEngine"> |
| 44 | + <HintPath>$(UnityEditorDir)/Data/Managed/UnityEngine/UnityEngine.dll</HintPath> |
| 45 | + </Reference> |
| 46 | + <Reference Include="UnityEngine.CoreModule"> |
| 47 | + <HintPath>$(UnityEditorDir)/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath> |
| 48 | + </Reference> |
| 49 | + <Reference Include="UnityEngine.IMGUIModule"> |
| 50 | + <HintPath>$(UnityEditorDir)/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath> |
| 51 | + </Reference> |
| 52 | + <Reference Include="UnityEngine.TextRenderingModule"> |
| 53 | + <HintPath>$(UnityEditorDir)/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath> |
| 54 | + </Reference> |
| 55 | + <ProjectReference Include="$(ProjectDir)../Unity.Netcode.Runtime/Unity.Netcode.Runtime.csproj"/> |
| 56 | + </ItemGroup> |
| 57 | + |
| 58 | +</Project> |
0 commit comments