-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDontParkHere.csproj
31 lines (25 loc) · 1.22 KB
/
DontParkHere.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RazorLangVersion>3.0</RazorLangVersion>
</PropertyGroup>
<PropertyGroup>
<BlazorLinkOnBuild>false</BlazorLinkOnBuild>
</PropertyGroup>
<ItemGroup>
<Content Remove="Configuration\appsettings.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Configuration\appsettings.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspNetMonsters.Blazor.Geolocation" Version="0.5.0-preview1" />
<PackageReference Include="AutoMapper" Version="9.0.0" />
<PackageReference Include="GeoCoordinate.NetCore" Version="1.0.0.1" />
<PackageReference Include="Kentico.Kontent.Delivery" Version="12.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.1.0-preview3.19555.2" />
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.1.0-preview3.19555.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.Blazor.HttpClient" Version="3.1.0-preview3.19555.2" />
<PackageReference Include="Microsoft.AspNetCore.Blazor.DevServer" Version="3.1.0-preview3.19555.2" PrivateAssets="all" />
</ItemGroup>
</Project>