Skip to content

Commit

Permalink
Merge pull request #47 from OpenBapul/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
gongdo authored Apr 8, 2018
2 parents 6867ba7 + 334fbd8 commit d684ebe
Show file tree
Hide file tree
Showing 95 changed files with 231 additions and 38,643 deletions.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changes

## 2.x

- .NET Standard 2.0 지원

### 2.0.0

- .NET Standard 2.0 지원 #44
- **Breaking Change** [PaymentGateway](https://github.com/OpenBapul/iamport-rest-client-net/blob/master/src/Iamport.RestApi/Models/PaymentGateway.cs), [PaymentMethod](https://github.com/OpenBapul/iamport-rest-client-net/blob/master/src/Iamport.RestApi/Models/PaymentMethod.cs)를 enum에서 class로 변경. #32

## 1.x
- 최초 릴리즈
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

이 프로젝트는 [아임포트(I'mport) REST API](https://api.iamport.kr/) 클라이언트의 닷넷 구현입니다. 프로젝트 이름을 표기할 때에는 `아임포트RESTAPI닷넷`이라고 합니다.

아임포트RESTAPI닷넷은 모던한 닷넷 플랫폼을 지향하며 닷넷 4.5 이상을 대상으로 합니다. 네트워크를 통한 모든 호출은 `async` 비동기로 이루어집니다.
아임포트RESTAPI닷넷은 모던한 닷넷 플랫폼을 지향하며 닷넷 프레임워크 4.5, 닷넷 스탠다드 2.0이상을 대상으로 합니다. 네트워크를 통한 모든 호출은 `async` 비동기로 이루어집니다.


## Quick start
Expand All @@ -15,6 +15,13 @@
Install-Package Iamport.RestApi
```

(또는 .csproj에 추가)
```
<ItemGroup>
<PackageReference Include="Iamport.RestApi" Version="2.0.0" />
</ItemGroup>
```

### Usage - 결제 플러그인 방식

```CSharp
Expand Down Expand Up @@ -100,8 +107,13 @@ Pre-release 버전은 [MyGet](https://www.myget.org)으로 배포합니다.
아임포트RESTAPI닷넷은 다음과 같이 진행됩니다. 각 마일스톤의 일정은 아직 미정입니다.
아임포트RESTAPI닷넷의 버전 규칙은 [Semantic Versioning](http://semver.org/)을 따릅니다.

* 1.2
* SMS 본인 인증 추가
- [1.1](https://github.com/gongdo/iamport-rest-client-net/milestones/1.1.0)
- Subscription API 추가
- 1.1.1
- VS 2017 마이그레이션
- 2.0
- .NET Standard 2.0 지원
- 이후 미정

## Contribution
이 프로젝트는 누구나 참여할 수 있는 오픈소스 프로젝트입니다. 참여와 기여는 다음과 같이 할 수 있습니다.
Expand All @@ -119,7 +131,7 @@ Pre-release 버전은 [MyGet](https://www.myget.org)으로 배포합니다.
### Development Environment Requirement
현재 아임포트RESTAPI닷넷은 다음과 같은 환경에서 개발됩니다.
- [Visual Studio 2017](https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx) - IDE
- [.NET Core 1.1](https://www.microsoft.com/net/core#windows) - Runtime
- [.NET Core 2.1](https://www.microsoft.com/net/core#windows) - Runtime
- [xunit](https://xunit.github.io) - 단위 테스트 및 기능 테스트.

.NET Core 프로젝트이므로 MAC OSX와 Linux에서도 개발 및 테스트가 가능합니다.
Expand Down
6 changes: 5 additions & 1 deletion RestApi.sln
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26403.3
VisualStudioVersion = 15.0.26730.12
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9549D4E9-456A-47B6-9917-E8721D7966A3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{80EA0D1C-8636-4912-9D33-FC10F4117824}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
appveyor.yml = appveyor.yml
CHANGES.md = CHANGES.md
NuGet.Config = NuGet.Config
README.md = README.md
EndProjectSection
Expand Down Expand Up @@ -50,4 +51,7 @@ Global
{9CCAABDA-64B1-49DF-A083-CDA1F2FCD5EE} = {A86BF648-3C56-4A5F-BED0-E47D1993518E}
{626DCC1B-8666-4548-BA94-A8F4C807F0E3} = {006BB7EB-0106-4618-81B6-8DB8F4AFC227}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {551F2B71-C6F1-4E5E-9EEE-78CCB2C5CF96}
EndGlobalSection
EndGlobal
31 changes: 0 additions & 31 deletions Samples/Sample.AspNet/App_Start/BundleConfig.cs

This file was deleted.

88 changes: 0 additions & 88 deletions Samples/Sample.AspNet/App_Start/DependencyConfig.cs

This file was deleted.

13 changes: 0 additions & 13 deletions Samples/Sample.AspNet/App_Start/FilterConfig.cs

This file was deleted.

23 changes: 0 additions & 23 deletions Samples/Sample.AspNet/App_Start/RouteConfig.cs

This file was deleted.

43 changes: 0 additions & 43 deletions Samples/Sample.AspNet/Content/Site.css

This file was deleted.

Loading

0 comments on commit d684ebe

Please sign in to comment.