C# Класс NugetForUnity.NugetConfigFile

Represents a NuGet.config file that stores the NuGet settings. See here: https://docs.nuget.org/consume/nuget-config-file
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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