-
Notifications
You must be signed in to change notification settings - Fork 0
/
SolaceWebClient.csproj
43 lines (35 loc) · 1.3 KB
/
SolaceWebClient.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>6072fa2f-a14a-4b8e-9282-e803ca07ed74</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<Content Remove="presets\example.json" />
<Content Remove="presets\presets.json" />
</ItemGroup>
<ItemGroup>
<None Remove="trustedca\.keep" />
</ItemGroup>
<ItemGroup>
<Compile Include="trustedca\.keep" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Blazored.Toast" Version="4.2.1" />
<PackageReference Include="Blazorise.Bootstrap5" Version="1.5.3" />
<PackageReference Include="Blazorise.DataGrid" Version="1.5.3" />
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.5.3" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
<PackageReference Include="SolaceSystems.Solclient.Messaging" Version="10.24.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="docs\" />
</ItemGroup>
<ItemGroup>
<None Include="presets\presets.json" />
<None Include="presets\example.json" />
</ItemGroup>
</Project>