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

Enable FindInvalidProjectReferences for .NET Core #6365

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -290,6 +290,18 @@ public partial class FindInList : Microsoft.Build.Tasks.TaskExtension
public bool MatchFileNameOnly { get { throw null; } set { } }
public override bool Execute() { throw null; }
}
public partial class FindInvalidProjectReferences : Microsoft.Build.Tasks.TaskExtension
{
public FindInvalidProjectReferences() { }
[Microsoft.Build.Framework.OutputAttribute]
public Microsoft.Build.Framework.ITaskItem[] InvalidReferences { get { throw null; } }
public Microsoft.Build.Framework.ITaskItem[] ProjectReferences { get { throw null; } set { } }
[Microsoft.Build.Framework.RequiredAttribute]
public string TargetPlatformIdentifier { get { throw null; } set { } }
[Microsoft.Build.Framework.RequiredAttribute]
public string TargetPlatformVersion { get { throw null; } set { } }
public override bool Execute() { throw null; }
}
public partial class FindUnderPath : Microsoft.Build.Tasks.TaskExtension
{
public FindUnderPath() { }
Expand Down
1 change: 0 additions & 1 deletion src/Tasks.UnitTests/Microsoft.Build.Tasks.UnitTests.csproj
Expand Up @@ -99,7 +99,6 @@
<Compile Remove="CSharpTokenizer_Tests.cs" />
<Compile Remove="DependentAssembly_Tests.cs" />
<Compile Remove="ErrorWarningMessage_Tests.cs" />
<Compile Remove="FindInvalidProjectReferences_Tests.cs" />
<Compile Remove="ResourceHandling\GenerateResourceOutOfProc_Tests.cs" />
<Compile Remove="ResourceHandling\ResGen_Tests.cs" />
<Compile Remove="ResourceHandling\ResGenDependencies_Tests.cs" />
Expand Down
2 changes: 1 addition & 1 deletion src/Tasks/Microsoft.Build.Tasks.csproj
Expand Up @@ -387,6 +387,7 @@
<Compile Include="FindAppConfigFile.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="FindInvalidProjectReferences.cs" />
<Compile Include="GetFrameworkPath.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
Expand Down Expand Up @@ -604,7 +605,6 @@
<Compile Include="ComReferenceWrapperInfo.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="FindInvalidProjectReferences.cs" />
<Compile Include="GenerateBootstrapper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
Expand Down