-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGridBlazorServerSide.csproj
More file actions
33 lines (27 loc) · 965 Bytes
/
GridBlazorServerSide.csproj
File metadata and controls
33 lines (27 loc) · 965 Bytes
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
32
33
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>5.0.2</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.8.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GridBlazor\GridBlazor.csproj" />
<ProjectReference Include="..\GridCore\GridCore.csproj" />
<ProjectReference Include="..\GridSharedData\GridSharedData.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\SharedResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>SharedResource.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\SharedResource.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>SharedResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>