Skip to content

Commit 9d34ec0

Browse files
committedNov 6, 2023
Fix error "No target was found for the target framework" in MAUI projects
1 parent 79b0b93 commit 9d34ec0

File tree

9 files changed

+67
-57
lines changed

9 files changed

+67
-57
lines changed
 

‎.config/dotnet-tools.json

-6
This file was deleted.

‎.editorconfig

+6
Original file line numberDiff line numberDiff line change
@@ -270,3 +270,9 @@ dotnet_diagnostic.CA2016.severity = warning
270270

271271
# IDE0047: Remove unnecessary parentheses
272272
dotnet_diagnostic.IDE0047.severity = none
273+
274+
# IDE0028: Collection initialization can be simplified
275+
dotnet_diagnostic.IDE0028.severity = none
276+
277+
# IDE0290: Use primary constructor
278+
dotnet_diagnostic.IDE0290.severity = none

‎src/NuGet.Metadata.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<PropertyGroup>
8-
<Version>0.2.0</Version>
8+
<Version>0.2.1</Version>
99
<Authors>Loop8ack</Authors>
1010
<PackageReadmeFile>ReadMe.md</PackageReadmeFile>
1111
<PackageLicenseExpression>MIT</PackageLicenseExpression>

‎src/PackScan.Analyzer/Core/Services/PackageDataReaderService.cs

-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ public IReadOnlyCollection<IPackageData> Read()
4343
? FromIntermediateOutput(ProjectDirectory, BaseIntermediateOutputPath)
4444
: new AssetsFilePath(AssetsFilePath.Value);
4545

