Transitioned to .Net Standard and use of VSCode.
This commit is contained in:
@@ -1,108 +1,11 @@
|
||||
<?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>{95A926DC-1482-4368-91DA-8D30AC04740A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>RecrownedAthenaeum</RootNamespace>
|
||||
<AssemblyName>RecrownedAthenaeum</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</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>
|
||||
<DocumentationFile>bin\Debug\RecrownedAthenaeum.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\RecrownedAthenaeum.xml</DocumentationFile>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<!--See https://stackoverflow.com/questions/10311347/duplicate-assemblyversion-attribute -->
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="MonoGame.Framework, Version=3.7.1.189, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MonoGame.Framework.Portable.3.7.1.189\lib\portable-net45+win8+wpa81\MonoGame.Framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2"/>
|
||||
<PackageReference Include="MonoGame.Framework.Portable" Version="3.7.1.189"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Render\BasicCamera.cs" />
|
||||
<Compile Include="Render\BasicScissor.cs" />
|
||||
<Compile Include="Render\ConsistentSpriteBatch.cs" />
|
||||
<Compile Include="Render\Camera2D.cs" />
|
||||
<Compile Include="ContentSystem\ContentData.cs" />
|
||||
<Compile Include="ContentSystem\ContentManagerController.cs" />
|
||||
<Compile Include="ContentSystem\IContentPathResolver.cs" />
|
||||
<Compile Include="ContentSystem\NormalContentResolver.cs" />
|
||||
<Compile Include="SpecialTypes\ISpecialDrawable.cs" />
|
||||
<Compile Include="SpecialTypes\NinePatch.cs" />
|
||||
<Compile Include="SpecialTypes\Resolution.cs" />
|
||||
<Compile Include="SpecialTypes\TextureAtlas.cs" />
|
||||
<Compile Include="Input\IInputListener.cs" />
|
||||
<Compile Include="Input\InputListener.cs" />
|
||||
<Compile Include="Input\InputUtilities.cs" />
|
||||
<Compile Include="ParticleSystem\Particle.cs" />
|
||||
<Compile Include="Persistence\PreferencesManager.cs" />
|
||||
<Compile Include="Data\NinePatchData.cs" />
|
||||
<Compile Include="ContentReaders\NinePatchDataReader.cs" />
|
||||
<Compile Include="Data\TextureAtlasData.cs" />
|
||||
<Compile Include="ContentReaders\TextureAtlasDataReader.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Render\RectangleRenderer.cs" />
|
||||
<Compile Include="Render\PrimitiveBatch.cs" />
|
||||
<Compile Include="ScreenSystem\ITransition.cs" />
|
||||
<Compile Include="ScreenSystem\LoadingScreen.cs" />
|
||||
<Compile Include="ScreenSystem\Screen.cs" />
|
||||
<Compile Include="ScreenSystem\ScreenManager.cs" />
|
||||
<Compile Include="UI\BookSystem\Book.cs" />
|
||||
<Compile Include="UI\BookSystem\Page.cs" />
|
||||
<Compile Include="UI\Modular\Modules\Image.cs" />
|
||||
<Compile Include="UI\Modular\Modules\Interactive\Button.cs" />
|
||||
<Compile Include="UI\Modular\Modules\Interactive\TextButton.cs" />
|
||||
<Compile Include="UI\Modular\Modules\Text.cs" />
|
||||
<Compile Include="UI\Modular\Modules\UIScrollable.cs" />
|
||||
<Compile Include="UI\Modular\UIModule.cs" />
|
||||
<Compile Include="UI\Modular\UIModuleGroup.cs" />
|
||||
<Compile Include="UI\SkinSystem\Definitions\ButtonSkinDefinition.cs" />
|
||||
<Compile Include="UI\SkinSystem\Definitions\SkinDefinition.cs" />
|
||||
<Compile Include="UI\SkinSystem\Definitions\TextButtonSkinDefinition.cs" />
|
||||
<Compile Include="UI\SkinSystem\Definitions\UIScrollableSkinDefinition.cs" />
|
||||
<Compile Include="UI\SkinSystem\ISkin.cs" />
|
||||
<Compile Include="UI\SkinSystem\Skin.cs" />
|
||||
<Compile Include="Data\SkinData.cs" />
|
||||
<Compile Include="UI\SkinSystem\SkinManager.cs" />
|
||||
<Compile Include="UI\SkinSystem\MergedSkin.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="View\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="MonoGame.Framework.Portable" version="3.7.1.189" targetFramework="net45" />
|
||||
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net45" />
|
||||
</packages>
|
Reference in New Issue
Block a user