C# 클래스 NugetForUnity.NugetConfigFile

Represents a NuGet.config file that stores the NuGet settings. See here: https://docs.nuget.org/consume/nuget-config-file
파일 보기 프로젝트 열기: GlitchEnzo/NuGetForUnity 1 사용 예제들

공개 메소드들

메소드 설명
CreateDefaultFile ( string filePath ) : NugetConfigFile

Creates a NuGet.config file with the default settings at the given full filepath.

Load ( string filePath ) : NugetConfigFile

Loads a NuGet.config file at the given filepath.

Save ( string filepath ) : void

Saves this NuGet.config file to disk.

메소드 상세

CreateDefaultFile() 공개 정적인 메소드

Creates a NuGet.config file with the default settings at the given full filepath.
public static CreateDefaultFile ( string filePath ) : NugetConfigFile
filePath string The full filepath where to create the NuGet.config file.
리턴 NugetConfigFile

Load() 공개 정적인 메소드

Loads a NuGet.config file at the given filepath.
public static Load ( string filePath ) : NugetConfigFile
filePath string The full filepath to the NuGet.config file to load.
리턴 NugetConfigFile

Save() 공개 메소드

Saves this NuGet.config file to disk.
public Save ( string filepath ) : void
filepath string The filepath to where this NuGet.config will be saved.
리턴 void