-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBSExtraColorPresets - Backup.csproj
47 lines (47 loc) · 2.1 KB
/
BSExtraColorPresets - Backup.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<OutputType>Library</OutputType>
<LocalRefsDir Condition="Exists('..\Refs')">..\Refs</LocalRefsDir>
<BeatSaberDir>$(LocalRefsDir)</BeatSaberDir>
<AppOutputBase>$(MSBuildProjectDirectory)\</AppOutputBase>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="$(DefineConstants.Contains('CIBuild')) OR '$(NCrunch)' == '1'">
<DisableCopyToPlugins>True</DisableCopyToPlugins>
</PropertyGroup>
<PropertyGroup Condition="'$(NCrunch)' == '1'">
<DisableCopyToPlugins>True</DisableCopyToPlugins>
<DisableZipRelease>True</DisableZipRelease>
</PropertyGroup>
<ItemGroup>
<Compile Include="ExtraColorPreset.cs" />
<Compile Include="ExtraColorPresetV2.cs" />
<Compile Include="HarmonyPatches\SceneTransitionPatch.cs" />
<Compile Include="Plugin.cs" />
<Compile Include="Configuration\PluginConfig.cs" />
<Compile Include="BSExtraColorPresetsController.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="UI\IMinimalExtraColorPreset.cs" />
<Compile Include="UI\MinimalExtraColorPreset.cs" />
<Compile Include="UI\PresetManagerSettings.cs" />
<Compile Include="UI\PresetSelectorSettings.cs" />
<Compile Include="Util\Converter.cs" />
<Compile Include="Util\HexColor.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="manifest.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="UI\PresetManagerViewController.bsml" />
</ItemGroup>
<ItemGroup>
<None Include="BSExtraColorPresets.csproj.user" Condition="Exists('BSExtraColorPresets.csproj.user')" />
<EmbeddedResource Include="UI\PresetSelectorViewController.bsml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BeatSaberModdingTools.Tasks" Version="2.0.0-beta7" PrivateAssets="all" />
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.2" PrivateAssets="all" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
</Project>