Skip to content

Commit

Permalink
Update readme, package, fix appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Feb 12, 2019
1 parent 762804d commit e6f564e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ image: Visual Studio 2017
configuration: Release
install:
- ps: >-
git submodule update --init --recursive
cd src
nuget restore Tomlyn.sln
Expand Down
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Tomlyn [![Build status](https://ci.appveyor.com/api/projects/status/ig5kv8r63bqjsd9a?svg=true)](https://ci.appveyor.com/project/xoofx/Tomlyn) [![NuGet](https://img.shields.io/nuget/v/Tomlyn.svg)](https://www.nuget.org/packages/Tomlyn/)
# Tomlyn [![Build status](https://ci.appveyor.com/api/projects/status/9rdg3h944ybxgto9?svg=true)](https://ci.appveyor.com/project/xoofx/tomlyn) [![NuGet](https://img.shields.io/nuget/v/Tomlyn.svg)](https://www.nuget.org/packages/Tomlyn/)

<img align="right" width="160px" height="160px" src="img/logo.png">

Expand All @@ -12,6 +12,7 @@ Tomlyn is a TOML parser, validator and authoring library for .NET Framework and
- Provides a validator with the `Toml.Validate` method
- Allow to work on the syntax tree directly (preserving styles) through the `Toml.Parse`
- Allow to work with a runtime representation `Toml.ToModel` (but cannot be saved back to TOML)
- Supports for .NET Framework 4.5+, .NET Standard 1.3 and .NET Standard 2.0+ (Core)

## Usage

Expand Down
2 changes: 2 additions & 0 deletions src/Tomlyn.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tomlyn.Tests", "Tomlyn.Test
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0EFAEDCD-25FB-4D3A-9828-6C5F00E4227D}"
ProjectSection(SolutionItems) = preProject
..\appveyor.yml = ..\appveyor.yml
..\changelog.md = ..\changelog.md
..\readme.md = ..\readme.md
EndProjectSection
EndProject
Expand Down
5 changes: 2 additions & 3 deletions src/Tomlyn/Tomlyn.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard1.3</TargetFrameworks>
<!--<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.0;net471</TargetFrameworks>-->
<TargetFrameworks>net45;netstandard1.3;netstandard2.0</TargetFrameworks>
<LangVersion>7.3</LangVersion>
<Description>Tomlyn is a TOML parser, validator and authoring library for .NET Framework and .NET Core</Description>
<Copyright>Alexandre Mutel</Copyright>
Expand Down

0 comments on commit e6f564e

Please sign in to comment.