Refactored Jobs.vbproj from the old MSBuild format targeting .NET Framework 4.6.2 to the modern SDK-style project targeting .NET 8.0. Replaced manual assembly references and the use of packages.config with direct <PackageReference> entries for all NuGet dependencies. Removed obsolete project and compiler settings, as well as unnecessary import and property groups. Deleted packages.config as package management is now handled via the project file. This modernization streamlines dependency management and aligns the project with current .NET best practices.
84 lines
4.4 KiB
XML
84 lines
4.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>DigitalData.Modules.Jobs</RootNamespace>
|
|
<AssemblyName>DigitalData.Modules.Jobs</AssemblyName>
|
|
<MyType>Empty</MyType>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<StartupObject />
|
|
<PostBuildEvent>powershell.exe -command "& { &'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }"</PostBuildEvent>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DefineDebug>false</DefineDebug>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Interfaces\Interfaces.vbproj" />
|
|
<ProjectReference Include="..\Logging\Logging.vbproj" />
|
|
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" />
|
|
<PackageReference Include="DocumentFormat.OpenXml" Version="3.2.0" />
|
|
<PackageReference Include="DocumentFormat.OpenXml.Framework" Version="3.2.0" />
|
|
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="7.5.0" />
|
|
<PackageReference Include="GdPicture" Version="14.3.18" />
|
|
<PackageReference Include="GdPicture.runtimes.windows" Version="14.3.18" />
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
<PackageReference Include="Microsoft.VisualBasic" Version="10.3.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2" />
|
|
<PackageReference Include="NLog" Version="5.0.5" />
|
|
<PackageReference Include="OpenMcdf" Version="2.4.1" />
|
|
<PackageReference Include="protobuf-net" Version="3.2.46" />
|
|
<PackageReference Include="protobuf-net.Core" Version="3.2.46" />
|
|
<PackageReference Include="RtfPipe" Version="2.0.7677.4303" />
|
|
<PackageReference Include="System.Buffers" Version="4.6.0" />
|
|
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
|
|
<PackageReference Include="System.IO.Packaging" Version="8.0.1" />
|
|
<PackageReference Include="System.Memory" Version="4.6.0" />
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.6.0" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
|
|
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.1" />
|
|
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
|
|
<PackageReference Include="System.Text.Json" Version="8.0.6" />
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="My Project\Settings.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="DigitalData.Modules.Base">
|
|
<HintPath>..\Base\bin\Debug\DigitalData.Modules.Base.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Modules.Config">
|
|
<HintPath>..\Config\bin\Debug\DigitalData.Modules.Config.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Modules.Database">
|
|
<HintPath>..\Database\bin\Debug\DigitalData.Modules.Database.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Modules.Logging">
|
|
<HintPath>..\Logging\bin\Debug\DigitalData.Modules.Logging.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Configuration" />
|
|
<Reference Include="System.IO.Compression" />
|
|
<Reference Include="System.Management" />
|
|
<Reference Include="System.Security" />
|
|
<Reference Include="System.ServiceModel" />
|
|
<Reference Include="System.Transactions" />
|
|
</ItemGroup>
|
|
</Project> |