forked from duosecurity/duo_api_csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
duo_api_csharp.csproj
89 lines (89 loc) · 3.98 KB
/
duo_api_csharp.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
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{6E96C9D9-0825-4D26-83C7-8A62180F8FB9}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ClassLibrary</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</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>
<Prefer32Bit>false</Prefer32Bit>
</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>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>duo_api_csharp</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<None Include=".gitignore" />
<None Include=".vs\duo_api_csharp\v15\.suo" />
<None Include=".vs\duo_api_csharp\v15\Server\sqlite3\db.lock" />
<None Include=".vs\duo_api_csharp\v15\Server\sqlite3\storage.ide" />
<None Include=".vs\ProjectSettings.json" />
<None Include=".vs\slnx.sqlite" />
<None Include=".vs\VSWorkspaceState.json" />
<None Include="examples\Makefile" />
<None Include="README.md" />
<None Include="test\.gitignore" />
<None Include="test\Makefile" />
<None Include="test\obj\Debug\DuoApiTest.csproj.CoreCompileInputs.cache" />
<None Include="test\obj\Release\DesignTimeResolveAssemblyReferencesInput.cache" />
<None Include="test\obj\Release\DuoApiTest.csproj.CoreCompileInputs.cache" />
<None Include="test\obj\Release\DuoApiTest.csprojResolveAssemblyReference.cache" />
</ItemGroup>
<ItemGroup>
<Compile Include="Duo.cs" />
<Compile Include="examples\DuoAdmin.cs" />
<Compile Include="test\ApiCallTest.cs" />
<Compile Include="test\Properties\AssemblyInfo.cs" />
<Compile Include="test\QueryParamsTest.cs" />
<Compile Include="test\SigningTest.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="test\DuoApiTest.csproj" />
<Content Include="test\DuoApiTest.sln" />
<Content Include="test\obj\Debug\DuoApiTest.csproj.FileListAbsolute.txt" />
<Content Include="test\obj\Release\DuoApiTest.csproj.FileListAbsolute.txt" />
</ItemGroup>
<ItemGroup>
<Folder Include="test\bin\Debug\" />
<Folder Include="test\bin\Release\" />
<Folder Include="test\Connected Services\" />
<Folder Include="test\obj\Debug\TempPE\" />
<Folder Include="test\obj\Release\TempPE\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
</Project>