AipGateway.AIP.csproj 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{A783FDC9-3028-464B-911B-C0350345C9B3}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>AipGateway.AIP</RootNamespace>
  11. <AssemblyName>AipGateway.AIP</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Core" />
  36. <Reference Include="System.Web" />
  37. <Reference Include="System.Xml.Linq" />
  38. <Reference Include="System.Data.DataSetExtensions" />
  39. <Reference Include="Microsoft.CSharp" />
  40. <Reference Include="System.Data" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="AbstractManager.cs" />
  45. <Compile Include="AipConfig.cs" />
  46. <Compile Include="AipConstants.cs" />
  47. <Compile Include="AipFileException.cs" />
  48. <Compile Include="AipFileInfo.cs" />
  49. <Compile Include="AipFileStatus.cs" />
  50. <Compile Include="AipLabel.cs" />
  51. <Compile Include="AipTemplate.cs" />
  52. <Compile Include="AuthDelegateImplementation.cs" />
  53. <Compile Include="ConsentDelegateImplementation.cs" />
  54. <Compile Include="AipFileManager.cs" />
  55. <Compile Include="ExecutionStateImplementation.cs" />
  56. <Compile Include="FileManager.cs" />
  57. <Compile Include="PolicyManager.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <Compile Include="ProtectionManager.cs" />
  60. <Compile Include="Utilities.cs" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <PackageReference Include="log4net">
  64. <Version>2.0.17</Version>
  65. </PackageReference>
  66. <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions">
  67. <Version>8.0.0</Version>
  68. </PackageReference>
  69. <PackageReference Include="Microsoft.Identity.Client">
  70. <Version>4.61.3</Version>
  71. </PackageReference>
  72. <PackageReference Include="Microsoft.Identity.Client.Extensions.Msal">
  73. <Version>4.61.3</Version>
  74. </PackageReference>
  75. <PackageReference Include="Microsoft.InformationProtection.File">
  76. <Version>1.14.128</Version>
  77. </PackageReference>
  78. <PackageReference Include="Serilog">
  79. <Version>4.0.0</Version>
  80. </PackageReference>
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  84. Other similar extension points exist, see Microsoft.Common.targets.
  85. <Target Name="BeforeBuild">
  86. </Target>
  87. <Target Name="AfterBuild">
  88. </Target>
  89. -->
  90. </Project>