fcs-utils/FCS.Lib.Utility.csproj

84 lines
3.1 KiB
XML
Raw Normal View History

2020-10-19 11:22:06 +02:00
<?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>
2021-11-06 11:16:18 +01:00
<LangVersion>9.0</LangVersion>
2020-10-19 11:22:06 +02:00
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1F1FECFD-E07E-4B5C-A7F9-67FB89EE94A3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
2022-02-24 11:40:38 +01:00
<RootNamespace>FCS.Lib.Utility</RootNamespace>
<AssemblyName>FCS.Lib.Utility</AssemblyName>
2020-10-19 11:22:06 +02:00
<TargetFrameworkVersion>v4.8</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>
</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>
2021-11-06 11:16:18 +01:00
<PropertyGroup>
2022-01-01 17:23:53 +01:00
<SignAssembly>false</SignAssembly>
2021-11-06 11:16:18 +01:00
</PropertyGroup>
<PropertyGroup>
2022-01-01 17:23:53 +01:00
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
2021-11-06 11:16:18 +01:00
</PropertyGroup>
2020-10-19 11:22:06 +02:00
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ExtensionsEx.cs" />
<Compile Include="Generators.cs" />
2022-07-04 18:27:05 +02:00
<Compile Include="GuidGenerator.cs" />
<Compile Include="GuidVersion.cs" />
2020-10-19 11:22:06 +02:00
<Compile Include="IRepository.cs" />
2021-11-06 11:16:18 +01:00
<Compile Include="IAsyncReadonlyRepo.cs" />
2020-10-19 11:22:06 +02:00
<Compile Include="IRepositoryEx.cs" />
2022-04-19 18:27:44 +02:00
<Compile Include="Properties\AssemblyInfo.cs" />
2022-04-06 12:02:25 +02:00
<Compile Include="VatFormatValidator.cs" />
2022-07-04 18:27:05 +02:00
<Compile Include="Mogrify.cs" />
2022-01-01 17:22:01 +01:00
<Compile Include="QueryHelper.cs" />
2020-10-19 11:22:06 +02:00
<Compile Include="StringOptions.cs" />
<Compile Include="Squid.cs" />
</ItemGroup>
2021-11-06 11:16:18 +01:00
<ItemGroup>
2022-02-24 10:11:45 +01:00
<None Include="LICENSE" />
2022-04-03 11:20:55 +02:00
<None Include="README.md" />
2021-11-06 11:16:18 +01:00
</ItemGroup>
2020-10-19 11:22:06 +02:00
<ItemGroup>
<Content Include=".gitignore" />
</ItemGroup>
2021-11-09 10:51:55 +01:00
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
2022-04-19 18:27:44 +02:00
<ItemGroup />
2020-10-19 11:22:06 +02:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
2022-04-19 18:27:44 +02:00
<PreBuildEvent>
</PreBuildEvent>
2020-10-19 11:22:06 +02:00
</PropertyGroup>
</Project>