removed publishing profiles, align directory entry

This commit is contained in:
emmaus 2018-11-18 05:55:14 +00:00
commit 6758b1fd6f
3 changed files with 6 additions and 17 deletions

3
.gitignore vendored
View file

@ -161,3 +161,6 @@ $RECYCLE.BIN/
# VS Launch Settings # VS Launch Settings
launchSettings.json launchSettings.json
% NetCore Publishing Profiles
PublishProfiles/

View file

@ -13,9 +13,9 @@ namespace Ryujinx.HLE.HOS.Services.FspSrv
public DirectoryEntry(string Path, DirectoryEntryType DirectoryEntryType, long Size = 0) public DirectoryEntry(string Path, DirectoryEntryType DirectoryEntryType, long Size = 0)
{ {
this.Path = Path; this.Path = Path;
this.EntryType = DirectoryEntryType; EntryType = DirectoryEntryType;
this.Size = Size; this.Size = Size;
} }
} }
} }

View file

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishProtocol>FileSystem</PublishProtocol>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<TargetFramework>netcoreapp2.1</TargetFramework>
<PublishDir>bin\Release\netcoreapp2.1\publish\</PublishDir>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
</PropertyGroup>
</Project>