Skip to content

Commit

Permalink
8
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatandrei committed Feb 17, 2024
1 parent 1f0cc59 commit caf32ee
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deployNuGetProgrammerAll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ jobs:
include-prerelease: false


- name: Set up .NET Core 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
include-prerelease: false


- name: Build with dotnet
run: |
cd src
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/BrowserTest/BrowserTest.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/LocalAPI/LocalAPI.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishSingleFile>true</PublishSingleFile>
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/LocalAPIChrome/LocalAPIChrome.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/LocalAPIEmail/LocalAPIEmail.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/LocalFS/LocalFS.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/LocalTools/LocalTools.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<None Include="../README.md" Pack="true" PackagePath="\" />
<!--<None Include="wwwroot/a.zip" Pack="true" PackagePath="\tools\net7.0\any\wwwroot" />-->
<None Include="wwwroot/**" Pack="true" PackagePath="\tools\net7.0\any\wwwroot" />
<!--<None Include="wwwroot/a.zip" Pack="true" PackagePath="\tools\net8.0\any\wwwroot" />-->
<None Include="wwwroot/**" Pack="true" PackagePath="\tools\net8.0\any\wwwroot" />

<!--<None Include="../../../docs/nuget.png" Pack="true" PackagePath="\" />
<None Include="../readme.txt" Pack="true" PackagePath="\" />-->
Expand Down Expand Up @@ -53,7 +53,7 @@
<None Remove="wwwroot\default.html" />
</ItemGroup>-->
<ItemGroup>
<!--<Content Include="../LocalApi/www*/**" Pack="true" PackagePath="\tools\net7.0\any\wwwroot">
<!--<Content Include="../LocalApi/www*/**" Pack="true" PackagePath="\tools\net8.0\any\wwwroot">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/SqlServerDB/SqlServerDB.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Local/LocalAPI/WindowsRelated/WindowsRelated.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down

0 comments on commit caf32ee

Please sign in to comment.