dotnet-sdk-dev
This module contains functions for developing the SDK such as, running tests,generate introspection, etc.
Installation
dagger install github.com/shykes/dagger/sdk/dotnet/dev@bb9c96ba494f3c3fa506ddaab5efe8c82f43b325
Entrypoint
Return Type
DotnetSdkDev !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory | - | Dotnet SDK source. |
container | Container | - | Base container. |
Example
func (m *myModule) example() *DotnetSdkDev {
return dag.
DotnetSdkDev()
}
Types
DotnetSdkDev 🔗
container() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
DotnetSdkDev().
Container()
}
generate() 🔗
Generate code from introspection json file.
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(introspectionJson *File) *Directory {
return dag.
DotnetSdkDev().
Generate(introspectionJson)
}
test() 🔗
Testing the SDK.
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(ctx context.Context, introspectionJson *File) {
return dag.
DotnetSdkDev().
Test(ctx, introspectionJson)
}
lint() 🔗
Lint all CSharp source files in the SDK.
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
DotnetSdkDev().
Lint(ctx)
}
check() 🔗
Run test and lint.
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(ctx context.Context, introspectionJson *File) {
return dag.
DotnetSdkDev().
Check(ctx, introspectionJson)
}
format() 🔗
Format all CSharp source files.
Return Type
Directory !
Example
func (m *myModule) example() *Directory {
return dag.
DotnetSdkDev().
Format()
}