Skip to content

Commit d98ccad

Browse files
committed
Update CI scripts and fix wrong package source
1 parent 525cc82 commit d98ccad

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: build
22
on: push
33

4+
env:
5+
DOTNET_NOLOGO: true
6+
MSBUILDDISABLENODEREUSE: 1
7+
48
jobs:
59
build:
610
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ on:
33
release:
44
types: [created]
55

6+
env:
7+
DOTNET_NOLOGO: true
8+
MSBUILDDISABLENODEREUSE: 1
9+
610
jobs:
711
push:
812
runs-on: ubuntu-latest

src/Directory.Build.props

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
<Nullable>enable</Nullable>
2424
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
2525
<DefaultItemExcludes>$(DefaultItemExcludes);*.binlog;*.zip</DefaultItemExcludes>
26-
27-
<RestoreSources>C:\Code\kzu\NuGetizer\bin;https://api.nuget.org/v3/index.json;$(RestoreSources)</RestoreSources>
2826
</PropertyGroup>
2927

3028
<PropertyGroup Label="CI" Condition="'$(CI)' == ''">
@@ -33,7 +31,7 @@
3331
</PropertyGroup>
3432

3533
<ItemGroup>
36-
<PackageReference Include="NuGetizer" Version="42.42.42" />
34+
<PackageReference Include="NuGetizer" Version="0.3.0" />
3735
</ItemGroup>
3836

3937
<ItemGroup Label="Workaround for public packages not having the latest ISourceGenerator API changes">

0 commit comments

Comments
 (0)