Innovenergy_trunk/csharp/App/VrmGrabber/VrmGrabber.csproj

51 lines
2.4 KiB
XML
Raw Normal View History

2023-04-27 14:59:45 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2023-09-14 12:34:51 +00:00
<Import Project="../InnovEnergy.App.props" />
2023-05-11 08:20:47 +00:00
<PropertyGroup>
<PublishTrimmed>false</PublishTrimmed>
2023-09-14 12:34:51 +00:00
<RootNamespace>InnovEnergy.App.VrmGrabber</RootNamespace>
2023-05-11 08:20:47 +00:00
</PropertyGroup>
2023-09-14 12:34:51 +00:00
2023-04-27 14:59:45 +00:00
<ItemGroup>
<PackageReference Include="Flurl.Http" Version="3.2.4" />
2023-05-04 15:22:58 +00:00
<PackageReference Include="Handlebars.Net" Version="2.1.4" />
2023-04-27 14:59:45 +00:00
<PackageReference Include="Hellang.Middleware.ProblemDetails" Version="6.5.1" />
<PackageReference Include="MailKit" Version="3.6.0" />
<PackageReference Include="Microsoft.AspNet.Identity.Core" Version="2.2.3" />
<PackageReference Include="Microsoft.AspNet.Identity.Owin" Version="2.2.3" />
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.9" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Identity.Web" Version="1.26.0" />
<PackageReference Include="Microsoft.Owin.Cors" Version="4.2.2" />
<PackageReference Include="Microsoft.Owin.Host.SystemWeb" Version="4.2.2" />
<PackageReference Include="Microsoft.Owin.Security" Version="4.2.2" />
<PackageReference Include="Microsoft.Owin.Security.Cookies" Version="4.2.2" />
<PackageReference Include="Microsoft.Owin.Security.OAuth" Version="4.2.2" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
<PackageReference Include="sqlite-net-sqlcipher" Version="1.9.141-beta" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="7.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore.Filters.Abstractions" Version="7.0.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../Lib/Utils/Utils.csproj" />
2023-09-14 12:34:51 +00:00
<ProjectReference Include="../../Lib/Victron/VictronVRM/VictronVRM.csproj" />
<ProjectReference Include="../RemoteSupportConsole/RemoteSupportConsole.csproj" />
2023-04-27 14:59:45 +00:00
</ItemGroup>
2023-05-11 08:20:47 +00:00
2023-05-04 15:22:58 +00:00
<ItemGroup>
2023-09-14 12:34:51 +00:00
<_ContentIncludedByDefault Remove="wwwroot/index.html" />
2023-05-04 15:22:58 +00:00
</ItemGroup>
<ItemGroup>
<None Update="db.sqlite">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2023-05-04 15:22:58 +00:00
2023-04-27 14:59:45 +00:00
</Project>