|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
2 | 3 | <PropertyGroup> |
3 | 4 | <TargetFramework>net35</TargetFramework> |
4 | 5 | <OutputType>Library</OutputType> |
|
18 | 19 | </None> |
19 | 20 | </ItemGroup> |
20 | 21 |
|
| 22 | + <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 23 | + <Delete Files="$(OutputPath)\mcs.pdb" /> |
| 24 | + </Target> |
| 25 | + |
21 | 26 | <ItemGroup> |
22 | 27 | <ProjectReference Include="..\RuntimeUnityEditor.Core.Mono\RuntimeUnityEditor.Core.Mono.csproj" /> |
23 | 28 | </ItemGroup> |
24 | 29 |
|
25 | 30 | <ItemGroup> |
26 | | - <PackageReference Include="IllusionLibs.HoneySelect.UnityEngine" Version="5.3.5" /> |
27 | | - <PackageReference Include="ILRepack.Lib.MSBuild.Task" Version="2.0.16.1"> |
28 | | - <PrivateAssets>all</PrivateAssets> |
| 31 | + <PackageReference Include="IllusionLibs.HoneySelect.UnityEngine" Version="5.3.5"> |
| 32 | + <PrivateAssets>all</PrivateAssets> |
| 33 | + <IncludeAssets>compile</IncludeAssets> |
29 | 34 | </PackageReference> |
30 | 35 | <PackageReference Include="Mono.Cecil" Version="0.10.4" /> |
31 | 36 | <PackageReference Include="MonoMod.RuntimeDetour" Version="21.11.1.1" /> |
32 | 37 | <PackageReference Include="MonoMod.Utils" Version="21.11.1.1" /> |
33 | 38 | <PackageReference Include="UnityModManager" Version="0.27.2"> |
34 | | - <PrivateAssets>all</PrivateAssets> |
35 | | - <IncludeAssets>compile</IncludeAssets> |
| 39 | + <PrivateAssets>all</PrivateAssets> |
| 40 | + <IncludeAssets>compile</IncludeAssets> |
36 | 41 | </PackageReference> |
37 | 42 | </ItemGroup> |
38 | 43 |
|
39 | 44 | <Target Name="_ResolveCopyLocalNuGetPkgXmls" AfterTargets="ResolveReferences"> |
40 | | - <ItemGroup><!-- Copy XML files from all PackageReferences to output dir --> |
| 45 | + <ItemGroup> |
| 46 | + <!-- Copy XML files from all PackageReferences to output dir --> |
41 | 47 | <ReferenceCopyLocalPaths Include="@(ReferenceCopyLocalPaths->'%(RootDir)%(Directory)%(Filename).xml')" |
42 | 48 | Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)'!='' and Exists('%(RootDir)%(Directory)%(Filename).xml')" /> |
43 | 49 | </ItemGroup> |
|
0 commit comments