Skip to content

Commit

Permalink
chore: update package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tdashworth committed Oct 23, 2024
1 parent f14f2ad commit 0c879fc
Show file tree
Hide file tree
Showing 5 changed files with 433 additions and 382 deletions.
39 changes: 39 additions & 0 deletions name-badge-automater.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{E4D75206-EF15-49E8-91FA-87082C5348AE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NameBadgeAutomater", "src\NameBadgeAutomater\NameBadgeAutomater.csproj", "{45EF9CA9-9E78-400A-BE8E-9B3CE69EF8D9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{64F5CC21-FA62-4413-9631-516A52227F64}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NameBadgeAutomater.Tests", "tests\NameBadgeAutomater.Tests\NameBadgeAutomater.Tests.csproj", "{91DD47EB-0541-4A96-BD0B-B6FC4970F42D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{45EF9CA9-9E78-400A-BE8E-9B3CE69EF8D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{45EF9CA9-9E78-400A-BE8E-9B3CE69EF8D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{45EF9CA9-9E78-400A-BE8E-9B3CE69EF8D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{45EF9CA9-9E78-400A-BE8E-9B3CE69EF8D9}.Release|Any CPU.Build.0 = Release|Any CPU
{91DD47EB-0541-4A96-BD0B-B6FC4970F42D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{91DD47EB-0541-4A96-BD0B-B6FC4970F42D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{91DD47EB-0541-4A96-BD0B-B6FC4970F42D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{91DD47EB-0541-4A96-BD0B-B6FC4970F42D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{45EF9CA9-9E78-400A-BE8E-9B3CE69EF8D9} = {E4D75206-EF15-49E8-91FA-87082C5348AE}
{91DD47EB-0541-4A96-BD0B-B6FC4970F42D} = {64F5CC21-FA62-4413-9631-516A52227F64}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {5BEF5932-9430-4556-8746-E82E96B8A51E}
EndGlobalSection
EndGlobal
10 changes: 5 additions & 5 deletions src/NameBadgeAutomater/NameBadgeAutomater.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BlazorApplicationInsights" Version="2.2.0" />
<PackageReference Include="BlazorApplicationInsights" Version="2.2.2" />
<PackageReference Include="BlazorBeforeUnload" Version="1.0.4" />
<PackageReference Include="Blazored.LocalStorage" Version="4.2.0" />
<PackageReference Include="DocumentFormat.OpenXml" Version="2.17.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.0" PrivateAssets="all" />
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.20" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.20" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public byte[] GenerateFromTemplate(byte[] fileBytes, List<Person> people, int ba

// Save document
using var outStream = new MemoryStream();
presentationDocument.Clone(outStream).Close();
presentationDocument.Clone(outStream).Dispose();

return outStream.ToArray();
}
Expand Down
Loading

0 comments on commit 0c879fc

Please sign in to comment.