Skip to content

Commit af2d930

Browse files
authored
Release 3.2 (#17)
* Push version to 3.2 * Change license to MIT and restructure repository * Add appveyor.yml file
1 parent bab14b1 commit af2d930

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+307
-733
lines changed

LICENSE-3RD-PARTY.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
PCGSharp requires to take note of the following copyrights and permissions:
2+
// MIT License
3+
//
4+
// Copyright (c) 2016 Bismur Studios Ltd.
5+
// Copyright (c) 2016 Ioannis Giagkiozis
6+
//
7+
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software
8+
// and associated documentation files (the "Software"), to deal in the Software without restriction,
9+
// including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
10+
// and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
11+
// subject to the following conditions:
12+
//
13+
// The above copyright notice and this permission notice shall be included in all copies or substantial
14+
// portions of the Software.
15+
16+
Daniel "BlueRaja" Pflughoeft requires to take not of the following copyrights and permissions:
17+
/*
18+
The MIT License (MIT)
19+
20+
Copyright (c) 2013 Daniel "BlueRaja" Pflughoeft
21+
22+
Permission is hereby granted, free of charge, to any person obtaining a copy
23+
of this software and associated documentation files (the "Software"), to deal
24+
in the Software without restriction, including without limitation the rights
25+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26+
copies of the Software, and to permit persons to whom the Software is
27+
furnished to do so, subject to the following conditions:
28+
29+
The above copyright notice and this permission notice shall be included in
30+
all copies or substantial portions of the Software.
31+
*/

LICENSE.txt

Lines changed: 11 additions & 652 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 17 additions & 13 deletions

appveyor.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: '{build}'
2+
image: Visual Studio 2017
3+
build_script:
4+
- pwsh: >-
5+
pushd src
6+
7+
dotnet restore
8+
9+
dotnet build --configuration Release
10+
11+
popd
12+
13+
Exit $LASTEXITCODE
14+
test_script:
15+
- pwsh: >-
16+
pushd src
17+
18+
dotnet test Tests --configuration Release
19+
20+
popd
21+
22+
Exit $LASTEXITCODE

docs/README.md

Lines changed: 150 additions & 0 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.

Benchmark/Benchmark.csproj renamed to src/Benchmark/Benchmark.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.0</TargetFramework>
66
<Authors>Andreas Beham</Authors>
7-
<Version>3.1.1</Version>
7+
<Version>3.2</Version>
88
<Company>HEAL, FH Upper Austria</Company>
99
<Product>Sim# (Benchmarks)</Product>
1010
<Description />

0 commit comments

Comments
 (0)