-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issues found while running test PowerShell script.
- Loading branch information
1 parent
3cb4418
commit 9e27423
Showing
3 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/mudblazor/MudBlazor.Template.Client/MudBlazor.Template.Client.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net9.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile> | ||
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode> | ||
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">MudBlazor.Template.Client</RootNamespace> | ||
<AssemblyName Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">`$(AssemblyName.Replace(' ', '_'))</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.*" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="9.*" Condition="'$(IndividualLocalAuth)' == 'True'" /> | ||
<PackageReference Include="MudBlazor" Version="7.*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
src/mudblazor/MudBlazor.Template/MudBlazor.Template.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net9.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UserSecretsId Condition="'$(IndividualLocalAuth)' == 'True'">aspnet-MudBlazor.Template-53bc9b9d-9d6a-45d4-8429-2a2761773502</UserSecretsId> | ||
<NoDefaultLaunchSettingsFile Condition="'$(ExcludeLaunchSettings)' == 'True'">True</NoDefaultLaunchSettingsFile> | ||
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">MudBlazor.Template</RootNamespace> | ||
<AssemblyName Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">`$(AssemblyName.Replace(' ', '_'))</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<!--#if (IndividualLocalAuth && !UseLocalDB) --> | ||
<ItemGroup> | ||
<None Update="Data\app.db" CopyToOutputDirectory="PreserveNewest" ExcludeFromSingleFile="true" /> | ||
</ItemGroup> | ||
|
||
<!--#endif --> | ||
|
||
<!--#if (!UseWebAssembly && !IndividualLocalAuth) --> | ||
<ItemGroup> | ||
<PackageReference Include="MudBlazor" Version="7.*" /> | ||
</ItemGroup> | ||
<!--#endif --> | ||
<!--#if (UseWebAssembly || IndividualLocalAuth) --> | ||
<ItemGroup> | ||
<ProjectReference Include="..\MudBlazor.Template.Client\MudBlazor.Template.Client.csproj" Condition="'$(UseWebAssembly)' == 'True'" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.*" Condition="'$(UseWebAssembly)' == 'True'" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.*" Condition="'$(IndividualLocalAuth)' == 'True'" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.*" Condition="'$(IndividualLocalAuth)' == 'True'" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.*" Condition="'$(IndividualLocalAuth)' == 'True' AND '$(UseLocalDB)' != 'True'" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.*" Condition="'$(IndividualLocalAuth)' == 'True' AND '$(UseLocalDB)' == 'True'" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.*" Condition="'$(IndividualLocalAuth)' == 'True'" /> | ||
<PackageReference Include="MudBlazor" Version="7.*" Condition="'$(UseWebAssembly)' != 'True'" /> | ||
<PackageReference Include="Extensions.MudBlazor.StaticInput" Version="2.*" Condition="'$(IndividualLocalAuth)' == 'True'" /> | ||
</ItemGroup> | ||
|
||
<!--#endif --> | ||
</Project> |