Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Holiday): add BootstrapBlazor.Holiday package #3077

Merged
merged 1 commit into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion BootstrapBlazor.sln
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "configuration", "configurat
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapBlazor.AzureTranslator", "src\Extensions\Components\BootstrapBlazor.AzureTranslator\BootstrapBlazor.AzureTranslator.csproj", "{D63E50CB-EF78-47BF-9809-003D4574ABF4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BootstrapBlazor.SvgEditor", "src\Extensions\Components\BootstrapBlazor.SVGEditor\BootstrapBlazor.SvgEditor.csproj", "{E1B885ED-34EB-43B2-93C7-7898BDE90686}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapBlazor.SvgEditor", "src\Extensions\Components\BootstrapBlazor.SVGEditor\BootstrapBlazor.SvgEditor.csproj", "{E1B885ED-34EB-43B2-93C7-7898BDE90686}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapBlazor.Holiday", "src\Extensions\Components\BootstrapBlazor.Holiday\BootstrapBlazor.Holiday.csproj", "{C3849FFF-DCAF-4186-9BF1-C2D67E57D82C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTestHoliday", "test\UnitTestHoliday\UnitTestHoliday.csproj", "{AB19F805-A27F-455F-8E36-8F1ADE295868}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -270,6 +274,14 @@ Global
{E1B885ED-34EB-43B2-93C7-7898BDE90686}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E1B885ED-34EB-43B2-93C7-7898BDE90686}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E1B885ED-34EB-43B2-93C7-7898BDE90686}.Release|Any CPU.Build.0 = Release|Any CPU
{C3849FFF-DCAF-4186-9BF1-C2D67E57D82C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C3849FFF-DCAF-4186-9BF1-C2D67E57D82C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C3849FFF-DCAF-4186-9BF1-C2D67E57D82C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C3849FFF-DCAF-4186-9BF1-C2D67E57D82C}.Release|Any CPU.Build.0 = Release|Any CPU
{AB19F805-A27F-455F-8E36-8F1ADE295868}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB19F805-A27F-455F-8E36-8F1ADE295868}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB19F805-A27F-455F-8E36-8F1ADE295868}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB19F805-A27F-455F-8E36-8F1ADE295868}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -317,6 +329,8 @@ Global
{49D9E679-6824-43DF-9DAA-70E24ACCAA62} = {CD062AB6-244D-402A-8F33-C37DAC5856CC}
{D63E50CB-EF78-47BF-9809-003D4574ABF4} = {CD062AB6-244D-402A-8F33-C37DAC5856CC}
{E1B885ED-34EB-43B2-93C7-7898BDE90686} = {CD062AB6-244D-402A-8F33-C37DAC5856CC}
{C3849FFF-DCAF-4186-9BF1-C2D67E57D82C} = {CD062AB6-244D-402A-8F33-C37DAC5856CC}
{AB19F805-A27F-455F-8E36-8F1ADE295868} = {7C1D79F1-87BC-42C1-BD5A-CDE4044AC1BD}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0DCB0756-34FA-4FD0-AE1D-D3F08B5B3A6B}
Expand Down
1 change: 1 addition & 0 deletions src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BootstrapBlazor.Holiday" Version="8.0.0-beta01" />
<PackageReference Include="Longbow.Logging" Version="8.0.0" />
<PackageReference Include="Longbow.Tasks" Version="8.0.0" />
<PackageReference Include="BootstrapBlazor.AzureOpenAI" Version="8.0.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\BootstrapBlazor\BootstrapBlazor.csproj" />
<PackageReference Include="BootstrapBlazor" Version="8.3.4-beta06" />
</ItemGroup>

</Project>