-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCV.csproj
49 lines (42 loc) · 1.74 KB
/
CV.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Pages\Education\**" />
<Content Remove="Pages\Education\**" />
<EmbeddedResource Remove="Pages\Education\**" />
<None Remove="Pages\Education\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="README.md" />
<None Remove="ToDo.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Blazorise" Version="1.4.2" />
<PackageReference Include="Blazorise.Bootstrap" Version="1.4.2" />
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.4.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="8.0.2" />
<PackageReference Include="Radzen.Blazor" Version="4.28.9" />
</ItemGroup>
<ItemGroup>
<Compile Update="Shared\Resources\AllResourcesRes.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>AllResourcesRes.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Shared\Resources\AllResourcesRes.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>AllResourcesRes.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>