-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOFFRestored.csproj
More file actions
67 lines (61 loc) · 2.45 KB
/
Copy pathOFFRestored.csproj
File metadata and controls
67 lines (61 loc) · 2.45 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<!-- Info -->
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<ProjectGuid>com.ferase.offrestored</ProjectGuid>
<AssemblyName>OFFRestored</AssemblyName>
<Product>OFF Restored</Product>
<Version>1.0.1</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>OFFRestored</RootNamespace>
</PropertyGroup>
<!-- Don't copy referenced assemblies to build -->
<PropertyGroup>
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<GenerateDependencyFile>false</GenerateDependencyFile>
</PropertyGroup>
<Target Name="ClearReferenceCopyLocalPaths" AfterTargets="ResolveAssemblyReferences">
<ItemGroup>
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" />
</ItemGroup>
</Target>
<!-- Props -->
<Import Project="OFFPluginInfo.props" />
<!-- Assemblies -->
<ItemGroup>
<!-- DLLs from OFF/OFF_Data/Managed -->
<Reference Include="Assembly-CSharp">
<HintPath>lib/Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>lib/UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>lib/UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="DoTween">
<HintPath>lib/DoTween.dll</HintPath>
</Reference>
<Reference Include="DoTween.Modules">
<HintPath>lib/DoTween.Modules.dll</HintPath>
</Reference>
</ItemGroup>
<!-- NuGet packages -->
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all" />
<PackageReference Include="BepInEx.Core" Version="5.*" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
<PackageReference Include="UnityEngine.Modules" Version="6000.1.16" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
</ItemGroup>
</Project>