This commit is contained in:
Chad Kittel 2020-07-28 17:44:25 -05:00
Родитель 2537b98fa9
Коммит 05f0accd65
23 изменённых файлов: 2 добавлений и 124 удалений

Просмотреть файл

@ -1,6 +0,0 @@
{
"recommendations": [
"ms-azuretools.vscode-azurefunctions",
"ms-dotnettools.csharp"
]
}

Просмотреть файл

@ -1,11 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to .NET Functions",
"type": "coreclr",
"request": "attach",
"processId": "${command:azureFunctions.pickProcess}"
}
]
}

Просмотреть файл

@ -1,7 +0,0 @@
{
"azureFunctions.deploySubpath": "Generated/bin/Release/netcoreapp3.0/publish",
"azureFunctions.projectLanguage": "C#",
"azureFunctions.projectRuntime": "~3",
"debug.internalConsoleOptions": "neverOpen",
"azureFunctions.preDeployTask": "publish"
}

Просмотреть файл

@ -1,81 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "clean",
"command": "dotnet",
"args": [
"clean",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Generated"
}
},
{
"label": "build",
"command": "dotnet",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"dependsOn": "clean",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Generated"
}
},
{
"label": "clean release",
"command": "dotnet",
"args": [
"clean",
"--configuration",
"Release",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Generated"
}
},
{
"label": "publish",
"command": "dotnet",
"args": [
"publish",
"--configuration",
"Release",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"dependsOn": "clean release",
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Generated"
}
},
{
"type": "func",
"dependsOn": "build",
"options": {
"cwd": "${workspaceFolder}/Generated/bin/Debug/netcoreapp3.0"
},
"command": "host start",
"isBackground": true,
"problemMatcher": "$func-watch"
}
]
}

Просмотреть файл

@ -1,15 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.1.0" />
<PackageReference Include="System.Text.Json" Version="4.6.0" />
</ItemGroup>
</Project>

Просмотреть файл

@ -1,9 +1,7 @@
{
"OutputFolder": ".",
"OutputFolder": "HackThePetstore",
"Namespace": "HackThePetstore",
"LibraryName": "HackThePetstore",
"SharedSourceFolder": "..\\..\\..\\src\\assets",
"AzureArm": false,
"PublicClients": true,
"GenerateMetadata": true
}

Просмотреть файл

@ -29,7 +29,7 @@ namespace AutoRest.CSharp.V3.AutoRest.Communication
{
continue;
}
var filename = Path.Combine(basePath, file.Name);
var filename = Path.Combine(configuration.OutputFolder, file.Name);
Console.WriteLine($"Writing {filename}");
Directory.CreateDirectory(Path.GetDirectoryName(filename));
await File.WriteAllTextAsync(filename, file.Text);