Files
PhotonViewDumper/PhotonViewDumper.csproj
2026-04-06 21:08:06 -04:00

45 lines
1.7 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>PhotonViewDumper</AssemblyName>
<Product>My first plugin</Product>
<Version>1.0.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RestoreAdditionalProjectSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json;
https://nuget.samboy.dev/v3/index.json
</RestoreAdditionalProjectSources>
<RootNamespace>PhotonViewDumper</RootNamespace>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
<PackageReference Include="CsvHelper" Version="33.1.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>./AssemblyReferences/Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Il2Cppmscorlib">
<HintPath>./AssemblyReferences/Il2Cppmscorlib.dll</HintPath>
</Reference>
<Reference Include="PhotonRealtime">
<HintPath>./AssemblyReferences/PhotonRealtime.dll</HintPath>
</Reference>
<Reference Include="PhotonUnityNetworking">
<HintPath>./AssemblyReferences/PhotonUnityNetworking.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>./AssemblyReferences/UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputLegacyModule">
<HintPath>./AssemblyReferences/UnityEngine.InputLegacyModule.dll</HintPath>
</Reference>
</ItemGroup>
</Project>