Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Nov 23, 2023
1 parent 3de443b commit 20cd6e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BuildScripts/NuGetPublish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set PACKAGES=..\.dist
set SOURCE=https://api.nuget.org/v3/index.json
set /p APIKEY=<"..\..\ApiKey.txt"

set PKGVER=4.0.0
set PKGVER=4.0.1

dotnet nuget push "%PACKAGES%\FastExpressionCompiler.%PKGVER%.nupkg" -k %APIKEY% -s %SOURCE% --skip-duplicate
dotnet nuget push "%PACKAGES%\FastExpressionCompiler.src.%PKGVER%.nupkg" -k %APIKEY% -s %SOURCE% --skip-duplicate
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ skip_commits:
message: /noci .*/

build_script:
- dotnet run -f net7.0 -c Release -p:DevMode=false --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
- dotnet run -f net7.0 -c Release -p:DevMode=false --project test/FastExpressionCompiler.TestsRunner

for:
- matrix:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net6.0;net472</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' == 'true'">net8.0;net6.0;net472</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' != 'true'">net6.0;net472</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Reflection.Emit" Version="4.7.0"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Reflection.Emit" Version="4.7.0"/>
</ItemGroup>

</Project>

0 comments on commit 20cd6e9

Please sign in to comment.