Skip to content

Commit

Permalink
- Simplify PortedExtensionsProject
Browse files Browse the repository at this point in the history
- add sln file
- Fix TargetFramework on Test project
  • Loading branch information
maryamariyan committed Mar 3, 2020
1 parent 2220437 commit 1b7a68f
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/libraries/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
<Import Project="..\..\Directory.Build.props" />

<ItemGroup>
<PortedExtensionsProject Include="$(MSBuildThisFileDirectory)Microsoft.Extensions.Primitives\ref\**\*csproj" />
<PortedExtensionsProject Include="$(MSBuildThisFileDirectory)Microsoft.Extensions.Primitives\src\**\*csproj" />
<PortedExtensionsProject Include="$(MSBuildThisFileDirectory)Microsoft.Extensions.Primitives\tests\**\*csproj" />
<PortedExtensionsProject Include="$(MSBuildThisFileDirectory)Microsoft.Extensions.Primitives\**\*csproj" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)*\ref\**\Microsoft.Extensions.*proj" Exclude="@(PortedExtensionsProject)" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)*\src\**\Microsoft.Extensions.*proj" Exclude="@(PortedExtensionsProject)" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)*\tests\**\Microsoft.Extensions.*.Tests.csproj" Exclude="@(PortedExtensionsProject)" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29521.150
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D69C4529-128C-4A51-AD5A-659872A4F405}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{0EB2C914-0873-4AF8-9262-75B1405C842A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{33BE7927-9C98-425D-97F5-D68510163F6C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.Primitives", "ref\Microsoft.Extensions.Primitives.csproj", "{176BDA02-0319-4AA0-AD83-D8862CC5AD04}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.Primitives", "src\Microsoft.Extensions.Primitives.csproj", "{36866787-9074-4B79-A339-FD9E0ADFD34D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.Primitives.Tests", "tests\Microsoft.Extensions.Primitives.Tests.csproj", "{10AEB55F-B4CD-44B8-9B82-DFCD543D5647}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{176BDA02-0319-4AA0-AD83-D8862CC5AD04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{176BDA02-0319-4AA0-AD83-D8862CC5AD04}.Debug|Any CPU.Build.0 = Debug|Any CPU
{176BDA02-0319-4AA0-AD83-D8862CC5AD04}.Release|Any CPU.ActiveCfg = Release|Any CPU
{176BDA02-0319-4AA0-AD83-D8862CC5AD04}.Release|Any CPU.Build.0 = Release|Any CPU
{36866787-9074-4B79-A339-FD9E0ADFD34D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{36866787-9074-4B79-A339-FD9E0ADFD34D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{36866787-9074-4B79-A339-FD9E0ADFD34D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{36866787-9074-4B79-A339-FD9E0ADFD34D}.Release|Any CPU.Build.0 = Release|Any CPU
{10AEB55F-B4CD-44B8-9B82-DFCD543D5647}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{10AEB55F-B4CD-44B8-9B82-DFCD543D5647}.Debug|Any CPU.Build.0 = Debug|Any CPU
{10AEB55F-B4CD-44B8-9B82-DFCD543D5647}.Release|Any CPU.ActiveCfg = Release|Any CPU
{10AEB55F-B4CD-44B8-9B82-DFCD543D5647}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{176BDA02-0319-4AA0-AD83-D8862CC5AD04} = {33BE7927-9C98-425D-97F5-D68510163F6C}
{36866787-9074-4B79-A339-FD9E0ADFD34D} = {D69C4529-128C-4A51-AD5A-659872A4F405}
{10AEB55F-B4CD-44B8-9B82-DFCD543D5647} = {0EB2C914-0873-4AF8-9262-75B1405C842A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EC9E15A7-A8F7-486B-B7EA-59341203A4D3}
SolutionGuid = {A2122D16-DA32-4D5D-9F6F-EAB3D6FA1B7E}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>$(DefaultNetCoreTargetFramework);net472</TargetFrameworks>
<TargetFrameworks>$(NetCoreAppCurrent);net472</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 1b7a68f

Please sign in to comment.