-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIMGUI.csproj
More file actions
104 lines (87 loc) · 4.79 KB
/
Copy pathIMGUI.csproj
File metadata and controls
104 lines (87 loc) · 4.79 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<DebugType>full</DebugType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<DebugType>portable</DebugType>
<PathMap>$(MSBuildProjectDirectory)=/_/</PathMap>
</PropertyGroup>
<Import Project="$(ProjectDir)UserProperties.xml" />
<Target Name="VerifyModReferences" BeforeTargets="Build">
<Error Text="You forgot to edit/copy UserProperties.xml." Condition="$(UserPropertiesSetUp) != True" />
</Target>
<Target Name="PrepareMod" AfterTargets="Build">
<MakeDir Condition="Exists('$(ModOutputDir)\..')" Directories="$(ModOutputDir)" />
<PropertyGroup>
<ModCompileOutputDir Condition="Exists($(ModOutputDir))">$(ModOutputDir)\</ModCompileOutputDir>
<ModCompileOutputDir Condition="!Exists($(ModOutputDir))">$(ProjectDir)out\</ModCompileOutputDir>
</PropertyGroup>
<Copy SourceFiles="$(TargetDir)$(TargetName).dll;$(TargetDir)$(TargetName).pdb" DestinationFolder="$(ModCompileOutputDir)\" Retries="0" />
<Copy SourceFiles="$(ProjectDir)Metadata.xml" DestinationFolder="$(ModCompileOutputDir)\" Retries="0" />
<Copy SourceFiles="$(ProjectDir)LICENSE" DestinationFolder="$(ModCompileOutputDir)\" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)imgui.net\1.90.9.1\lib\netstandard2.0\ImGui.NET.dll" DestinationFolder="$(ModCompileOutputDir)\" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)system.numerics.vectors\4.4.0\lib\netstandard2.0\System.Numerics.Vectors.dll" DestinationFolder="$(ModCompileOutputDir)\" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)system.runtime.compilerservices.unsafe\4.4.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll" DestinationFolder="$(ModCompileOutputDir)\" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)imgui.net\1.90.9.1\runtimes\linux-x64\native\libcimgui.so" DestinationFiles="$(ModCompileOutputDir)\bin\linux-x64\libcimgui.so" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)imgui.net\1.90.9.1\runtimes\osx\native\libcimgui.dylib" DestinationFiles="$(ModCompileOutputDir)\bin\osx\libcimgui.dylib" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)imgui.net\1.90.9.1\runtimes\win-x64\native\cimgui.dll" DestinationFiles="$(ModCompileOutputDir)\bin\win-x64\cimgui.dll" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)imgui.net\1.90.9.1\runtimes\win-x86\native\cimgui.dll" DestinationFiles="$(ModCompileOutputDir)\bin\win-x86\cimgui.dll" Retries="0" />
<Copy SourceFiles="$(NuGetPackageRoot)imgui.net\1.90.9.1\runtimes\win-arm64\native\cimgui.dll" DestinationFiles="$(ModCompileOutputDir)\bin\win-arm64\cimgui.dll" Retries="0" />
</Target>
<ItemGroup>
<PackageReference Include="ImGui.NET" Version="1.90.9.1"/>
<PackageReference Include="System.Numerics.Vectors" Version="4.4.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Common">
<HintPath>$(FezDir)\Common.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ContentSerialization">
<HintPath>$(FezDir)\ContentSerialization.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="EasyStorage">
<HintPath>$(FezDir)\EasyStorage.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="FEZ">
<HintPath>$(FezDir)\FEZ.exe</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="FezEngine">
<HintPath>$(FezDir)\FezEngine.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="FNA">
<HintPath>$(FezDir)\FNA.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="XnaWordWrapCore">
<HintPath>$(FezDir)\XnaWordWrapCore.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="MonoMod">
<HintPath>$(MonoModDir)\MonoMod.exe</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="MonoMod.RuntimeDetour">
<HintPath>$(MonoModDir)\MonoMod.RuntimeDetour.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="MonoMod.Utils">
<HintPath>$(MonoModDir)\MonoMod.Utils.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Mono.Cecil">
<HintPath>$(MonoModDir)\Mono.Cecil.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>