-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosu-tweaks.csproj
More file actions
43 lines (36 loc) · 1.56 KB
/
Copy pathosu-tweaks.csproj
File metadata and controls
43 lines (36 loc) · 1.56 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>OsuTweaks</AssemblyName>
<RootNamespace>OsuTweaks</RootNamespace>
<PackageId>osu-tweaks</PackageId>
<Title>osu!tweaks</Title>
<Description>Collection of useful tweaks and quality-of-life enhancements for osu!cc.</Description>
<Version>1.5.1</Version>
<Priority>50</Priority>
<IconGlyph>SlidersH</IconGlyph>
<IsPlugin>true</IsPlugin>
<RepositoryUrl>https://github.com/Meyblow/osu-tweaks</RepositoryUrl>
<PackageTags>gameplay;autoskip;visual;focus;audio;tweaks</PackageTags>
</PropertyGroup>
<ItemGroup>
<Author Include="Meyblow" OsuProfileId="39791134" />
</ItemGroup>
<ItemGroup>
<PluginDocument Include="README.md" Title="README" IconGlyph="Book" />
<PluginDocument Include="CHANGELOG.md" Title="Changelog" IconGlyph="History" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="osucc.Api" Version="2.2.0" />
<PackageReference Include="osucc.Build" Version="2.2.0" PrivateAssets="all" />
<PackageReference Include="ppy.osu.Game" Version="2026.702.1" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Localisation/*.json" />
</ItemGroup>
<Target Name="DeployToOsuCc" AfterTargets="Build" Condition="Exists('$(APPDATA)\osu\osu-cc\plugins\osu-tweaks')">
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(APPDATA)\osu\osu-cc\plugins\osu-tweaks" ContinueOnError="true" />
</Target>
</Project>