-
-
Notifications
You must be signed in to change notification settings - Fork 7
feat(Drivejs): remove AutoDrive parameter #641
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,7 +1,14 @@ | ||||||
| <Project Sdk="Microsoft.NET.Sdk.Razor"> | ||||||
|
|
||||||
| <PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'"> | ||||||
| <Version>9.0.5</Version> | ||||||
| </PropertyGroup> | ||||||
|
|
||||||
| <PropertyGroup Condition="'$(VisualStudioVersion)' == '18.0'"> | ||||||
| <Version>10.0.0-rc.2.1.0</Version> | ||||||
| </PropertyGroup> | ||||||
|
|
||||||
| <PropertyGroup> | ||||||
| <Version>9.0.3</Version> | ||||||
| <RootNamespace>BootstrapBlazor.Components</RootNamespace> | ||||||
| </PropertyGroup> | ||||||
|
|
||||||
|
|
@@ -15,10 +22,14 @@ | |||||
| <EmbeddedResource Include="Locales\*.json" /> | ||||||
| </ItemGroup> | ||||||
|
|
||||||
| <ItemGroup> | ||||||
| <ItemGroup Condition="'$(VisualStudioVersion)' == '17.0'"> | ||||||
| <PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" /> | ||||||
|
||||||
| <PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" /> | |
| <PackageReference Include="BootstrapBlazor" Version="10.0.0-rc.2.1.0" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
Versionproperty has been removed from the unconditional<PropertyGroup>and only defined conditionally. IfVisualStudioVersionis not '17.0' or '18.0', no version will be set, which could cause build issues. Consider adding a fallback version in the unconditional PropertyGroup or handle other VisualStudioVersion values.