Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 756f21b

Browse filesBrowse files
Chris Martinezcommonsensesoftware
authored andcommitted
Fix NETFX reference assemblies
1 parent e40495f commit 756f21b
Copy full SHA for 756f21b

File tree

Expand file treeCollapse file tree

5 files changed

+6
-15
lines changed
Filter options
Expand file treeCollapse file tree

5 files changed

+6
-15
lines changed

‎asp.sln

Copy file name to clipboardExpand all lines: asp.sln
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ EndProject
2626
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Abstractions", "Abstractions", "{7B0FA6C2-47BA-4C34-90E0-B75DF44F2124}"
2727
EndProject
2828
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AspNet", "AspNet", "{34A0373F-12C9-44A8-9A1C-5EEE7218C877}"
29-
ProjectSection(SolutionItems) = preProject
30-
src\AspNet\Directory.Build.targets = src\AspNet\Directory.Build.targets
31-
EndProjectSection
3229
EndProject
3330
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AspNetCore", "AspNetCore", "{EBC9F217-E8BC-4DCE-9C67-F22150959EAF}"
3431
EndProject

‎build/test.targets

Copy file name to clipboardExpand all lines: build/test.targets
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<PropertyGroup>
55
<FluentAssertionsVersion>6.8.0</FluentAssertionsVersion>
6-
<MoqVersion>4.18.2</MoqVersion>
6+
<MoqVersion>4.18.3</MoqVersion>
77
<XunitRunnerVersion>2.4.5</XunitRunnerVersion>
88
</PropertyGroup>
99

‎src/Abstractions/test/Asp.Versioning.Abstractions.Tests/Asp.Versioning.Abstractions.Tests.csproj

Copy file name to clipboardExpand all lines: src/Abstractions/test/Asp.Versioning.Abstractions.Tests/Asp.Versioning.Abstractions.Tests.csproj
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net7.0;net472;net452</TargetFrameworks>
3+
<TargetFrameworks>net7.0;net452;net472</TargetFrameworks>
44
<RootNamespace>Asp.Versioning</RootNamespace>
55
</PropertyGroup>
66
<ItemGroup Condition=" ('$(TargetFramework)' == 'net452') OR ('$(TargetFramework)' == 'net472') ">

‎src/AspNet/Directory.Build.targets

Copy file name to clipboardExpand all lines: src/AspNet/Directory.Build.targets
-10Lines changed: 0 additions & 10 deletions
This file was deleted.

‎src/Directory.Build.targets

Copy file name to clipboardExpand all lines: src/Directory.Build.targets
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
<Import Project="$(BuildDir)test.targets" />
2222
</ImportGroup>
2323

24+
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
25+
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.$(TargetFramework)" Version="1.0.3" PrivateAssets="All" />
26+
</ItemGroup>
27+
2428
<Target Name="GetTargetPath" Outputs="$(TargetPath)" />
2529
<Target Name="GetTargetPaths" Outputs="@(TargetFiles)">
2630

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.