Compiler Warning ASPIREDOTNETPROJECT001
Цей контент ще не доступний вашою мовою.
AddDotnetProject types and members are for evaluation purposes only and are subject to change or removal in future updates. Suppress this diagnostic to proceed.
This diagnostic warning is reported when using experimental AddDotnetProject APIs from the Aspire.Hosting.Dotnet integration, including:
AddDotnetProjectextension methodsDotnetProjectResource
These APIs add a C# project or file-based C# app to the application model as an ExecutableResource that’s launched through the .NET SDK.
Example
Section titled “Example”The following code generates ASPIREDOTNETPROJECT001:
var builder = DistributedApplication.CreateBuilder(args);
builder.AddDotnetProject("inventoryservice", @"..\InventoryService.cs");
builder.Build().Run();To correct this warning
Section titled “To correct this warning”Suppress the warning with one of the following methods:
-
Set the severity of the rule in the .editorconfig file.
.editorconfig [*.{cs,vb}]dotnet_diagnostic.ASPIREDOTNETPROJECT001.severity = noneFor more information about editor config files, see Configuration files for code analysis rules.
-
Add the following
PropertyGroupto your project file:C# project file <PropertyGroup><NoWarn>$(NoWarn);ASPIREDOTNETPROJECT001</NoWarn></PropertyGroup> -
Suppress in code with the
#pragma warning disable ASPIREDOTNETPROJECT001directive:Suppressing the warning #pragma warning disable ASPIREDOTNETPROJECT001builder.AddDotnetProject("inventoryservice", @"..\InventoryService.cs");#pragma warning restore ASPIREDOTNETPROJECT001
See also
Section titled “See also”- ASPIRECSHARPAPPS001 - Related experimental C# app API
- ASPIREPROJECTS001 - Related experimental project launch defaults APIs