-
Notifications
You must be signed in to change notification settings - Fork 1
/
MySQLCLRFunctions.csproj
103 lines (103 loc) · 4.59 KB
/
MySQLCLRFunctions.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?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>{6AEAE0BF-82E7-4793-8E9D-E649ABD0A807}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MySQLCLRFunctions</RootNamespace>
<AssemblyName>MySQLCLRFunctions</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<LangVersion>8.0</LangVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</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>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
</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>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Transactions" />
<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="ActiveDirectory.cs" />
<Compile Include="Adaptors.cs" />
<Compile Include="AssemblyTools.cs" />
<Compile Include="CharacterExtract.cs" />
<Compile Include="CharacterTest.cs" />
<Compile Include="CharacterTransform.cs" />
<Compile Include="Compares.cs" />
<Compile Include="Environmental.cs" />
<Compile Include="FileNameExtract.cs" />
<Compile Include="Files.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Humanization.cs" />
<Compile Include="NetworkCollect.cs" />
<Compile Include="NetworkTest.cs" />
<Compile Include="StackExtract.cs" />
<Compile Include="StringAggregate.cs" />
<Compile Include="StringCastIntoStruct\FullPersonsNameParseOut.cs" />
<Compile Include="StringSplit.cs" />
<Compile Include="_NewFunctionsToTry.cs" />
<Compile Include="_SharedConstants.cs" />
<Compile Include="StringBuildOut.cs" />
<Compile Include="StringDecode.cs" />
<Compile Include="StringExtract.cs" />
<Compile Include="StringFormat.cs" />
<Compile Include="StringMeasure.cs" />
<Compile Include="StringPivot.cs" />
<Compile Include="StringReduce.cs" />
<Compile Include="StringTest.cs" />
<Compile Include="StringTransform.cs" />
<Compile Include="StringReduceCustomizations.cs" />
<Compile Include="StringTransformCustomizations.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="_VERIFY_CSHARP8.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Collections">
<Version>4.3.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include=".editorconfig" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Choose>
<When Condition="$(TargetFrameworkIdentifier) == '.NETCoreApp' And $(TargetFrameworkVersion) == 'v3.1'">
<PropertyGroup>
<__paket__xunit_runner_visualstudio_props>netcoreapp2.1\xunit.runner.visualstudio</__paket__xunit_runner_visualstudio_props>
</PropertyGroup>
</When>
</Choose>
<Import Project="..\..\..\..\.nuget\packages\xunit.runner.visualstudio\2.4.3\build\$(__paket__xunit_runner_visualstudio_props).props" Condition="Exists('..\..\..\..\.nuget\packages\xunit.runner.visualstudio\2.4.3\build\$(__paket__xunit_runner_visualstudio_props).props')" Label="Paket" />
</Project>