A game framework written with osu! in mind.

Fix warning in templates project.

+2 -58
-6
osu.Framework.Templates/Directory.Build.props
··· 1 - <!-- Contains required properties for osu!framework projects. --> 2 - <Project> 3 - <PropertyGroup> 4 - <ApplicationManifest>$(MSBuildThisFileDirectory)app.manifest</ApplicationManifest> 5 - </PropertyGroup> 6 - </Project>
-46
osu.Framework.Templates/app.manifest
··· 1 - <?xml version="1.0" encoding="utf-8"?> 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 - <assemblyIdentity version="1.0.0.0" name="TemplateGame" /> 4 - <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> 5 - <security> 6 - <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> 7 - <requestedExecutionLevel level="asInvoker" uiAccess="false" /> 8 - </requestedPrivileges> 9 - <applicationRequestMinimum> 10 - <defaultAssemblyRequest permissionSetReference="Custom" /> 11 - <PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true" ID="Custom" SameSite="site" /> 12 - </applicationRequestMinimum> 13 - </security> 14 - </trustInfo> 15 - <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> 16 - <application> 17 - <!-- Windows Vista --> 18 - <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" /> 19 - <!-- Windows 7 --> 20 - <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" /> 21 - <!-- Windows 8 --> 22 - <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" /> 23 - <!-- Windows 8.1 --> 24 - <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" /> 25 - <!-- Windows 10 --> 26 - <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" /> 27 - </application> 28 - </compatibility> 29 - <asmv3:application> 30 - <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> 31 - <dpiAware>true</dpiAware> 32 - </asmv3:windowsSettings> 33 - </asmv3:application> 34 - <dependency> 35 - <dependentAssembly> 36 - <assemblyIdentity 37 - type="win32" 38 - name="Microsoft.Windows.Common-Controls" 39 - version="6.0.0.0" 40 - processorArchitecture="*" 41 - publicKeyToken="6595b64144ccf1df" 42 - language="*" 43 - /> 44 - </dependentAssembly> 45 - </dependency> 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 - <Authors>ppy Pty Ltd</Authors> 7 - <PackageLicenseUrl>https://github.com/ppy/osu-framework/blob/master/LICENCE.md</PackageLicenseUrl> 8 - <PackageProjectUrl>https://github.com/ppy/osu-framework</PackageProjectUrl> 9 - <RepositoryUrl>https://github.com/ppy/osu-framework</RepositoryUrl> 10 - <PackageReleaseNotes>Automated release.</PackageReleaseNotes> 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 + <NoDefaultExcludes>true</NoDefaultExcludes> 13 + <NoWarn>NU5128</NoWarn> 18 14 </PropertyGroup> 19 15 20 16 <ItemGroup>