commit a2555a7ce5c48bb37bbed6e3b10866c372b6b5de Author: Lisoveliy Date: Tue Jul 8 14:07:10 2025 +0300 chore: init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/.idea/.idea.HTTP2FileStreams/.idea/.gitignore b/.idea/.idea.HTTP2FileStreams/.idea/.gitignore new file mode 100644 index 0000000..b945c1d --- /dev/null +++ b/.idea/.idea.HTTP2FileStreams/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/.idea.HTTP2FileStreams.iml +/contentModel.xml +/modules.xml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.HTTP2FileStreams/.idea/encodings.xml b/.idea/.idea.HTTP2FileStreams/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.HTTP2FileStreams/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/HTTP2FileStreams.csproj b/HTTP2FileStreams.csproj new file mode 100644 index 0000000..5a25aeb --- /dev/null +++ b/HTTP2FileStreams.csproj @@ -0,0 +1,9 @@ + + + + net9.0 + enable + enable + + + diff --git a/HTTP2FileStreams.sln b/HTTP2FileStreams.sln new file mode 100644 index 0000000..ac14797 --- /dev/null +++ b/HTTP2FileStreams.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HTTP2FileStreams", "HTTP2FileStreams.csproj", "{213702C3-A848-4246-8359-C2864FC0280F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {213702C3-A848-4246-8359-C2864FC0280F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {213702C3-A848-4246-8359-C2864FC0280F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {213702C3-A848-4246-8359-C2864FC0280F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {213702C3-A848-4246-8359-C2864FC0280F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..eef8c40 --- /dev/null +++ b/Program.cs @@ -0,0 +1,14 @@ +namespace HTTP2FileStreams; + +public class Program +{ + public static void Main(string[] args) + { + var builder = WebApplication.CreateBuilder(args); + var app = builder.Build(); + + app.MapGet("/", () => "Hello World!"); + + app.Run(); + } +} \ No newline at end of file diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..3b6f8ed --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:5051", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7101;http://localhost:5051", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/appsettings.Development.json b/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/appsettings.json b/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +}