-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathLCVR.csproj
69 lines (62 loc) · 3.13 KB
/
LCVR.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>LCVR</AssemblyName>
<Description>Collecting Scrap in VR</Description>
<Version>1.3.10</Version>
<Authors>DaXcess</Authors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>12.0</LangVersion>
<Title>LethalCompanyVR</Title>
<Copyright>Copyright (c) DaXcess 2024-2025</Copyright>
<PackageProjectUrl>https://lcvr.daxcess.io</PackageProjectUrl>
<RepositoryUrl>https://github.com/DaXcess/LCVR</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Preloader\**" />
<EmbeddedResource Remove="Preloader\**" />
<None Remove="Preloader\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all" />
<PackageReference Include="BepInEx.Core" Version="5.*" />
<PackageReference Include="CullFactory" Version="1.0.4" />
<PackageReference Include="DissonanceVoip" Version="1.50.0-lc.1" />
<PackageReference Include="Diversity" Version="2.0.3" />
<PackageReference Include="Facepunch.Steamworks" Version="2.3.3" />
<PackageReference Include="LethalCompany" Version="1.66.0" />
<PackageReference Include="Mimics" Version="2.4.1" />
<PackageReference Include="MoreCompany" Version="1.10.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Unity.Animation.Rigging" Version="1.2.1" />
<PackageReference Include="Unity.InputSystem" Version="1.7.0" />
<PackageReference Include="Unity.Netcode.Runtime" Version="1.6.0" />
<PackageReference Include="Unity.RenderPipelines.Core" Version="14.0.8" />
<PackageReference Include="Unity.RenderPipelines.HighDefinition" Version="14.0.8" />
<PackageReference Include="Unity.TextMeshPro" Version="3.0.6" />
<PackageReference Include="Unity.XR.CoreUtils" Version="2.2.3" />
<PackageReference Include="Unity.XR.Interaction.Toolkit" Version="2.5.3" />
<PackageReference Include="Unity.XR.Management" Version="4.4.1" />
<PackageReference Include="Unity.XR.OpenXR" Version="1.8.2" />
<PackageReference Include="UnityEngine.Modules" Version="2022.3.9" IncludeAssets="compile" />
<PackageReference Include="UnityEngine.SpatialTracking" Version="2.1.10" />
<PackageReference Include="UnityEngine.UI" Version="1.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2"
PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>