2019-11-02 21:01:25 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2019-11-02 01:40:41 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-12-08 17:55:31 +00:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2024-04-30 05:02:17 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2019-11-02 01:40:41 +00:00
|
|
|
|
</PropertyGroup>
|
2019-11-02 21:01:25 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2020-12-03 04:13:46 +00:00
|
|
|
|
<Version>5.2.99.306</Version>
|
2019-11-02 21:01:25 +00:00
|
|
|
|
<Company>Claunia.com</Company>
|
2024-04-30 05:11:05 +01:00
|
|
|
|
<Copyright>Copyright © 2011-2024 Natalia Portillo</Copyright>
|
2020-02-29 19:22:23 +00:00
|
|
|
|
<Product>Aaru Data Preservation Suite</Product>
|
2020-02-29 19:20:39 +00:00
|
|
|
|
<Title>Aaru.Server.Task</Title>
|
2019-11-02 21:01:25 +00:00
|
|
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
|
|
|
|
|
<RuntimeIdentifiers>linux-x64</RuntimeIdentifiers>
|
2019-11-02 01:40:41 +00:00
|
|
|
|
</PropertyGroup>
|
2019-11-02 21:01:25 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)-{chash:8} built by {mname} in $(Configuration){!:, modified}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
2019-11-02 01:40:41 +00:00
|
|
|
|
</PropertyGroup>
|
2019-11-02 21:01:25 +00:00
|
|
|
|
|
2019-11-02 01:40:41 +00:00
|
|
|
|
<ItemGroup>
|
2023-10-04 00:18:24 +01:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.39"/>
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0"/>
|
|
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.2" PrivateAssets="all"/>
|
2019-11-02 01:40:41 +00:00
|
|
|
|
</ItemGroup>
|
2019-11-02 21:01:25 +00:00
|
|
|
|
|
2019-11-02 01:40:41 +00:00
|
|
|
|
<ItemGroup>
|
2023-10-04 00:18:24 +01:00
|
|
|
|
<ProjectReference Include="..\Aaru.Server\Aaru.Server.csproj"/>
|
2019-11-02 01:40:41 +00:00
|
|
|
|
</ItemGroup>
|
2019-11-02 21:01:25 +00:00
|
|
|
|
|
2020-01-03 00:48:16 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="drive_offsets.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2019-11-02 21:01:25 +00:00
|
|
|
|
</Project>
|