Unifying library versions

This commit is contained in:
Marc Hernandez 2019-09-24 22:32:32 -07:00
parent 30f3aa983b
commit 6acbcfc21b
10 changed files with 194 additions and 235 deletions

4
Log.cs
View File

@ -200,7 +200,7 @@ namespace lib
m_errorStream = new FileStream( filename + ".error", FileMode.Append, FileAccess.Write ); m_errorStream = new FileStream( filename + ".error", FileMode.Append, FileAccess.Write );
m_errorWriter = new StreamWriter( m_errorStream ); m_errorWriter = new StreamWriter( m_errorStream );
Debug.Listeners.Add( this ); //Debug.Listeners.Add( this );
string msg = "\n==============================================================================\nLogfile " + filename + " startup at " + DateTime.Now.ToString(); string msg = "\n==============================================================================\nLogfile " + filename + " startup at " + DateTime.Now.ToString();
@ -297,6 +297,7 @@ namespace lib
//Console.WriteLine( finalMsg ); //Console.WriteLine( finalMsg );
//Console.Out.Write( finalMsg ); //Console.Out.Write( finalMsg );
/*
foreach( var l_obj in Debug.Listeners ) foreach( var l_obj in Debug.Listeners )
{ {
var l = l_obj as TraceListener; var l = l_obj as TraceListener;
@ -305,6 +306,7 @@ namespace lib
l.WriteLine( finalMsg ); l.WriteLine( finalMsg );
} }
} }
*/
m_writer.WriteLine( finalMsg ); m_writer.WriteLine( finalMsg );

View File

@ -1,36 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle( "Common" )]
[assembly: AssemblyDescription( "" )]
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "Allusion Studio, Inc" )]
[assembly: AssemblyProduct( "Common" )]
[assembly: AssemblyCopyright( "Copyright © Allusion Studio, Inc 2008" )]
[assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible( false )]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid( "fbc724c2-ea86-47cf-ae0b-f15e11ba6701" )]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion( "1.0.0.0" )]
[assembly: AssemblyFileVersion( "1.0.0.0" )]

View File

@ -1,165 +1,29 @@
<?xml version="1.0" encoding="utf-8"?> <Project Sdk="Microsoft.NET.Sdk">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <TargetFrameworks>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> netcoreapp2.0;
<ProductVersion>10.0.20506</ProductVersion> net462;
<SchemaVersion>2.0</SchemaVersion> netstandard2.0;
<ProjectGuid>{DED134FC-C282-49C9-BA02-3CE6257E91FC}</ProjectGuid> </TargetFrameworks>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>lib</RootNamespace> <RootNamespace>lib</RootNamespace>
<AssemblyName>SharpLib</AssemblyName> <AssemblyVersion>0.0.1.0</AssemblyVersion>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion> <FileVersion>0.0.1.0</FileVersion>
<FileAlignment>512</FileAlignment> <Copyright>2019+ Marc Hernandez</Copyright>
<FileUpgradeFlags> <Description>A core set of libraries</Description>
</FileUpgradeFlags> <Platforms>AnyCPU;x64</Platforms>
<UpgradeBackupLocation> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</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>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateSerializationAssemblies>On</GenerateSerializationAssemblies>
<Prefer32Bit>false</Prefer32Bit>
<LangVersion>latest</LangVersion>
</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>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <PackageReference Include="System.Collections.Immutable" Version="1.6.0" />
<Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <PackageReference Include="System.ValueTuple" Version="4.5.0" />
<HintPath>..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Immutable, Version=1.2.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Collections.Immutable.1.6.0-preview3.19128.7\lib\netstandard2.0\System.Collections.Immutable.dll</HintPath>
</Reference>
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization">
<RequiredTargetFramework>3.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="att\CanBeNullAttribute.cs" /> <Folder Include="Properties\" />
<Compile Include="att\NotNullAttribute.cs" />
<Compile Include="Conn.cs" />
<Compile Include="Clock.cs" />
<Compile Include="Config.cs" />
<Compile Include="Helpers.cs" />
<Compile Include="Id.cs" />
<Compile Include="Imm.cs" />
<Compile Include="Log.cs" />
<Compile Include="math\AngleSingle.cs" />
<Compile Include="math\AngleType.cs" />
<Compile Include="math\BoundingBox.cs" />
<Compile Include="math\BoundingBoxExt.cs" />
<Compile Include="math\BoundingFrustum.cs" />
<Compile Include="math\BoundingSphere.cs" />
<Compile Include="math\CollisionHelper.cs" />
<Compile Include="math\Color.cs" />
<Compile Include="math\Color.Palette.cs" />
<Compile Include="math\Color3.cs" />
<Compile Include="math\Color4.cs" />
<Compile Include="math\ColorBGRA.cs" />
<Compile Include="math\ColorExtensions.cs" />
<Compile Include="math\ColorHSV.cs" />
<Compile Include="math\ContainmentType.cs" />
<Compile Include="math\DataMemberIgnoreAttribute.cs" />
<Compile Include="math\DataStyleAttribute.cs" />
<Compile Include="math\Double2.cs" />
<Compile Include="math\Double3.cs" />
<Compile Include="math\Double4.cs" />
<Compile Include="math\GuillotinePacker.cs" />
<Compile Include="math\Half.cs" />
<Compile Include="math\Half2.cs" />
<Compile Include="math\Half3.cs" />
<Compile Include="math\Half4.cs" />
<Compile Include="math\HalfUtils.cs" />
<Compile Include="math\Int2.cs" />
<Compile Include="math\Int3.cs" />
<Compile Include="math\Int4.cs" />
<Compile Include="math\MathUtil.cs" />
<Compile Include="math\Matrix.cs" />
<Compile Include="math\NamespaceDoc.cs" />
<Compile Include="math\Plane.cs" />
<Compile Include="math\PlaneIntersectionType.cs" />
<Compile Include="math\Point.cs" />
<Compile Include="math\Quaternion.cs" />
<Compile Include="math\RandomSeed.cs" />
<Compile Include="math\Ray.cs" />
<Compile Include="math\Rectangle.cs" />
<Compile Include="math\RectangleF.cs" />
<Compile Include="math\Size2.cs" />
<Compile Include="math\Size2F.cs" />
<Compile Include="math\Size3.cs" />
<Compile Include="math\SphericalHarmonics.cs" />
<Compile Include="math\UInt4.cs" />
<Compile Include="math\Vector2.cs" />
<Compile Include="math\Vector3.cs" />
<Compile Include="math\Vector4.cs" />
<Compile Include="math\VectorExtensions.cs" />
<Compile Include="mod\Modules.cs" />
<Compile Include="NetMsg.cs" />
<Compile Include="Pos.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="res\Resource.cs" />
<Compile Include="Scr.cs" />
<Compile Include="SerializableDictionary.cs" />
<Compile Include="Timer.cs" />
<Compile Include="Token.cs" />
<Compile Include="Utilities.cs" />
<Compile Include="Utilities.Interop.cs" />
<Compile Include="VersionFormatter.cs" />
<Compile Include="XmlFormatter.cs" />
<Compile Include="XmlFormatter2.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project> </Project>

