Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert .NET Standard Class libraries to .NET Framework Class libraries #89

Merged
merged 1 commit into from
Jun 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 59 additions & 15 deletions Conan.VisualStudio.Core/Conan.VisualStudio.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,67 @@
<Project Sdk="Microsoft.NET.Sdk">

<?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')" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\Conan.VisualStudio\Key.snk</AssemblyOriginatorKeyFile>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{704BDDFB-CB01-4F8B-B2A0-60BCFA97F0C2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Conan.VisualStudio.Core</RootNamespace>
<AssemblyName>Conan.VisualStudio.Core</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<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>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<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>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>

<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
</Reference>
<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" />
</ItemGroup>
<ItemGroup>
<Compile Include="ConanConfiguration.cs" />
<Compile Include="ConanPathHelper.cs" />
<Compile Include="ConanProject.cs" />
<Compile Include="ConanRunner.cs" />
<Compile Include="ConanSettings.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VisualStudio.OpenFolder\VisualStudio.OpenFolder.csproj" />
<None Include="Key.snk" />
<None Include="packages.config" />
</ItemGroup>

</Project>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Binary file added Conan.VisualStudio.Core/Key.snk
Binary file not shown.
39 changes: 39 additions & 0 deletions Conan.VisualStudio.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
using System.Resources;
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("Conan.VisualStudio.Core")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Conan.VisualStudio.Core")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[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("704bddfb-cb01-4f8b-b2a0-60bcfa97f0c2")]

// 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")]
[assembly: NeutralResourcesLanguage("en-US")]

