Skip to content

Commit

Permalink
Added .NetStandard version of the library.
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Bellamy committed Jan 29, 2018
1 parent 0c794ba commit 3814c6c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\System.Configuration.Abstractions\*.cs">
<Link>%(FileName)</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="..\System.Configuration.Abstractions\Interceptors\*.cs">
<Link>%(FileName)</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="..\System.Configuration.Abstractions\TypeConverters\*.cs">
<Link>%(FileName)</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.1" />
</ItemGroup>
</Project>
13 changes: 11 additions & 2 deletions System.Configuration.Abstractions.sln
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2026
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Configuration.Abstractions", "System.Configuration.Abstractions\System.Configuration.Abstractions.csproj", "{7B47571C-57D0-4B0B-AF9E-1BBB307CAE69}"
EndProject
Expand All @@ -16,6 +16,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{538A87
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Configuration.Abstractions.Net40", "System.Configuration.Abstractions.Net40\System.Configuration.Abstractions.Net40.csproj", "{63F46237-8D4E-4D87-AAF1-6DD6BC869409}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Configuration.Abstractions.NetStandard", "System.Configuration.Abstractions.NetStandard\System.Configuration.Abstractions.NetStandard.csproj", "{14A6F22E-52C9-4E33-96F3-1AC5D6475CE0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -34,8 +36,15 @@ Global
{63F46237-8D4E-4D87-AAF1-6DD6BC869409}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63F46237-8D4E-4D87-AAF1-6DD6BC869409}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63F46237-8D4E-4D87-AAF1-6DD6BC869409}.Release|Any CPU.Build.0 = Release|Any CPU
{14A6F22E-52C9-4E33-96F3-1AC5D6475CE0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{14A6F22E-52C9-4E33-96F3-1AC5D6475CE0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{14A6F22E-52C9-4E33-96F3-1AC5D6475CE0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{14A6F22E-52C9-4E33-96F3-1AC5D6475CE0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8E80D293-F00B-485F-BA26-ACE05BD55D2D}
EndGlobalSection
EndGlobal

0 comments on commit 3814c6c

Please sign in to comment.