-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathProjectGenesis.csproj
More file actions
133 lines (133 loc) · 7.18 KB
/
ProjectGenesis.csproj
File metadata and controls
133 lines (133 loc) · 7.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="PublicizeAssembly">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"/>
<Import Project="DefaultPath.props"/>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{EFF66744-FAF7-461E-B86E-7130E64E16DF}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ProjectGenesis</RootNamespace>
<AssemblyName>ProjectGenesis</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile/>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin/Debug</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin/Release</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System"/>
<Reference Include="System.Core"/>
<Reference Include="Assembly-CSharp">
<HintPath>lib\Assembly-CSharp-publicized.dll</HintPath>
</Reference>
<Reference Include="GalacticScale">
<HintPath>lib\GalacticScale-publicized.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>lib\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="mscorlib">
<HintPath>$(DSPAssemblyPath)mscorlib.dll</HintPath>
</Reference>
<Reference Include="netstandard">
<HintPath>$(DSPAssemblyPath)netstandard.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.StackTrace">
<HintPath>$(DSPAssemblyPath)System.Diagnostics.StackTrace.dll</HintPath>
</Reference>
<Reference Include="System.Globalization.Extensions">
<HintPath>$(DSPAssemblyPath)System.Globalization.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Xml">
<HintPath>$(DSPAssemblyPath)System.Runtime.Serialization.Xml.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>$(DSPAssemblyPath)UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AssetBundleModule">
<HintPath>$(DSPAssemblyPath)UnityEngine.AssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>$(DSPAssemblyPath)UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ParticleSystemModule">
<HintPath>$(DSPAssemblyPath)UnityEngine.ParticleSystemModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ImageConversionModule">
<HintPath>$(DSPAssemblyPath)UnityEngine.ImageConversionModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule">
<HintPath>$(DSPAssemblyPath)UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>$(DSPAssemblyPath)UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule">
<HintPath>$(DSPAssemblyPath)UnityEngine.UIModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Core" Version="5.4.17"/>
<PackageReference Include="DysonSphereProgram.Modding.CommonAPI" Version="1.6.5"/>
<PackageReference Include="DysonSphereProgram.Modding.DSPModSave" Version="1.2.0"/>
<PackageReference Include="DysonSphereProgram.Modding.LDBTool" Version="3.0.0"/>
<PackageReference Include="DysonSphereProgram.Modding.NebulaMultiplayerModApi" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="src\**\*.cs"/>
<EmbeddedResource Include="assets\sprite\*.png" />
<EmbeddedResource Include="assets\texture\*.png" />
<EmbeddedResource Include="data\*.json"/>
<None Include="assets\*"/>
<None Include="lib\*"/>
<None Include="*.md"/>
<None Include="DefaultPath.props" />
<None Include="DefaultPath.props.example" />
<None Include="nuget.config"/>
<Content Include=".gitignore" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets"/>
<PropertyGroup>
<DumpedAssembliesPath>$(BepinExPath)DumpedAssemblies\DSPGAME\Assembly-CSharp.dll</DumpedAssembliesPath>
</PropertyGroup>
<Target Name="PublicizeAssembly" Condition="Exists($(DumpedAssembliesPath))">
<Exec Command=""$(SolutionDir)lib\BepInEx.AssemblyPublicizer.Cli.exe" "$(DumpedAssembliesPath)" --output "$(SolutionDir)lib\Assembly-CSharp-publicized.dll""/>
</Target>
<Target Name="AfterBuild">
<MakeDir Directories="$(ReleasePath)"/>
<MakeDir Directories="$(ReleasePath)plugins/"/>
<Copy SourceFiles="$(TargetPath)" DestinationFiles="$(BepinExPath)plugins\$(DebugModDir)\$(TargetName).dll"/>
<Copy SourceFiles="$(SolutionDir)assets\genesis-models" DestinationFiles="$(BepinExPath)plugins\$(DebugModDir)\genesis-models"/>
<Copy SourceFiles="$(SolutionDir)assets\genesis-models-lab" DestinationFiles="$(BepinExPath)plugins\$(DebugModDir)\genesis-models-lab"/>
<Copy SourceFiles="$(TargetPath)" DestinationFiles="$(ReleasePath)plugins\$(TargetName).dll"/>
<Copy SourceFiles="README.md" DestinationFiles="$(ReleasePath)README.md"/>
<Copy SourceFiles="CHANGELOG.md" DestinationFiles="$(ReleasePath)CHANGELOG.md"/>
<Copy SourceFiles="$(SolutionDir)assets\icon.png" DestinationFiles="$(ReleasePath)icon.png"/>
<Copy SourceFiles="$(SolutionDir)assets\genesis-models" DestinationFiles="$(ReleasePath)plugins\genesis-models"/>
<Copy SourceFiles="$(SolutionDir)assets\genesis-models-lab" DestinationFiles="$(ReleasePath)plugins\genesis-models-lab"/>
<Copy SourceFiles="$(SolutionDir)lib\Newtonsoft.Json.dll" DestinationFiles="$(ReleasePath)plugins\Newtonsoft.Json.dll"/>
</Target>
</Project>