Skip to content

Commit

Permalink
Updated README and test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed May 28, 2020
1 parent 9c8efd5 commit 47fc689
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
6 changes: 3 additions & 3 deletions LinqRewrite/LinqRewrite.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.1.1</Version>
<AssemblyVersion>1.1.1</AssemblyVersion>
<FileVersion>1.1.1</FileVersion>
<Version>1.1.2</Version>
<AssemblyVersion>1.1.2</AssemblyVersion>
<FileVersion>1.1.2</FileVersion>
<LangVersion>latest</LangVersion>
<Authors>Daniel Šerý</Authors>
<Product>Turing ecosystem</Product>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dotnet LinqRewrite.dll <path-to-csx> <path-to-rewrite> # Rewrites csx file

## Example projects

With release of LinqRewrite there are also included two example projects. The first one is BenchmarksLibrary (with set of benchmarks for LinqRewrite) and the second one is TestsLibrary. You can run prepared bat scripts for running of example project or run them manually from command line.
With release of LinqRewrite there are also included two example projects. The first one is BenchmarksLibrary (with set of benchmarks for LinqRewrite) and the second one is TestsLibrary. You can run prepared bat scripts (RunRewrittenBenchmarks.bat and RunRewrittenTests.bat) for running of example project or run them manually from command line.

For building and executing TestsLibrary you must run the following commands:
```bash
Expand Down
4 changes: 4 additions & 0 deletions RunRewrittenBenchmarks.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
cd Tests\BenchmarksLibrary
dotnet restore
cd ..\..

cd LinqRewrite
dotnet run ..\Tests\BenchmarksLibrary\BenchmarksLibrary.csproj ..\Tests\Rewritten
cd ..\Tests\Rewritten
Expand Down
4 changes: 4 additions & 0 deletions RunRewrittenTests.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
cd Tests\TestsLibrary
dotnet restore
cd ..\..

cd LinqRewrite
dotnet run ..\Tests\TestsLibrary\TestsLibrary.csproj ..\Tests\Rewritten
cd ..\Tests\Rewritten
Expand Down

0 comments on commit 47fc689

Please sign in to comment.