Quest runs nightly, rather than on each label update.
The following changes make that happen:
- The bulk action runs once a day, at a hopefully convenient time.
- The single item workflow runs only in response to a workflow dispatch event (user started)
- For security reasons, limit the permissions to write *issues*, not *contents*
This adds the docs-tools seQuester into the ASPNETCore docs samples repo.
@Rick-Anderson You'll need to configure the same secrets as the ASP.NET Core docs repo for this to work correctly.
* created projected
* added in memory DB
* IResultImplementation
* removed unused code
* Update fundamentals/minimal-apis/samples/IResultImplementation/Tests/IResultImplementationTest.cs
Co-authored-by: Bruno Oliveira <brunolins16@users.noreply.github.com>
* Update fundamentals/minimal-apis/samples/IResultImplementation/Tests/IResultImplementationTest.cs
Co-authored-by: Bruno Oliveira <brunolins16@users.noreply.github.com>
* added extra test
---------
Co-authored-by: Bruno Oliveira <brunolins16@users.noreply.github.com>
* sample impl to invoke an ext authz service
* remove disclaimer
* remove have an issue section in readme
* remove gitignore per code review
* remove template generated comments per code review
* use minimal api based on dotnet new behavior
* use file scoped namespaces
Co-authored-by: David Lee <leedavid@microsoft.com>
* Replaced stub.txt with the samples from git@github.com:logiclrd/ASPNetCoreStreamingExample.git.
* Reformatted to match .editorconfig.
* Added an exclusion for Properties folder in .gitignore, since this is where launchSettings.json lives.
Added launchSettings.json files.
* Added root menus to AsynchronousWithSystemTextJson and SynchronousWithNewtonsoftJson.
Updated launchSettings.json in each project correspondingly.
Updated Startup.cs to output instructions for the user, since it appears `dotnet run` doesn't actually start a browser.
* Added sample DynamicBinaryStream.
* Added RootNamespace properties to AsynchronousWithSystemTextJson.csproj and SynchronousWithNewtonsoftJson.csproj.
* Corrected folder structure.
Removed LICENSE file imported from external repository.
* Added comment explaining why we create a separate JsonTextWriter for each line in SongLyricsMiddleware.cs.
* Removed unnecessary .gitignore files.
* Apparently, Visual Studio was still doing implicit using statements even though it was turned off in the project file. Now it's not doing them, so this commit adds the using statements that were implicit.
* Converted projects to use so-called "minimal hosting" with all initialization inside Program.cs instead of using a Startup class.
* Updated Microsoft.AspNetCore.Mvc.NewtonsoftJson reference to the latest 7.0.0 prerelease version.
* Delete .gitignore
* Enabled implicit usings in all projects. Removed unnecessary using statements.
Converted all C# source files to file-scoped namespaces.
Corrected cases where namespaces including the solution file name (not committed to the repository) were accidentally used.
Enabled Nullable annotation in SynchronousWithNewtonsoftJson.csproj.
* Lumped all using statements into single blocks.
Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
* Initial import of 3.x projects
* Update packages to .NET 7.0
* Remove WebApi client dependency
* Give authentication scheme a more explicit name
* Remove BuildServiceProvider calls
* Set environment explicitly in web app factory
* Move to WebApplicationBuilder
* Move Program to top level statements
* Add solution file
* Convert to file scoped namespaces
Co-authored-by: Jos van der Til <jvdtil@quintor.nl>