# CSharpAppResource Constructors

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

A resource that represents a specified C# project or file-based app.

## CSharpAppResource(string)

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

A resource that represents a specified C# project or file-based app.

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

## Parameters

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