-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBlazorShared.csproj
More file actions
28 lines (22 loc) · 1.13 KB
/
Copy pathBlazorShared.csproj
File metadata and controls
28 lines (22 loc) · 1.13 KB
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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>$(SampleTargetFramework)</TargetFramework>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetBasePath>/</StaticWebAssetBasePath>
<PackageId>BlazorShared</PackageId>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" />
<PackageReference Include="Microsoft.Extensions.Localization" />
<PackageReference Include="Tynamix.ObjectFiller" />
<PackageReference Include="Yaml.Localization" />
</ItemGroup>
<ItemGroup>
<Content Remove="I18N\*.yaml" />
<EmbeddedResource Exclude="I18N\cultures.yaml" Type="Non-Resx" WithCulture="false" Include="I18N\*.yaml" LogicalName="$(RootNamespace).Lang.%(Filename).yaml" />
<Content Remove="I18N\cultures.yaml" />
<EmbeddedResource Include="I18N\cultures.yaml" LogicalName="CultureSettings.yaml" />
</ItemGroup>
</Project>