-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOBSControl.csproj
More file actions
78 lines (67 loc) · 3.05 KB
/
OBSControl.csproj
File metadata and controls
78 lines (67 loc) · 3.05 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<RootNamespace>WeatherElectric.OBSControl</RootNamespace>
<LangVersion>default</LangVersion>
<IsPackable>false</IsPackable>
<Company>Weather Electric</Company>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyName>OBSControl</AssemblyName>
<Version>1.1.2</Version>
</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>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</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\**" />
<Compile Remove="Refs\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Links\**" />
<EmbeddedResource Remove="Staging\**" />
<EmbeddedResource Remove="Refs\**" />
</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>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Bonelab.GameLibs.Steam" Version="6.0.0" />
<PackageReference Include="Il2CppInterop.Runtime" Version="1.5.1" />
<PackageReference Include="LavaGang.MelonLoader" Version="0.7.1" />
<PackageReference Include="OneLastLibPt2" Version="1.0.0" />
<PackageReference Include="WeatherElectric.OBSBridge" Version="2.0.0" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="COPY "$(TargetPath)" "$(SolutionDir)Links\Mods"
COPY "$(TargetPath)" "$(SolutionDir)Staging\Mods"" />
</Target>
</Project>