4 changes: 4 additions & 0 deletions Conan.VisualStudio.Core/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.ValueTuple" version="4.5.0" targetFramework="net461" />
</packages>
4 changes: 2 additions & 2 deletions Conan.VisualStudio.Tests/Conan.VisualStudio.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Conan.VisualStudio.Core\Conan.VisualStudio.Core.csproj">
<Project>{8f310c87-5446-4edf-bfae-93f457bd00a5}</Project>
<Project>{704bddfb-cb01-4f8b-b2a0-60bcfa97f0c2}</Project>
<Name>Conan.VisualStudio.Core</Name>
</ProjectReference>
<ProjectReference Include="..\Conan.VisualStudio\Conan.VisualStudio.csproj">
<Project>{6fbebc9c-6e86-4588-bcda-83ac909c7eac}</Project>
<Name>Conan.VisualStudio</Name>
</ProjectReference>
<ProjectReference Include="..\VisualStudio.OpenFolder\VisualStudio.OpenFolder.csproj">
<Project>{11d3f7ba-7426-4c99-add2-6de951c6102c}</Project>
<Project>{232a6411-5acd-49d0-b5b0-1f72b265b7d1}</Project>
<Name>VisualStudio.OpenFolder</Name>
</ProjectReference>
</ItemGroup>
Expand Down
22 changes: 11 additions & 11 deletions Conan.VisualStudio.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Conan.VisualStudio", "Conan
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Conan.VisualStudio.Tests", "Conan.VisualStudio.Tests\Conan.VisualStudio.Tests.csproj", "{95165D2F-2143-4055-A215-90352061DCB2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conan.VisualStudio.Core", "Conan.VisualStudio.Core\Conan.VisualStudio.Core.csproj", "{8F310C87-5446-4EDF-BFAE-93F457BD00A5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C2673F7F-154E-4502-AE99-90AA8E7F4718}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisualStudio.OpenFolder", "VisualStudio.OpenFolder\VisualStudio.OpenFolder.csproj", "{11D3F7BA-7426-4C99-ADD2-6DE951C6102C}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Conan.VisualStudio.Core", "Conan.VisualStudio.Core\Conan.VisualStudio.Core.csproj", "{704BDDFB-CB01-4F8B-B2A0-60BCFA97F0C2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VisualStudio.OpenFolder", "VisualStudio.OpenFolder\VisualStudio.OpenFolder.csproj", "{232A6411-5ACD-49D0-B5B0-1F72B265B7D1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -30,14 +30,14 @@ Global
{95165D2F-2143-4055-A215-90352061DCB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{95165D2F-2143-4055-A215-90352061DCB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{95165D2F-2143-4055-A215-90352061DCB2}.Release|Any CPU.Build.0 = Release|Any CPU
{8F310C87-5446-4EDF-BFAE-93F457BD00A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8F310C87-5446-4EDF-BFAE-93F457BD00A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8F310C87-5446-4EDF-BFAE-93F457BD00A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8F310C87-5446-4EDF-BFAE-93F457BD00A5}.Release|Any CPU.Build.0 = Release|Any CPU
{11D3F7BA-7426-4C99-ADD2-6DE951C6102C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{11D3F7BA-7426-4C99-ADD2-6DE951C6102C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11D3F7BA-7426-4C99-ADD2-6DE951C6102C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11D3F7BA-7426-4C99-ADD2-6DE951C6102C}.Release|Any CPU.Build.0 = Release|Any CPU
{704BDDFB-CB01-4F8B-B2A0-60BCFA97F0C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{704BDDFB-CB01-4F8B-B2A0-60BCFA97F0C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{704BDDFB-CB01-4F8B-B2A0-60BCFA97F0C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{704BDDFB-CB01-4F8B-B2A0-60BCFA97F0C2}.Release|Any CPU.Build.0 = Release|Any CPU
{232A6411-5ACD-49D0-B5B0-1F72B265B7D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{232A6411-5ACD-49D0-B5B0-1F72B265B7D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{232A6411-5ACD-49D0-B5B0-1F72B265B7D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{232A6411-5ACD-49D0-B5B0-1F72B265B7D1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
12 changes: 6 additions & 6 deletions Conan.VisualStudio/Conan.VisualStudio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,6 @@
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Conan.VisualStudio.Core\Conan.VisualStudio.Core.csproj">
<Project>{8f310c87-5446-4edf-bfae-93f457bd00a5}</Project>
<Name>Conan.VisualStudio.Core</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\packages\Microsoft.VisualStudio.SDK.Analyzers.15.8.36\analyzers\cs\Microsoft.VisualStudio.SDK.Analyzers.dll" />
<Analyzer Include="..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.168\analyzers\cs\Microsoft.VisualStudio.Threading.Analyzers.dll" />
Expand All @@ -324,6 +318,12 @@
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Conan.VisualStudio.Core\Conan.VisualStudio.Core.csproj">
<Project>{704bddfb-cb01-4f8b-b2a0-60bcfa97f0c2}</Project>
<Name>Conan.VisualStudio.Core</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
Expand Down
Binary file added VisualStudio.OpenFolder/Key.snk
Binary file not shown.
36 changes: 36 additions & 0 deletions VisualStudio.OpenFolder/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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("VisualStudio.OpenFolder")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("VisualStudio.OpenFolder")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[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("232a6411-5acd-49d0-b5b0-1f72b265b7d1")]

// 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")]
123 changes: 74 additions & 49 deletions VisualStudio.OpenFolder/VisualStudio.OpenFolder.csproj
Original file line number Diff line number Diff line change
@@ -1,53 +1,78 @@
<Project Sdk="Microsoft.NET.Sdk">

<?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')" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{232A6411-5ACD-49D0-B5B0-1F72B265B7D1}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>VisualStudio.OpenFolder</RootNamespace>
<AssemblyName>VisualStudio.OpenFolder</AssemblyName>
<TargetFrameworkVersion>v4.6.1</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>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</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>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
</Reference>
<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" />
</ItemGroup>
<ItemGroup>
<Compile Include="CMakeSettings.cs" />
<Compile Include="CMakeSettingsEqualityComparer.cs" />
<Compile Include="CppProperties.cs" />
<Compile Include="CppPropertiesEqualityComparer.cs" />
<Compile Include="Default.cs" />
<Compile Include="DefaultEqualityComparer.cs" />
<Compile Include="DefaultTask.cs" />
<Compile Include="DefaultTaskEqualityComparer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TasksVs.cs" />
<Compile Include="TasksVsEqualityComparer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Json.Schema.ToDotNet" Version="0.63.0" />
<None Include="Key.snk" />
<None Include="packages.config" />
<None Include="Resources\CMakeSettings_schema.json" />
<None Include="Resources\CppProperties_schema.json" />
<None Include="Resources\launch_schema.json" />
<None Include="Resources\tasks_schema.json" />
<None Include="Resources\VSWorkspaceSettings.json" />
</ItemGroup>


<Target Name="GenerateOpenFolderSources" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ToDotNetCLI>$(PkgMicrosoft_Json_Schema_ToDotNet)\tools\net461\Microsoft.Json.Schema.ToDotNet.Cli.exe</ToDotNetCLI>

<SchemaDirectory>Resources</SchemaDirectory>
<GenOutDir>$(MSBuildProjectDirectory)</GenOutDir>

<Namespace>VisualStudio.OpenFolder</Namespace>

<CMakeSettingsSchemaFile>$(SchemaDirectory)/CMakeSettings_schema.json</CMakeSettingsSchemaFile>
<CMakeSettingsSchemaName>CMakeSettings</CMakeSettingsSchemaName>

<CppPropertiesSchemaFile>$(SchemaDirectory)/CppProperties_schema.json</CppPropertiesSchemaFile>
<CppPropertiesSchemaName>CppProperties</CppPropertiesSchemaName>

<TasksSchemaFile>$(SchemaDirectory)/tasks_schema.json</TasksSchemaFile>
<TasksSchemaName>TasksVs</TasksSchemaName>

<LaunchSchemaFile>$(SchemaDirectory)/launch_schema.json</LaunchSchemaFile>
<LaunchSchemaName>LaunchVs</LaunchSchemaName>

<VSWorkspaceSettingsSchemaFile>$(SchemaDirectory)/VSWorkspaceSettings.json</VSWorkspaceSettingsSchemaFile>
<VSWorkspaceSettingsSchemaName>VSWorkspaceSettings</VSWorkspaceSettingsSchemaName>

</PropertyGroup>

<Exec Command="$(ToDotNetCLI) -f -n $(Namespace) -o $(GenOutDir) -r $(CMakeSettingsSchemaName) -e $(CMakeSettingsSchemaName) -s $(CMakeSettingsSchemaFile)"/>

<Exec Command="$(ToDotNetCLI) -f -n $(Namespace) -o $(GenOutDir) -r $(CppPropertiesSchemaName) -e $(CppPropertiesSchemaName) -s $(CppPropertiesSchemaFile)"/>

<!-- TODO : Had to remove all but the default task to generate from this schema. Not sure if shcmea or generator issue. Try again in future. -->
<Exec Command="$(ToDotNetCLI) -f -n $(Namespace) -o $(GenOutDir) -r $(TasksSchemaName) -e $(TasksSchemaName) -s $(TasksSchemaFile)"/>

<!-- TODO : Schema fails to generate. Not sure if schema or generator issue, try again in future. -->
<!-- <Exec Command="$(ToDotNetCLI) -f -n $(Namespace) -o $(GenOutDir) -r $(LaunchSchemaName) -e $(LaunchSchemaName) -s $(LaunchSchemaFile)"/> -->

<!-- TODO : Visual Studio did not have a proper schema file for the workspace settings. Keep looking for one in future releases -->
<!-- <Exec Command="$(ToDotNetCLI) -f -n $(Namespace) -o $(GenOutDir) -r $(VSWorkspaceSettingsSchemaName) -e $(VSWorkspaceSettingsSchemaName) -s $(VSWorkspaceSettingsSchemaFile)"/> -->

</Target>

</Project>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
4 changes: 4 additions & 0 deletions VisualStudio.OpenFolder/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.ValueTuple" version="4.5.0" targetFramework="net461" />
</packages>