Updated several NuGet package versions, including downgrading GdPicture to 14.2.100 and updating Newtonsoft.Json to 13.0.4 and System.Runtime.CompilerServices.Unsafe to 6.1.2. Added new CoreWCF and ConfigurationManager package references. Removed several System.* and Microsoft.VisualBasic package references, as well as all project and assembly references to DigitalData.Modules.* and other system assemblies, streamlining dependency management.
63 lines
3.5 KiB
XML
63 lines
3.5 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.2.100" />
|
|
<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="Newtonsoft.Json" Version="13.0.4" />
|
|
<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.Collections.Immutable" Version="8.0.0" />
|
|
<PackageReference Include="System.IO.Packaging" Version="8.0.1" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
|
|
<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.Configuration.ConfigurationManager" Version="10.0.1" />
|
|
<PackageReference Include="CoreWCF.Primitives" Version="1.8.0" />
|
|
<PackageReference Include="CoreWCF.ConfigurationManager" Version="1.8.0" />
|
|
<PackageReference Include="CoreWCF.Http" Version="1.8.0" />
|
|
<PackageReference Include="CoreWCF.WebHttp" Version="1.8.0" />
|
|
<PackageReference Include="CoreWCF.NetTcp" Version="1.8.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="My Project\Settings.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
</Project> |