Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
payments
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Юнусов Ибрагим
payments
Commits
95309e32
Commit
95309e32
authored
Jul 06, 2022
by
Юнусов Ибрагим
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Создал проект
parent
595a7916
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
112 additions
and
0 deletions
+112
-0
.gitignore
.gitignore
+6
-0
Payment.WebApi.csproj
Payments/Payment.WebApi/Payment.WebApi.csproj
+17
-0
Program.cs
Payments/Payment.WebApi/Program.cs
+25
-0
launchSettings.json
Payments/Payment.WebApi/Properties/launchSettings.json
+31
-0
appsettings.Development.json
Payments/Payment.WebApi/appsettings.Development.json
+8
-0
appsettings.json
Payments/Payment.WebApi/appsettings.json
+9
-0
Payments.sln
Payments/Payments.sln
+16
-0
No files found.
.gitignore
0 → 100644
View file @
95309e32
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
.idea
\ No newline at end of file
Payments/Payment.WebApi/Payment.WebApi.csproj
0 → 100644
View file @
95309e32
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers" />
</ItemGroup>
</Project>
Payments/Payment.WebApi/Program.cs
0 → 100644
View file @
95309e32
var
builder
=
WebApplication
.
CreateBuilder
(
args
);
// Add services to the container.
builder
.
Services
.
AddControllers
();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder
.
Services
.
AddEndpointsApiExplorer
();
builder
.
Services
.
AddSwaggerGen
();
var
app
=
builder
.
Build
();
// Configure the HTTP request pipeline.
if
(
app
.
Environment
.
IsDevelopment
())
{
app
.
UseSwagger
();
app
.
UseSwaggerUI
();
}
app
.
UseHttpsRedirection
();
app
.
UseAuthorization
();
app
.
MapControllers
();
app
.
Run
();
\ No newline at end of file
Payments/Payment.WebApi/Properties/launchSettings.json
0 → 100644
View file @
95309e32
{
"$schema"
:
"https://json.schemastore.org/launchsettings.json"
,
"iisSettings"
:
{
"windowsAuthentication"
:
false
,
"anonymousAuthentication"
:
true
,
"iisExpress"
:
{
"applicationUrl"
:
"http://localhost:18522"
,
"sslPort"
:
44352
}
},
"profiles"
:
{
"Payment.WebApi"
:
{
"commandName"
:
"Project"
,
"dotnetRunMessages"
:
true
,
"launchBrowser"
:
true
,
"launchUrl"
:
"swagger"
,
"applicationUrl"
:
"https://localhost:7280;http://localhost:5135"
,
"environmentVariables"
:
{
"ASPNETCORE_ENVIRONMENT"
:
"Development"
}
},
"IIS Express"
:
{
"commandName"
:
"IISExpress"
,
"launchBrowser"
:
true
,
"launchUrl"
:
"swagger"
,
"environmentVariables"
:
{
"ASPNETCORE_ENVIRONMENT"
:
"Development"
}
}
}
}
Payments/Payment.WebApi/appsettings.Development.json
0 → 100644
View file @
95309e32
{
"Logging"
:
{
"LogLevel"
:
{
"Default"
:
"Information"
,
"Microsoft.AspNetCore"
:
"Warning"
}
}
}
Payments/Payment.WebApi/appsettings.json
0 → 100644
View file @
95309e32
{
"Logging"
:
{
"LogLevel"
:
{
"Default"
:
"Information"
,
"Microsoft.AspNetCore"
:
"Warning"
}
},
"AllowedHosts"
:
"*"
}
Payments/Payments.sln
0 → 100644
View file @
95309e32
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Payment.WebApi", "Payment.WebApi\Payment.WebApi.csproj", "{8CA9047E-099A-4BAA-A2CB-1323720B2D78}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8CA9047E-099A-4BAA-A2CB-1323720B2D78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8CA9047E-099A-4BAA-A2CB-1323720B2D78}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8CA9047E-099A-4BAA-A2CB-1323720B2D78}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8CA9047E-099A-4BAA-A2CB-1323720B2D78}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment