Assembly metadata such as title, description, company, product, copyright, and version information was removed from AssemblyInfo.vb and added to the Database.vbproj project file instead. This centralizes assembly attributes in the project file, streamlining project configuration and reducing redundancy. Only the trademark, COM visibility, and GUID remain in AssemblyInfo.vb.
76 lines
3.6 KiB
XML
76 lines
3.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>DigitalData.Modules.Database</RootNamespace>
|
|
<AssemblyName>DigitalData.Modules.Database</AssemblyName>
|
|
<MyType>Windows</MyType>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PostBuildEvent>powershell.exe -command "& { &'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }"</PostBuildEvent>
|
|
<AssemblyTitle>Modules.Database</AssemblyTitle>
|
|
<Description>Stellt Funktionen für den Datenbankzugriff zur Verfügung</Description>
|
|
<Company>Digital Data</Company>
|
|
<Product>Modules.Database</Product>
|
|
<Copyright>Copyright © 2025</Copyright>
|
|
<AssemblyVersion>2.3.6.0</AssemblyVersion>
|
|
<FileVersion>2.3.6.0</FileVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DocumentationFile>DigitalData.Modules.Database.xml</DocumentationFile>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DefineDebug>false</DefineDebug>
|
|
<DocumentationFile>DigitalData.Modules.Database.xml</DocumentationFile>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="EntityFramework" Version="6.5.1" />
|
|
<PackageReference Include="EntityFramework.Firebird" Version="10.1.0" />
|
|
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="10.3.2" />
|
|
<PackageReference Include="NLog" Version="5.0.5" />
|
|
<PackageReference Include="System.Data.Odbc" Version="8.0.1" />
|
|
<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\Application.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Application.myapp</DependentUpon>
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<Compile Update="My Project\Resources.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="My Project\Settings.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="My Project\Resources.resx">
|
|
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="My Project\Application.myapp">
|
|
<Generator>MyApplicationCodeGenerator</Generator>
|
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
|
</None>
|
|
<None Update="My Project\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<CustomToolNamespace>My</CustomToolNamespace>
|
|
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |