generated from Fortunevale/ProjectMakoto.Plugins.Example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectMakoto.Plugins.ScoreSaber.csproj
78 lines (72 loc) · 2.6 KB
/
ProjectMakoto.Plugins.ScoreSaber.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
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">
<Import Project="MSBuild.props" />
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<PackageOutputPath>$(OutputPath)</PackageOutputPath>
<BaseOutputPath>bin\</BaseOutputPath>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<ValidateArchitecture>false</ValidateArchitecture>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="deps\**" />
<Compile Remove="Tools\**" />
<EmbeddedResource Remove="deps\**" />
<EmbeddedResource Remove="Tools\**" />
<None Remove="deps\**" />
<None Remove="Tools\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="DisCatSharp">
<HintPath>deps\DisCatSharp.dll</HintPath>
</Reference>
<Reference Include="ProjectMakoto">
<HintPath>deps\ProjectMakoto.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Common">
<HintPath>deps\DisCatSharp.Common.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.ApplicationCommands">
<HintPath>deps\DisCatSharp.ApplicationCommands.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Interactivity">
<HintPath>deps\DisCatSharp.Interactivity.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.CommandsNext">
<HintPath>deps\DisCatSharp.CommandsNext.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Experimental">
<HintPath>deps\DisCatSharp.Experimental.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Lavalink">
<HintPath>deps\DisCatSharp.Lavalink.dll</HintPath>
</Reference>
<Reference Include="Xorog.UniversalExtensions">
<HintPath>deps\Xorog.UniversalExtensions.dll</HintPath>
</Reference>
<Reference Include="Octokit">
<HintPath>deps\Octokit.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>deps\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="QuickChart">
<HintPath>deps\QuickChart.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="Translations\strings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>