This repository was archived by the owner on Apr 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOpenEMS.Server.csproj
More file actions
33 lines (33 loc) · 1.98 KB
/
OpenEMS.Server.csproj
File metadata and controls
33 lines (33 loc) · 1.98 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<UserSecretsId>openems-server-ba6e9f8992a2</UserSecretsId>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<Target Name="CreateSwaggerJson" AfterTargets="Build" Condition="$(SKIP_SWAGGER_GEN)!='1'">
<Exec Command="dotnet tool restore" WorkingDirectory="$(ProjectDir)" />
<Exec Command="dotnet swagger tofile --output $(ProjectDir)Swagger/backend_api.yaml --yaml $(TargetDir)$(AssemblyName).dll v1" />
<Exec Command="echo '$(ProjectDir)../app/src/Swagger'" />
<Copy SourceFiles="$(ProjectDir)Swagger/backend_api.yaml" DestinationFolder="$(ProjectDir)../../../app/swagger" />
</Target>
<ItemGroup>
<PackageReference Include="crozone.AsyncResetEvents" Version="1.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="OpenTelemetry" Version="1.11.2" />
<PackageReference Include="Scrutor" Version="6.0.1" />
<PackageReference Include="Sentry.Serilog" Version="5.4.0" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.OpenTelemetry" Version="4.1.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenEMS.Infrastructure\OpenEMS.Infrastructure.csproj" />
<ProjectReference Include="..\integrations\OpenEMS.Integrations.Shelly\OpenEMS.Integrations.Shelly.csproj" />
<ProjectReference Include="..\integrations\OpenEMS.Integrations.Development\OpenEMS.Integrations.Development.csproj" />
</ItemGroup>
</Project>