Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repo fix #18

Merged
merged 3 commits into from
Mar 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ jobs:
nuget-version: '5.x'
- run: nuget restore src\CLIParser.sln

- name: Compile
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" tests\CLIParserTest.sln

- name: Test
run: |
dotnet run --framework net461 --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net6.0 --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net6.0-windows --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net5.0 --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net5.0-windows --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework netcoreapp3.1 --project tests\CLIParserTest\CLIParserTest.csproj

- name: Create Release
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,15 @@ jobs:
with:
nuget-version: '5.x'
- run: nuget restore src\CLIParser.sln

- name: Compile
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" tests\CLIParserTest.sln

- name: Test
run: |
dotnet run --framework net461 --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net6.0 --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net6.0-windows --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net5.0 --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework net5.0-windows --project tests\CLIParserTest\CLIParserTest.csproj
dotnet run --framework netcoreapp3.1 --project tests\CLIParserTest\CLIParserTest.csproj

- name: Create Release
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 MASES s.r.l.
Copyright (c) 2022 MASES s.r.l.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions tests/CLIParserTest/CLIParserTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<RootNamespace>MASES.CLIParserTest</RootNamespace>
<Title>CLIParserTest - a parser test tool for CLIParser</Title>
<Description>CLIParserTest - a parser test tool for CLIParser</Description>
<Copyright>Copyright © MASES s.r.l. 2021</Copyright>
<Copyright>Copyright © MASES s.r.l. 2022</Copyright>
<Authors>MASES s.r.l.</Authors>
<Company>MASES s.r.l.</Company>
<Version>2.2.0.0</Version>
<TargetFrameworks>net461;netcoreapp3.1;net5.0;net5.0-windows</TargetFrameworks>
<Version>3.0.0.0</Version>
<TargetFrameworks>net461;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<OutputPath>..\..\bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
Expand Down