Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nes-containers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-28 04:10:14 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-28 04:10:14 +0300
commitbd04f0c322b4c390498037ae466831d0f1a7e251 (patch)
tree5a4ef2f1b0195f45742cb2f427990c3fac857a52
parentce7a729470e0e0300acf9519cd39690e29becabf (diff)
Just migrated to .NET Standard 2.1
-rw-r--r--NesContainers.csproj61
1 files changed, 6 insertions, 55 deletions
diff --git a/NesContainers.csproj b/NesContainers.csproj
index b2fbdc4..23e5b20 100644
--- a/NesContainers.csproj
+++ b/NesContainers.csproj
@@ -1,58 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+<Project Sdk="Microsoft.NET.Sdk">
+
<PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{DBDE5F39-FF67-496F-999F-65F86DCEC1D5}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>com.clusterrr.Famicom.Containers</RootNamespace>
+ <TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>NesContainers</AssemblyName>
- <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <Deterministic>true</Deterministic>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <UseVSHostingProcess>true</UseVSHostingProcess>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
+ <RootNamespace>com.clusterrr.Famicom.Containers</RootNamespace>
</PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Crc32Calculator.cs" />
- <Compile Include="FdsDiskFile.cs" />
- <Compile Include="FdsDiskSide.cs" />
- <Compile Include="FdsFile.cs" />
- <Compile Include="IFdsBlock.cs" />
- <Compile Include="FdsBlockDiskInfo.cs" />
- <Compile Include="FdsBlockFileAmount.cs" />
- <Compile Include="FdsBlockFileData.cs" />
- <Compile Include="FdsBlockFileHeader.cs" />
- <Compile Include="NesFile.cs" />
- <Compile Include="NesHeaderFixer.cs" />
- <Compile Include="UnifFile.cs" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Properties\" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
-</Project> \ No newline at end of file
+
+</Project>