Skip to content

Commit

Permalink
Review 1
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers committed Nov 2, 2023
1 parent 8fa4ec2 commit 49401f1
Show file tree
Hide file tree
Showing 23 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- uses: nuget/setup-nuget@v1
with:
nuget-version: '5.x'
- run: nuget restore src\CLIParser.sln
- run: nuget restore src\net\CLIParser.sln

- name: Compile
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" tests\CLIParserTest.sln
Expand All @@ -72,15 +72,15 @@ jobs:
dotnet run --framework net7.0 --project tests\CLIParserTest\CLIParserTest.csproj
- name: Create Release
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\CLIParser.sln
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\CLIParser.sln

- name: Clear documentation folder
run: Remove-Item .\docs\* -Recurse -Force -Exclude _config.yml,CNAME

- name: Build documentation
run: |
choco install docfx
cd src\Documentation
cd src\documentation
docfx
- uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: nuget/setup-nuget@v1
with:
nuget-version: '5.x'
- run: nuget restore src\CLIParser.sln
- run: nuget restore src\net\CLIParser.sln

- name: Compile
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" tests\CLIParserTest.sln
Expand All @@ -49,5 +49,5 @@ jobs:
- name: Build documentation
run: |
choco install docfx
cd src\Documentation
cd src\documentation
docfx
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
nuget-version: '5.x'

- run: nuget restore src\CLIParser.sln
- run: nuget restore src\net\CLIParser.sln

- name: Build NuGet Packages
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\CLIParser.sln
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\CLIParser.sln

- uses: nuget/setup-nuget@v1
with:
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) 2022 MASES s.r.l.
Copyright (c) 2023 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2022 MASES s.r.l.
* Copyright (c) 2023 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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2022 MASES s.r.l.
* Copyright (c) 2023 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
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<RootNamespace>MASES.CLIParser</RootNamespace>
<Title>CLIParser - a parser for command line interface</Title>
<Description>CLIParser - a parser for command line interface</Description>
<Copyright>Copyright © MASES s.r.l. 2022</Copyright>
<Copyright>Copyright © MASES s.r.l. 2023</Copyright>
<Owners>MASES s.r.l.</Owners>
<Authors>MASES s.r.l.</Authors>
<Company>MASES s.r.l.</Company>
<Version>3.1.2.0</Version>
<Product>CLIParser</Product>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\bin\</OutputPath>
<OutputPath>..\..\..\bin\</OutputPath>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/masesgroup/CLIParser/</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2022 MASES s.r.l.
* Copyright (c) 2023 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
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/CLIParserTest/CLIParserTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<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. 2022</Copyright>
<Copyright>Copyright © MASES s.r.l. 2023</Copyright>
<Authors>MASES s.r.l.</Authors>
<Company>MASES s.r.l.</Company>
<Version>3.1.2.0</Version>
<TargetFrameworks>net462;net6.0;net7.0</TargetFrameworks>
<OutputPath>..\..\bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\CLIParser\CLIParser.csproj" />
<ProjectReference Include="..\..\src\net\CLIParser\CLIParser.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="MyFile">
Expand Down
2 changes: 1 addition & 1 deletion tests/CLIParserTest/Program.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2021 MASES s.r.l.
* Copyright (c) 2023 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

0 comments on commit 49401f1

Please sign in to comment.