-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSeedysoft.BlazorWebApp.Server.csproj
More file actions
89 lines (83 loc) · 5.09 KB
/
Seedysoft.BlazorWebApp.Server.csproj
File metadata and controls
89 lines (83 loc) · 5.09 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>linux-arm64</RuntimeIdentifiers>
<SelfContained>true</SelfContained>
<StartupObject>Seedysoft.BlazorWebApp.Server.Program</StartupObject>
<TargetFramework>net10.0</TargetFramework>
<UserSecretsId>953853f7-9384-457c-a3c0-3492059196ab</UserSecretsId>
<WasmBuildNative>true</WasmBuildNative>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<Content Remove="appsettings.BlazorWebApp.Server.Production.json" />
<None Include="appsettings.BlazorWebApp.Server.Production.json" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Content Remove="appsettings.BlazorWebApp.Server.Development.json" />
<None Include="appsettings.BlazorWebApp.Server.Development.json" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\scripts\create-daemon.sh" Link="create-daemon.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\..\..\scripts\shared.sh" Link="shared.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\..\..\scripts\stop-daemon.sh" Link="stop-daemon.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\..\..\scripts\update.sh" Link="update.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Cronos" Version="0.11.1" />
<PackageReference Include="DiffPlex" Version="1.9.0" />
<PackageReference Include="EFCore.BulkExtensions.Sqlite" Version="10.0.1" />
<PackageReference Include="EfCore.SchemaCompare" Version="10.0.0" />
<PackageReference Include="FluentValidation" Version="12.1.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="10.0.5" />
<PackageReference Include="MudBlazor" Version="9.3.0" />
<PackageReference Include="NSwag.AspNetCore" Version="14.7.0" />
<PackageReference Include="Octokit" Version="14.0.0" />
<PackageReference Include="OneOf" Version="3.0.271" />
<PackageReference Include="RestSharp" Version="114.0.0" />
<PackageReference Include="Selenium.Support" Version="4.41.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.41.0" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.2" />
<PackageReference Include="System.IO.Hashing" Version="10.0.5" />
<PackageReference Include="Telegram.Bot" Version="22.9.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Libs\GasStationPrices\Seedysoft.Libs.GasStationPrices.csproj" />
<ProjectReference Include="..\..\Libs\Infrastructure\Seedysoft.Libs.Infrastructure.csproj" />
<ProjectReference Include="..\..\Libs\Update\Seedysoft.Libs.Update.csproj" />
<ProjectReference Include="..\..\Outbox\Lib\Seedysoft.Outbox.Lib.csproj" />
<ProjectReference Include="..\..\WebComparer\Lib\Seedysoft.WebComparer.Lib.csproj" />
<ProjectReference Include="..\Client\Seedysoft.BlazorWebApp.Client.csproj" />
</ItemGroup>
</Project>