-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLabCam.csproj
More file actions
84 lines (71 loc) · 3.36 KB
/
LabCam.csproj
File metadata and controls
84 lines (71 loc) · 3.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<RootNamespace>WeatherElectric.LabCam</RootNamespace>
<LangVersion>default</LangVersion>
<IsPackable>false</IsPackable>
<Company>Weather Electric</Company>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyName>LabCam</AssemblyName>
<Title>LabCam</Title>
<Authors>Mabel Amber</Authors>
<Description>Press the menu button with your right hand to take a picture.
Press the trigger with your right hand to toggle the flash.
Pictures are saved to `BONELAB\UserData\Weather Electric\LabCam`</Description>
<Copyright>Weather Electric</Copyright>
</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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>TRACE;MELONLOADER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Links\**"/>
<Compile Remove="Staging\**"/>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Links\**"/>
<EmbeddedResource Remove="Staging\**"/>
<None Remove="Resources\LabCamWindows.bundle" />
<EmbeddedResource Include="Resources\LabCamWindows.bundle" />
<None Remove="Resources\LabCamAndroid.bundle" />
<EmbeddedResource Include="Resources\LabCamAndroid.bundle" />
</ItemGroup>
<ItemGroup>
<None Remove="Links\**"/>
<None Remove="Staging\**"/>
<None Remove="Refs\**"/>
<None Remove=".gitignore"/>
<None Remove="README.md"/>
<None Remove="setup.bat"/>
</ItemGroup>
<ItemGroup>
<Reference Include="BoneLib">
<HintPath>Links\Mods\BoneLib.dll</HintPath>
</Reference>
<Reference Include="LabFusion">
<HintPath>Links\Mods\LabFusion.dll</HintPath>
</Reference>
<PackageReference Include="LavaGang.MelonLoader" Version="0.6.6"/>
<PackageReference Include="Bonelab.GameLibs.Steam" Version="6.0.0"/>
<PackageReference Include="Il2CppInterop.Runtime" Version="1.4.5"/>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="COPY "$(TargetPath)" "$(SolutionDir)Links\Mods"
COPY "$(TargetPath)" "$(SolutionDir)Staging\Mods""/>
</Target>
</Project>