forked from Mewriick/Blazor.GoogleMap
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Blazor API(s) are fixed to for ASP.NET Core 3.0 - Google Maps final improvments are fixed
- Loading branch information
1 parent
8496001
commit 90661d4
Showing
56 changed files
with
527 additions
and
459 deletions.
There are no files selected for viewing
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
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
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
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
demo/Blazor.GoogleMap.Client/Blazor.GoogleMap.Client.csproj
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
<Router AppAssembly="@typeof(Program).Assembly"> | ||
<Found Context="routeData"> | ||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" /> | ||
</Found> | ||
<NotFound> | ||
<LayoutView Layout="@typeof(MainLayout)"> | ||
<p>Sorry, there's nothing at this address.</p> | ||
</LayoutView> | ||
</NotFound> | ||
</Router> |
23 changes: 13 additions & 10 deletions
23
demo/Blazor.GoogleMap.Server/Blazor.GoogleMap.Server.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 |
---|---|---|
@@ -1,22 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
<RestoreAdditionalProjectSources> | ||
https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json; | ||
https://dotnet.myget.org/F/blazor-dev/api/v3/index.json; | ||
</RestoreAdditionalProjectSources> | ||
<LangVersion>7.3</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Blazor.Server" Version="3.0.0-preview5-19227-01" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-preview5-19227-01" /> | ||
<Content Remove="wwwroot\GoogleMapInterop.js" /> | ||
<Content Remove="wwwroot\GoogleMapMarkerInterop.js" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Blazor.GoogleMap.Client\Blazor.GoogleMap.Client.csproj" /> | ||
<ProjectReference Include="..\Blazor.GoogleMap.Shared\Blazor.GoogleMap.Shared.csproj" /> | ||
<EmbeddedResource Include="wwwroot\GoogleMapInterop.js"> | ||
<LogicalName>blazor:js:%(RecursiveDir)%(Filename)%(Extension)</LogicalName> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="wwwroot\GoogleMapMarkerInterop.js"> | ||
<LogicalName>blazor:js:%(RecursiveDir)%(Filename)%(Extension)</LogicalName> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Blazor.GoogleMap\Blazor.GoogleMap.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.