-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOneLastLibPt.2.csproj
More file actions
77 lines (69 loc) · 3.7 KB
/
OneLastLibPt.2.csproj
File metadata and controls
77 lines (69 loc) · 3.7 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<RootNamespace>WeatherElectric</RootNamespace>
<LangVersion>default</LangVersion>
<IsPackable>true</IsPackable>
<Company>Weather Electric</Company>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageId>OneLastLibPt2</PackageId>
<TargetFramework>net6.0</TargetFramework>
<Title>One Last Lib Pt. 2</Title>
<Authors>Mabel Amber, Weather Electric</Authors>
<Copyright>Weather Electric</Copyright>
<Description>But in our lies, there's a truth to find. | Core mod for my mods.</Description>
<PackageIcon>Icon.png</PackageIcon>
<RepositoryUrl>https://github.com/WeatherElectric/OneLastLibPt.2</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/WeatherElectric/OneLastLibPt.2</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/WeatherElectric/OneLastLibPt.2/blob/main/LICENSE.md</PackageLicenseUrl>
<PackageReleaseNotes>Initial Release</PackageReleaseNotes>
<AssemblyName>OneLastLibPt2</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Product>One Last Lib Pt.2</Product>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>TRACE;MELONLOADER</DefineConstants>
<DocumentationFile>bin\Debug\net6.0\OneLastLibPt2.xml</DocumentationFile>
<NoWarn>1701;1702;NU5125</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>TRACE;MELONLOADER</DefineConstants>
<DocumentationFile>bin\Release\net6.0\OneLastLibPt2.xml</DocumentationFile>
<NoWarn>1701;1702;NU5125</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Il2CppInterop.Runtime" Version="1.5.*"/>
<PackageReference Include="LavaGang.MelonLoader" Version="0.7.*"/>
<PackageReference Include="UnityEngine.Modules" Version="2021.3.16">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="BoneLib">
<HintPath>$(BONELAB_DIR)\Mods\BoneLib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="Icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="COPY "$(TargetPath)" "$(SolutionDir)Staging\Mods"
COPY "$(TargetDir)OneLastLibPt2.xml" "$(SolutionDir)Staging\Mods"
COPY "$(SolutionDir)README.md" "$(SolutionDir)Staging\README.md"
COPY "$(TargetPath)" "$(BONELAB_DIR)\Mods"" />
</Target>
</Project>