laatzen/LaaProductionWeb/LaaProduction.Personalization/LaaProduction.Personalization.csproj
2024-09-18 15:36:12 +02:00

134 lines
5.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4C17FD42-7002-431A-8D6E-C57DD7D7C2D2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LaaProduction.Personalization</RootNamespace>
<AssemblyName>LaaProduction.Personalization</AssemblyName>
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>IDE0003;IDE0049;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Numerics" />
<Reference Include="System.Security" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AccountManager.cs" />
<Compile Include="ComponentModel.DataAnnotations\DateTimeAttribute.cs" />
<Compile Include="EmployeesManager.cs" />
<Compile Include="EquipmentsManager.cs" />
<Compile Include="Interfaces\IEmployeesManager.cs" />
<Compile Include="Interfaces\IEquipmentsManager.cs" />
<Compile Include="Interfaces\ISoftwareManager.cs" />
<Compile Include="Models\EmployeeToken.cs" />
<Compile Include="Models\EmployeeFunction.cs" />
<Compile Include="Models\EmployeeRole.cs" />
<Compile Include="Models\Role.cs" />
<Compile Include="Models\SoftwareDetails.cs" />
<Compile Include="Models\SoftwareFunction.cs" />
<Compile Include="Models\SoftwareItem.cs" />
<Compile Include="Models\SoftwareVersion.cs" />
<Compile Include="PersonalizationExtensions.cs" />
<Compile Include="Interfaces\IAccountManager.cs" />
<Compile Include="Models\Employee.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Models\PruefmittelPruefung.cs" />
<Compile Include="Repositories\EmployeesRepository.cs" />
<Compile Include="Repositories\EquipmentsRepository.cs" />
<Compile Include="Repositories\FunctionsRepository.cs" />
<Compile Include="Repositories\Interfaces\IEmployeesRepository.cs" />
<Compile Include="Repositories\Interfaces\IEquipmentsRepository.cs" />
<Compile Include="Repositories\Interfaces\IFunctionsRepository.cs" />
<Compile Include="Repositories\Interfaces\IRolesRepository.cs" />
<Compile Include="Repositories\Interfaces\ISoftwareRepository.cs" />
<Compile Include="Repositories\RolesRepository.cs" />
<Compile Include="Repositories\SoftwareRepository.cs" />
<Compile Include="SoftwareFunctions.cs" />
<Compile Include="SoftwareManager.cs" />
<Compile Include="EmployeesRoles.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LaaPackages\LaaPackages.SqlClient\LaaPackages.SqlClient.csproj">
<Project>{F90B940C-9A83-496D-AAE0-11CD02CE0A22}</Project>
<Name>LaaPackages.SqlClient</Name>
</ProjectReference>
<ProjectReference Include="..\LaaProduction.SharedModels\LaaProduction.SharedModels.csproj">
<Project>{0BF77588-2684-459D-8C71-DBBC6B05E9EE}</Project>
<Name>LaaProduction.SharedModels</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography">
<Version>2.4.0</Version>
</PackageReference>
<PackageReference Include="MailKit">
<Version>4.7.1.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions">
<Version>8.0.1</Version>
</PackageReference>
<PackageReference Include="MimeKit">
<Version>4.7.1</Version>
</PackageReference>
<PackageReference Include="System.Buffers">
<Version>4.5.1</Version>
</PackageReference>
<PackageReference Include="System.Formats.Asn1">
<Version>8.0.1</Version>
</PackageReference>
<PackageReference Include="System.Memory">
<Version>4.5.5</Version>
</PackageReference>
<PackageReference Include="System.Numerics.Vectors">
<Version>4.5.0</Version>
</PackageReference>
<PackageReference Include="System.ValueTuple">
<Version>4.5.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>del "$(TargetDir)*.pdb"
del "$(TargetDir)*.xml"</PostBuildEvent>
</PropertyGroup>
</Project>