Dagger
Search

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@f0a71473b6da306aeab2fc310b383af7ab8b0708

Entrypoint

Return Type
DotnetSdkDev !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -Dotnet SDK source.
containerContainer -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
NameTypeDefault ValueDescription
introspectionJsonFile !-No description provided
Example
func (m *myModule) example(introspectionJson *File) *Directory  {
	return dag.
			DotnetSdkDev().
			Generate(introspectionJson)
}

test() 🔗

Testing the SDK.

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
introspectionJsonFile !-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
NameTypeDefault ValueDescription
introspectionJsonFile !-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()
}