Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed May 3, 2024
1 parent 1ca3e25 commit 0e1f6c1
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Create Packages
if: success() && github.event_name != 'pull_request'
run: dotnet pack --configuration Release --include-symbols --include-source --no-build --output "${{env.BUILD_PATH}}"
run: dotnet pack --configuration Release --no-build --output "${{env.BUILD_PATH}}"

- name: Upload Packages
if: success() && github.event_name != 'pull_request'
Expand Down
4 changes: 4 additions & 0 deletions samples/Sample.Controllers/Sample.Controllers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@
<ProjectReference Include="..\Sample.Shared\Sample.Shared.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Bogus" Version="35.5.1" />
</ItemGroup>

</Project>
4 changes: 4 additions & 0 deletions samples/Sample.Middleware/Sample.Middleware.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@
<ProjectReference Include="..\Sample.Shared\Sample.Shared.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Bogus" Version="35.5.1" />
</ItemGroup>

</Project>
4 changes: 4 additions & 0 deletions samples/Sample.MinimalApi/Sample.MinimalApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@
<ProjectReference Include="..\Sample.Shared\Sample.Shared.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Bogus" Version="35.5.1" />
</ItemGroup>

</Project>
4 changes: 4 additions & 0 deletions samples/Sample.Shared/Sample.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Update="Bogus" Version="35.5.1" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<PropertyGroup Label="Debug">
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>false</IncludeSymbols>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand All @@ -30,4 +30,8 @@
<Using Include="Xunit" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Bogus" Version="35.5.1" />
</ItemGroup>

</Project>

0 comments on commit 0e1f6c1

Please sign in to comment.