tangled
alpha
login
or
join now
keii.dev
/
osu-framework
0
fork
atom
A game framework written with osu! in mind.
0
fork
atom
overview
issues
pulls
pipelines
Fix warning in templates project.
Huo Yaoyuan
6 years ago
bdec0ae7
b485b212
+2
-58
3 changed files
expand all
collapse all
unified
split
osu.Framework.Templates
Directory.Build.props
app.manifest
osu.Framework.Templates.csproj
-6
osu.Framework.Templates/Directory.Build.props
···
1
1
-
<!-- Contains required properties for osu!framework projects. -->
2
2
-
<Project>
3
3
-
<PropertyGroup>
4
4
-
<ApplicationManifest>$(MSBuildThisFileDirectory)app.manifest</ApplicationManifest>
5
5
-
</PropertyGroup>
6
6
-
</Project>
-46
osu.Framework.Templates/app.manifest
···
1
1
-
<?xml version="1.0" encoding="utf-8"?>
2
2
-
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
3
3
-
<assemblyIdentity version="1.0.0.0" name="TemplateGame" />
4
4
-
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
5
5
-
<security>
6
6
-
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
7
7
-
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
8
8
-
</requestedPrivileges>
9
9
-
<applicationRequestMinimum>
10
10
-
<defaultAssemblyRequest permissionSetReference="Custom" />
11
11
-
<PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true" ID="Custom" SameSite="site" />
12
12
-
</applicationRequestMinimum>
13
13
-
</security>
14
14
-
</trustInfo>
15
15
-
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
16
16
-
<application>
17
17
-
<!-- Windows Vista -->
18
18
-
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
19
19
-
<!-- Windows 7 -->
20
20
-
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
21
21
-
<!-- Windows 8 -->
22
22
-
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
23
23
-
<!-- Windows 8.1 -->
24
24
-
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
25
25
-
<!-- Windows 10 -->
26
26
-
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
27
27
-
</application>
28
28
-
</compatibility>
29
29
-
<asmv3:application>
30
30
-
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
31
31
-
<dpiAware>true</dpiAware>
32
32
-
</asmv3:windowsSettings>
33
33
-
</asmv3:application>
34
34
-
<dependency>
35
35
-
<dependentAssembly>
36
36
-
<assemblyIdentity
37
37
-
type="win32"
38
38
-
name="Microsoft.Windows.Common-Controls"
39
39
-
version="6.0.0.0"
40
40
-
processorArchitecture="*"
41
41
-
publicKeyToken="6595b64144ccf1df"
42
42
-
language="*"
43
43
-
/>
44
44
-
</dependentAssembly>
45
45
-
</dependency>
46
46
-
</asmv1:assembly>
+2
-6
osu.Framework.Templates/osu.Framework.Templates.csproj
···
3
3
<PackageType>Template</PackageType>
4
4
<PackageId>ppy.osu.Framework.Templates</PackageId>
5
5
<Title>osu! framework templates</Title>
6
6
-
<Authors>ppy Pty Ltd</Authors>
7
7
-
<PackageLicenseUrl>https://github.com/ppy/osu-framework/blob/master/LICENCE.md</PackageLicenseUrl>
8
8
-
<PackageProjectUrl>https://github.com/ppy/osu-framework</PackageProjectUrl>
9
9
-
<RepositoryUrl>https://github.com/ppy/osu-framework</RepositoryUrl>
10
10
-
<PackageReleaseNotes>Automated release.</PackageReleaseNotes>
11
11
-
<copyright>Copyright (c) 2020 ppy Pty Ltd</copyright>
12
6
<Description>Templates that can be used as starting points for new games, built with of osu! framework.</Description>
13
7
<PackageTags>dotnet-new;templates;osu;framework</PackageTags>
14
8
<TargetFramework>netstandard2.1</TargetFramework>
15
9
<IncludeContentInPack>true</IncludeContentInPack>
16
10
<IncludeBuildOutput>false</IncludeBuildOutput>
17
11
<ContentTargetFolders>content</ContentTargetFolders>
12
12
+
<NoDefaultExcludes>true</NoDefaultExcludes>
13
13
+
<NoWarn>NU5128</NoWarn>
18
14
</PropertyGroup>
19
15
20
16
<ItemGroup>