164
SharpLib.csproj.old Normal file
View File

@ -0,0 +1,164 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{DED134FC-C282-49C9-BA02-3CE6257E91FC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>lib</RootNamespace>
<AssemblyName>SharpLib</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</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>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateSerializationAssemblies>On</GenerateSerializationAssemblies>
<Prefer32Bit>false</Prefer32Bit>
<LangVersion>latest</LangVersion>
</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>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Buffers.4.5.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
</Reference>
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Runtime.CompilerServices.Unsafe.4.6.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization">
<RequiredTargetFramework>3.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="att\CanBeNullAttribute.cs" />
<Compile Include="att\NotNullAttribute.cs" />
<Compile Include="Conn.cs" />
<Compile Include="Clock.cs" />
<Compile Include="Config.cs" />
<Compile Include="Helpers.cs" />
<Compile Include="Id.cs" />
<Compile Include="Imm.cs" />
<Compile Include="Log.cs" />
<Compile Include="math\AngleSingle.cs" />
<Compile Include="math\AngleType.cs" />
<Compile Include="math\BoundingBox.cs" />
<Compile Include="math\BoundingBoxExt.cs" />
<Compile Include="math\BoundingFrustum.cs" />
<Compile Include="math\BoundingSphere.cs" />
<Compile Include="math\CollisionHelper.cs" />
<Compile Include="math\Color.cs" />
<Compile Include="math\Color.Palette.cs" />
<Compile Include="math\Color3.cs" />
<Compile Include="math\Color4.cs" />
<Compile Include="math\ColorBGRA.cs" />
<Compile Include="math\ColorExtensions.cs" />
<Compile Include="math\ColorHSV.cs" />
<Compile Include="math\ContainmentType.cs" />
<Compile Include="math\DataMemberIgnoreAttribute.cs" />
<Compile Include="math\DataStyleAttribute.cs" />
<Compile Include="math\Double2.cs" />
<Compile Include="math\Double3.cs" />
<Compile Include="math\Double4.cs" />
<Compile Include="math\GuillotinePacker.cs" />
<Compile Include="math\Half.cs" />
<Compile Include="math\Half2.cs" />
<Compile Include="math\Half3.cs" />
<Compile Include="math\Half4.cs" />
<Compile Include="math\HalfUtils.cs" />
<Compile Include="math\Int2.cs" />
<Compile Include="math\Int3.cs" />
<Compile Include="math\Int4.cs" />
<Compile Include="math\MathUtil.cs" />
<Compile Include="math\Matrix.cs" />
<Compile Include="math\NamespaceDoc.cs" />
<Compile Include="math\Plane.cs" />
<Compile Include="math\PlaneIntersectionType.cs" />
<Compile Include="math\Point.cs" />
<Compile Include="math\Quaternion.cs" />
<Compile Include="math\RandomSeed.cs" />
<Compile Include="math\Ray.cs" />
<Compile Include="math\Rectangle.cs" />
<Compile Include="math\RectangleF.cs" />
<Compile Include="math\Size2.cs" />
<Compile Include="math\Size2F.cs" />
<Compile Include="math\Size3.cs" />
<Compile Include="math\SphericalHarmonics.cs" />
<Compile Include="math\UInt4.cs" />
<Compile Include="math\Vector2.cs" />
<Compile Include="math\Vector3.cs" />
<Compile Include="math\Vector4.cs" />
<Compile Include="math\VectorExtensions.cs" />
<Compile Include="mod\Modules.cs" />
<Compile Include="NetMsg.cs" />
<Compile Include="Pos.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="res\Resource.cs" />
<Compile Include="Scr.cs" />
<Compile Include="SerializableDictionary.cs" />
<Compile Include="Timer.cs" />
<Compile Include="Token.cs" />
<Compile Include="Utilities.cs" />
<Compile Include="Utilities.Interop.cs" />
<Compile Include="VersionFormatter.cs" />
<Compile Include="XmlFormatter.cs" />
<Compile Include="XmlFormatter2.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@ -1,20 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpLib", "SharpLib.csproj", "{DED134FC-C282-49C9-BA02-3CE6257E91FC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DED134FC-C282-49C9-BA02-3CE6257E91FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DED134FC-C282-49C9-BA02-3CE6257E91FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DED134FC-C282-49C9-BA02-3CE6257E91FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DED134FC-C282-49C9-BA02-3CE6257E91FC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

Binary file not shown.

Binary file not shown.

View File

@ -2,7 +2,7 @@ using System;
using System.IO; using System.IO;
using System.Xml; using System.Xml;
using System.Runtime.Serialization; using System.Runtime.Serialization;
using System.Web.Configuration; //using System.Web.Configuration;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
@ -20,15 +20,16 @@ namespace lib
class XmlFormatter : IFormatter class XmlFormatter : IFormatter
{ {
StreamingContext m_context; StreamingContext m_context;
SerializationMode m_mode; //SerializationMode m_mode;
//KnownTypeCollection known_types; //KnownTypeCollection known_types;
IDataContractSurrogate m_surrogate; //IDataContractSurrogate m_surrogate;
//int m_maxItems; //int m_maxItems;
public XmlFormatter() public XmlFormatter()
{ {
} }
/*
public XmlFormatter( SerializationMode mode ) public XmlFormatter( SerializationMode mode )
{ {
m_mode = mode; m_mode = mode;
@ -45,6 +46,7 @@ namespace lib
m_mode = mode; m_mode = mode;
m_context = context; m_context = context;
} }
*/
//public XmlFormatter (SerializationMode mode, //public XmlFormatter (SerializationMode mode,
// StreamingContext context, KnownTypeCollection knownTypes) // StreamingContext context, KnownTypeCollection knownTypes)
@ -69,11 +71,6 @@ namespace lib
set { m_context = value; } set { m_context = value; }
} }
public IDataContractSurrogate DataContractSurrogate
{
get { return m_surrogate; }
set { m_surrogate = value; }
}
/* /*
public KnownTypeCollection KnownTypes { public KnownTypeCollection KnownTypes {
@ -86,10 +83,6 @@ namespace lib
} }
*/ */
public SerializationMode Mode
{
get { return m_mode; }
}
object IFormatter.Deserialize( Stream stream ) object IFormatter.Deserialize( Stream stream )
{ {

View File

@ -2,7 +2,7 @@
using System.IO; using System.IO;
using System.Xml; using System.Xml;
using System.Runtime.Serialization; using System.Runtime.Serialization;
using System.Web.Configuration; //using System.Web.Configuration;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.Buffers" version="4.4.0" targetFramework="net472" />
<package id="System.Collections.Immutable" version="1.6.0-preview3.19128.7" targetFramework="net462" />
<package id="System.Memory" version="4.5.3" targetFramework="net472" />
<package id="System.Numerics.Vectors" version="4.4.0" targetFramework="net472" />
<package id="System.Runtime.CompilerServices.Unsafe" version="4.5.2" targetFramework="net472" />
</packages>