Blame view

antis-ncc-net-core/src/Infrastructure/NCC/NCC.Code.csproj 1.83 KB
4aba9b59   wwk   1
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
  <Project Sdk="Microsoft.NET.Sdk">
  
  	<PropertyGroup>
  		<TargetFramework>net5.0</TargetFramework>
  		<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  	</PropertyGroup>
  
  	<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  		<DocumentationFile>bin\Debug\$(AssemblyName).xml</DocumentationFile>
  	</PropertyGroup>
  
  	<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  		<DocumentationFile>bin\Release\$(AssemblyName).xml</DocumentationFile>
  	</PropertyGroup>
  
  	<ItemGroup>
  		<None Remove="SpecificationDocument\Assets\index-mini-profiler.html" />
  		<None Remove="SpecificationDocument\Assets\index.html" />
  	</ItemGroup>
  
  	<ItemGroup>
  		<EmbeddedResource Include="SpecificationDocument\Assets\index-mini-profiler.html" />
  		<EmbeddedResource Include="SpecificationDocument\Assets\index.html" />
  	</ItemGroup>
  
  	<ItemGroup>
  		<FrameworkReference Include="Microsoft.AspNetCore.App" />
  	</ItemGroup>
  
  	<ItemGroup>
  		<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
  		<PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="5.0.10" />
  		<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.11.0" />
  		<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="5.0.0" />
  		<PackageReference Include="QRCoder" Version="1.4.3" />
  		<PackageReference Include="System.Text.Json" Version="5.0.2" />
  
  		<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.10" />
  		<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.2.22" />
  		<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.1" />
  		<PackageReference Include="ThoughtWorks.QRCode.Standard" Version="1.0.1.6" />
  		<PackageReference Include="zxing-core" Version="0.14.0.2" />
  		<PackageReference Include="ZXing.Net" Version="0.16.8" />
  	</ItemGroup>
  
  </Project>