Skip to content

Commit 2be4eaa

Browse files
committed
Update to .net 5
1 parent 2908e45 commit 2be4eaa

File tree

2 files changed

+5
-129
lines changed

2 files changed

+5
-129
lines changed

fNbt/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 44 deletions
This file was deleted.

fNbt/fNbt.csproj

Lines changed: 5 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,15 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
33
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>9.0.30729</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{4488498D-976D-4DA3-BF72-109531AF0488}</ProjectGuid>
4+
<TargetFramework>net5.0</TargetFramework>
95
<OutputType>Library</OutputType>
10-
<AssemblyName>fNbt</AssemblyName>
11-
<FileUpgradeFlags>
12-
</FileUpgradeFlags>
13-
<OldToolsVersion>3.5</OldToolsVersion>
14-
<UpgradeBackupLocation>
15-
</UpgradeBackupLocation>
16-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
17-
<TargetFrameworkProfile>
18-
</TargetFrameworkProfile>
19-
</PropertyGroup>
20-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21-
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
23-
<Optimize>false</Optimize>
24-
<OutputPath>..\bin\Debug\</OutputPath>
25-
<DefineConstants>DEBUG</DefineConstants>
26-
<ErrorReport>prompt</ErrorReport>
27-
<WarningLevel>4</WarningLevel>
28-
<ConsolePause>false</ConsolePause>
29-
<DocumentationFile>..\bin\Debug\fNbt.xml</DocumentationFile>
30-
<RunCodeAnalysis>false</RunCodeAnalysis>
31-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
32-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
33-
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
34-
<Prefer32Bit>false</Prefer32Bit>
35-
</PropertyGroup>
36-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
37-
<DebugType>pdbonly</DebugType>
38-
<Optimize>true</Optimize>
39-
<OutputPath>..\bin\Release\</OutputPath>
40-
<ErrorReport>prompt</ErrorReport>
41-
<WarningLevel>4</WarningLevel>
42-
<ConsolePause>false</ConsolePause>
43-
<RunCodeAnalysis>false</RunCodeAnalysis>
44-
<DocumentationFile>..\bin\Release\fNbt.xml</DocumentationFile>
45-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
46-
<DebugSymbols>true</DebugSymbols>
47-
<DefineConstants>
48-
</DefineConstants>
49-
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
506
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
51-
<Prefer32Bit>false</Prefer32Bit>
527
</PropertyGroup>
538
<PropertyGroup>
549
<RootNamespace>fNbt</RootNamespace>
10+
<AssemblyName>fNbt</AssemblyName>
5511
</PropertyGroup>
5612
<ItemGroup>
57-
<Reference Include="System" />
58-
</ItemGroup>
59-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
60-
<ItemGroup>
61-
<Compile Include="ByteCountingStream.cs" />
62-
<Compile Include="InvalidReaderStateException.cs" />
63-
<Compile Include="JetBrains.Annotations.cs" />
64-
<Compile Include="NbtCompression.cs" />
65-
<Compile Include="NbtFormatException.cs" />
66-
<Compile Include="NbtBinaryReader.cs" />
67-
<Compile Include="NbtBinaryWriter.cs" />
68-
<Compile Include="NbtParseState.cs" />
69-
<Compile Include="NbtReader.cs" />
70-
<Compile Include="NbtReaderNode.cs" />
71-
<Compile Include="NbtWriter.cs" />
72-
<Compile Include="NbtWriterNode.cs" />
73-
<Compile Include="OrderedDictionary.cs" />
74-
<Compile Include="Properties\AssemblyInfo.cs" />
75-
<Compile Include="NbtFile.cs" />
76-
<Compile Include="TagSelector.cs" />
77-
<Compile Include="Tags\NbtContainerTag.cs" />
78-
<Compile Include="Tags\NbtIntArray.cs" />
79-
<Compile Include="Tags\NbtByte.cs" />
80-
<Compile Include="Tags\NbtByteArray.cs" />
81-
<Compile Include="Tags\NbtCompound.cs" />
82-
<Compile Include="Tags\NbtDouble.cs" />
83-
<Compile Include="Tags\NbtFloat.cs" />
84-
<Compile Include="Tags\NbtInt.cs" />
85-
<Compile Include="Tags\NbtList.cs" />
86-
<Compile Include="Tags\NbtLong.cs" />
87-
<Compile Include="Tags\NbtLongArray.cs" />
88-
<Compile Include="Tags\NbtShort.cs" />
89-
<Compile Include="Tags\NbtString.cs" />
90-
<Compile Include="Tags\NbtTag.cs" />
91-
<Compile Include="NbtTagType.cs" />
92-
<Compile Include="UndoableAction.cs" />
93-
<Compile Include="ZLibStream.cs" />
13+
<None Remove="**/desktop.ini" />
9414
</ItemGroup>
9515
</Project>

0 commit comments

Comments
 (0)