# ProjectResource Constructors

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [ProjectResource](/reference/api/csharp/aspire.hosting/projectresource.md)
- Kind: `Constructors`
- Members: `1`

A resource that represents a specified .NET project.

## ProjectResource(string)

- Name: `Constructor(string)`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/ProjectResource.cs#L31-L101)

Initializes a new instance of the [ProjectResource](/reference/api/csharp/aspire.hosting/projectresource.md) class.

```csharp
public class ProjectResource
{
    public ProjectResource(
        string name)
    {
        // ...
    }
}
```

## Parameters

- `name` (`string`)
  The name of the resource.
