Skip to content

Commit 2beeef8

Browse files
committed
Fixes #1
1 parent 9c455b8 commit 2beeef8

File tree

19 files changed

+351
-1
lines changed

19 files changed

+351
-1
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: new feature
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Question
3+
about: Ask some question about this project
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the question**
11+
12+
**Describe solutions you've tried**
13+
A description of any solutions you've already tried to solve the problem.

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "TesterApp Launch",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "Build",
9+
"program": "${workspaceFolder}/src/TesterApp/bin/Debug/netcoreapp3.0/TesterApp.dll",
10+
"cwd": "${workspaceFolder}/src/TesterApp",
11+
"internalConsoleOptions": "openOnSessionStart",
12+
"env":
13+
{
14+
"ASPNETCORE_ENVIRONMENT": "Development"
15+
}
16+
}]
17+
}

.vscode/tasks.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/src/Simplify.Web.Postman.sln"
11+
],
12+
"problemMatcher": "$msCompile",
13+
"group":
14+
{
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}]
19+
}

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
11
# Simplify.Web.Postman
2-
Postman collection and environment generation extension for Simplify.Web
2+
3+
[![Nuget Version](https://img.shields.io/nuget/v/Simplify.Web.Postman)](https://www.nuget.org/packages/Simplify.Web.Postman/)
4+
[![Nuget Download](https://img.shields.io/nuget/dt/Simplify.Web.Postman)](https://www.nuget.org/packages/Simplify.Web.Postman/)
5+
[![AppVeyor branch](https://img.shields.io/appveyor/ci/i4004/simplify-web-postman/master)](https://ci.appveyor.com/project/i4004/simplify-web-postman)
6+
[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/nuget/Simplify.Web.Postman)](https://libraries.io/nuget/Simplify.Web.Postman)
7+
[![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/SimplifyNet/Simplify.Web.Postman)](https://www.codefactor.io/repository/github/simplifynet/Simplify.Web.Postman)
8+
![Platform](https://img.shields.io/badge/platform-.NET%20Standard%202.0-lightgrey)
9+
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=SimplifyNet/Simplify.Web.Postman)](https://dependabot.com)
10+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen)](http://makeapullrequest.com)
11+
12+
`Simplify.Web.Postman` is a package which provides Postman collection and environment generation extension for [Simplify.Web](https://github.com/SimplifyNet/Simplify.Web) web-framework controllers.
13+
14+
## Quick Start
15+
16+
// TODO

appveyor.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: "{build}"
2+
3+
image: Visual Studio 2019
4+
5+
skip_tags: true
6+
clone_depth: 1
7+
8+
configuration: Release
9+
platform: Any CPU
10+
11+
before_build:
12+
- nuget restore src/Simplify.Web.Postman.sln
13+
14+
build:
15+
project: src/Simplify.Web.Postman.sln
16+
publish_nuget: true
17+
parallel: true
18+
verbosity: minimal

src/Simplify.Web.Postman.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29215.179
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Simplify.Web.Postman", "Simplify.Web.Postman\Simplify.Web.Postman.csproj", "{1834BEA8-2331-4A44-86C9-CC764BCA0761}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TesterApp", "TesterApp\TesterApp.csproj", "{857E0A47-2D7B-478A-BEEF-6CB3CF9EC5B3}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{1834BEA8-2331-4A44-86C9-CC764BCA0761}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{1834BEA8-2331-4A44-86C9-CC764BCA0761}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{1834BEA8-2331-4A44-86C9-CC764BCA0761}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{1834BEA8-2331-4A44-86C9-CC764BCA0761}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{857E0A47-2D7B-478A-BEEF-6CB3CF9EC5B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{857E0A47-2D7B-478A-BEEF-6CB3CF9EC5B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{857E0A47-2D7B-478A-BEEF-6CB3CF9EC5B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{857E0A47-2D7B-478A-BEEF-6CB3CF9EC5B3}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {B9D639DD-A3A3-4FAD-8928-7CAA49A9AA2A}
30+
EndGlobalSection
31+
EndGlobal
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=DI/@EntryIndexedValue">DI</s:String>
3+
<s:Boolean x:Key="/Default/UserDictionary/Words/=registrator/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
4+
<LangVersion>8.0</LangVersion>
5+
<Nullable>enable</Nullable>
6+
<Authors>Alexander Krylkov</Authors>
7+
<Product>Simplify</Product>
8+
<Description>Postman collection and environment generation extension for Simplify.Web</Description>
9+
<Copyright>Licensed under LGPL</Copyright>
10+
<Version>0.1</Version>
11+
<PackageProjectUrl>https://github.com/SimplifyNet/Simplify.Web.Postman</PackageProjectUrl>
12+
<PackageIconUrl>https://raw.githubusercontent.com/SimplifyNet/Images/master/LogoWeb32x32.png</PackageIconUrl>
13+
<RepositoryUrl>https://github.com/SimplifyNet/Simplify.Web.Postman</RepositoryUrl>
14+
<RepositoryType>GIT</RepositoryType>
15+
<PackageTags>Simplify.Web Postman API</PackageTags>
16+
<PackageReleaseNotes>
17+
</PackageReleaseNotes>
18+
<OutputPath>bin\Any CPU\$(Configuration)\</OutputPath>
19+
<DocumentationFile>bin\Any CPU\$(Configuration)\$(TargetFramework)\Simplify.Web.Postman.xml</DocumentationFile>
20+
</PropertyGroup>
21+
<ItemGroup>
22+
<PackageReference Include="Simplify.Web" Version="4.0.0" />
23+
</ItemGroup>
24+
</Project>

0 commit comments

Comments
 (0)