46-
IEnumerable<KnownPackageId> knownPackageIds = ParseKnownPackageIds(KnownPackageIds.Value).ToArray();
47-
4846
IPackageDataReader reader = new PackageDataReader(assetsFilePath, TargetFramework, RuntimeIdentifier)
4947
{
5048
KnownPackageIds = ParseKnownPackageIds(KnownPackageIds.Value).ToArray()

‎src/PackScan.Analyzer/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"profiles": {
3-
"PackageTools.Analyzer.Test": {
3+
"Debug: PackScan.Analyzer.Test": {
44
"commandName": "DebugRoslynComponent",
55
"targetProject": "..\\..\\test\\PackScan.Analyzer.Test\\PackScan.Analyzer.Test.csproj"
66
}

‎src/PackScan.PackagesReader/PackageDataReader.cs

+20-13
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public sealed class PackageDataReader : IPackageDataReader
2323
public AssetsFilePath AssetsFilePath { get; }
2424

2525
/// <summary>
26-
/// Gets the target framework of the package.
26+
/// Gets the target framework of the project.
2727
/// </summary>
2828
public string TargetFramework { get; }
2929

3030
/// <summary>
31-
/// Gets the runtime identifier of the package (optional).
31+
/// Gets the runtime identifier of the project (optional).
3232
/// </summary>
3333
public string? RuntimeIdentifier { get; }
3434

@@ -41,9 +41,8 @@ public sealed class PackageDataReader : IPackageDataReader
4141
/// Initializes a new instance of the <see cref="PackageDataReader"/> class.
4242
/// </summary>
4343
/// <param name="assetsFilePath">The file path of the project assets file.</param>
44-
/// <param name="targetFramework">The target framework of the package.</param>
45-
/// <param name="runtimeIdentifier">The runtime identifier of the package (optional).</param>
46-
/// <param name="knownPackageIds">Represents a collection of known package IDs and their associated owners or products (optional).</param>
44+
/// <param name="targetFramework">The target framework of the project.</param>
45+
/// <param name="runtimeIdentifier">The runtime identifier of the project (optional).</param>
4746
public PackageDataReader(string assetsFilePath, string targetFramework, string? runtimeIdentifier)
4847
: this(new AssetsFilePath(assetsFilePath), targetFramework, runtimeIdentifier)
4948
{
@@ -53,9 +52,8 @@ public PackageDataReader(string assetsFilePath, string targetFramework, string?
5352
/// Initializes a new instance of the <see cref="PackageDataReader"/> class.
5453
/// </summary>
5554
/// <param name="assetsFilePath">The file path of the project assets file.</param>
56-
/// <param name="targetFramework">The target framework of the package.</param>
57-
/// <param name="runtimeIdentifier">The runtime identifier of the package (optional).</param>
58-
/// <param name="knownPackageIds">Represents a collection of known package IDs and their associated owners or products (optional).</param>
55+
/// <param name="targetFramework">The target framework of the project.</param>
56+
/// <param name="runtimeIdentifier">The runtime identifier of the project (optional).</param>
5957
public PackageDataReader(AssetsFilePath assetsFilePath, string targetFramework, string? runtimeIdentifier)
6058
{
6159
ThrowHelper.ThrowIfNullOrEmpty(targetFramework);
@@ -74,14 +72,16 @@ public IReadOnlyCollection<IPackageData> Read(CancellationToken cancellationToke
7472
{
7573
cancellationToken.ThrowIfCancellationRequested();
7674

77-
NuGetFramework framework = NuGetFramework.Parse(TargetFramework);
7875
LockFile lockFile = AssetsFilePath.ReadLockFile();
7976

77+
NuGetFramework framework = GetFramework(lockFile, TargetFramework)
78+
?? throw new InvalidOperationException($"No target framework was found for the alias '{TargetFramework}'.");
79+
8080
IList<LibraryDependency> projectDependencies = lockFile.PackageSpec
8181
.GetTargetFramework(framework)
8282
.Dependencies;
8383

84-
LockFileTarget? target = TryGetTarget(lockFile, framework)
84+
LockFileTarget? target = TryGetTarget(lockFile, framework, RuntimeIdentifier)
8585
?? throw new InvalidOperationException($"No target was found for the target framework '{TargetFramework}' and the runtime id '{RuntimeIdentifier}'.");
8686

8787
List<IPackageData> result = new();
@@ -121,11 +121,18 @@ public IReadOnlyCollection<IPackageData> Read(CancellationToken cancellationToke
121121

122122
return result;
123123

124-
LockFileTarget TryGetTarget(LockFile lockFile, NuGetFramework framework)
124+
static NuGetFramework? GetFramework(LockFile lockFile, string targetFramework)
125+
{
126+
return lockFile.PackageSpec.TargetFrameworks
127+
.FirstOrDefault(tfi => tfi.TargetAlias.Equals(targetFramework, StringComparison.OrdinalIgnoreCase))
128+
?.FrameworkName;
129+
}
130+
131+
static LockFileTarget TryGetTarget(LockFile lockFile, NuGetFramework framework, string? runtimeIdentifier)
125132
{
126-
return string.IsNullOrEmpty(RuntimeIdentifier)
133+
return string.IsNullOrEmpty(runtimeIdentifier)
127134
? lockFile.GetTarget(framework, null)
128-
: lockFile.GetTarget(framework, RuntimeIdentifier)
135+
: lockFile.GetTarget(framework, runtimeIdentifier)
129136
?? lockFile.GetTarget(framework, null);
130137
}
131138
}

‎test/PackScan.Analyzer.Test/CoreTests.cs

-29
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
using PackScan.PackagesProvider;
2+
3+
namespace PackScan.Analyzer.Test;
4+
5+
public class IntegrationTests
6+
{
7+
[Fact]
8+
public void Exists_Moq()
9+
{
10+
IPackage? package = Packages.GetPackageById("Moq");
11+
12+
Assert.NotNull(package);
13+
Assert.Same(package.Id, "Moq");
14+
Assert.Equal(package.Version.Version, new Version(4, 18, 4));
15+
Assert.True(package.IsProjectDependency);
16+
Assert.Contains(package.DependencyPackages, p => p.Id == "Castle.Core");
17+
}
18+
19+
[Fact]
20+
public void Exists_Castle_Core()
21+
{
22+
IPackage? package = Packages.GetPackageById("Castle.Core");
23+
24+
Assert.NotNull(package);
25+
Assert.Same(package.Id, "Castle.Core");
26+
Assert.Equal(package.Version.Version, new Version(5, 1, 1));
27+
Assert.False(package.IsProjectDependency);
28+
}
29+
}

‎test/PackScan.Analyzer.Test/PackScan.Analyzer.Test.csproj

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,43 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3+
<!-- Analyzer -->
34
<Import Project="..\..\src\PackScan.Analyzer\PackScan.Analyzer.props" />
45
<Import Project="..\..\src\PackScan.Defaults\PackScan.Defaults.props" />
5-
6+
7+
<!-- Test project properties -->
68
<PropertyGroup>
79
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
8-
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
910
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
1011
<IsTestProject>true</IsTestProject>
1112
<IsPackable>false</IsPackable>
13+
</PropertyGroup>
1214

15+
<!-- Analyzer configuration -->
16+
<PropertyGroup>
1317
<AllowEmptyLicenses>true</AllowEmptyLicenses>
1418
<AllowedLicensesAnalyzationEnabled>True</AllowedLicensesAnalyzationEnabled>
1519
<PackagesProviderLoadContentsParallel Condition="'$(Configuration)' == 'Debug'">False</PackagesProviderLoadContentsParallel>
1620
</PropertyGroup>
1721

22+
<!-- Global usings -->
1823
<ItemGroup>
1924
<Using Include="Xunit" />
2025
</ItemGroup>
2126

27+
<!-- XUnit packages -->
2228
<ItemGroup>
2329
<PackageReference Include="xunit" Version="2.5.0" />
2430
<PackageReference Include="xunit.core" Version="2.5.0" />
2531
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" PrivateAssets="all" />
26-
2732
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
28-
<PackageReference Include="coverlet.collector" Version="3.2.0" PrivateAssets="all" />
2933
</ItemGroup>
3034

35+
<!-- Test packages -->
3136
<ItemGroup>
32-
<!-- Test packages -->
3337
<PackageReference Include="Moq" Version="[4.18.4]" />
3438
</ItemGroup>
3539

40+
<!-- Analyzer -->
3641
<ItemGroup>
3742
<ProjectReference Include="..\..\src\PackScan.Analyzer\PackScan.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
3843
<ProjectReference Include="..\..\src\PackScan.PackagesProvider.Abstractions\PackScan.PackagesProvider.Abstractions.csproj" />

0 commit comments

Comments
 (0)
Please sign in to comment.