Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
#28 - Update project files
Browse files Browse the repository at this point in the history
  • Loading branch information
fabasoad committed Jul 11, 2020
1 parent 0433eed commit b0082d1
Show file tree
Hide file tree
Showing 9 changed files with 78 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
id: version
run: |
$Version = $([xml](Get-Content ghacu.nuspec)).package.metadata.version
Write-Output "Current version is $Version"
Write-Output "Current ghacu version is $Version"
Write-Output "::set-output name=value::$Version"
shell: pwsh
- name: Build
Expand Down
10 changes: 10 additions & 0 deletions src/Ghacu.Api/Ghacu.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@

<PropertyGroup>
<TargetFramework>netcoreapp5.0</TargetFramework>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.0</PackageVersion>
<Authors>fabasoad</Authors>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="semver" Version="2.0.6" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" />
<PackageReference Include="YamlDotNet" Version="8.1.2" />
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.164" />
</ItemGroup>

</Project>
11 changes: 11 additions & 0 deletions src/Ghacu.Cache/Ghacu.Cache.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

<PropertyGroup>
<TargetFramework>netcoreapp5.0</TargetFramework>
<NeutralLanguage>en-UA</NeutralLanguage>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.0</PackageVersion>
<Authors>fabasoad</Authors>
</PropertyGroup>

<ItemGroup>
Expand All @@ -10,6 +20,7 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" />
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.164" />
</ItemGroup>

<ItemGroup>
Expand Down
11 changes: 10 additions & 1 deletion src/Ghacu.GitHub/Ghacu.GitHub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,24 @@

<PropertyGroup>
<TargetFramework>netcoreapp5.0</TargetFramework>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.0</PackageVersion>
<Authors>fabasoad</Authors>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="Octokit" Version="0.48.0" />
<PackageReference Include="StructureMap.Microsoft.DependencyInjection" Version="2.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" />
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.164" />
</ItemGroup>

<ItemGroup>
Expand Down
7 changes: 7 additions & 0 deletions src/Ghacu.Runner/Ghacu.Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
<NeutralLanguage>en-UA</NeutralLanguage>
<LangVersion>preview</LangVersion>
<PackageVersion>2.0.0</PackageVersion>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<ItemGroup>
Expand Down
11 changes: 10 additions & 1 deletion src/Ghacu.Workflow/Ghacu.Workflow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,24 @@

<PropertyGroup>
<TargetFramework>netcoreapp5.0</TargetFramework>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.0</PackageVersion>
<Authors>fabasoad</Authors>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="StructureMap.Microsoft.DependencyInjection" Version="2.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" />
<PackageReference Include="YamlDotNet" Version="8.1.2" />
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.164" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 10 additions & 0 deletions tests/Ghacu.Cache.Tests/Ghacu.Cache.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

<PropertyGroup>
<TargetFramework>netcoreapp5.0</TargetFramework>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.0</PackageVersion>
<Authors>fabasoad</Authors>
</PropertyGroup>

<ItemGroup>
Expand All @@ -12,6 +21,7 @@
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2" />
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.164" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 10 additions & 0 deletions tests/Ghacu.Runner.Tests/Ghacu.Runner.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

<PropertyGroup>
<TargetFramework>netcoreapp5.0</TargetFramework>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.0</PackageVersion>
<Authors>fabasoad</Authors>
</PropertyGroup>

<ItemGroup>
Expand All @@ -11,6 +20,7 @@
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2" />
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.164" />
</ItemGroup>

<ItemGroup>
Expand Down
13 changes: 9 additions & 4 deletions tests/Ghacu.Workflow.Tests/Ghacu.Workflow.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
<IsPackable>false</IsPackable>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;osx-x64</RuntimeIdentifiers>
<TargetFramework>netcoreapp5.0</TargetFramework>
<PackageVersion>2.0.0</PackageVersion>
<Authors>fabasoad</Authors>
<Title>GHACU</Title>
<Copyright>Yevhen Fabizhevskyi</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<ItemGroup>
Expand All @@ -24,8 +33,4 @@
<ProjectReference Include="..\..\src\Ghacu.Workflow\Ghacu.Workflow.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="coverage" />
</ItemGroup>

</Project>

0 comments on commit b0082d1

Please sign in to comment.