IoTSharp.csproj 5.7 KB
Newer Older
麦壳饼's avatar
麦壳饼 已提交
1 2 3
<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
麦壳饼's avatar
upgrade  
麦壳饼 已提交
4
    <TargetFramework>netcoreapp3.1</TargetFramework>
麦壳饼's avatar
麦壳饼 已提交
5 6
    <IncludeOpenAPIAnalyzers>true</IncludeOpenAPIAnalyzers>
    <IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>
麦壳饼's avatar
麦壳饼 已提交
7 8 9 10
    <Company>IoT#</Company>
    <Product>IoTSharp</Product>
    <Authors>IoT#</Authors>
    <PackageProjectUrl>https://github.com/IoTSharp/IoTSharp</PackageProjectUrl>
11
    <PackageLicenseUrl></PackageLicenseUrl>
麦壳饼's avatar
麦壳饼 已提交
12
    <RepositoryUrl>https://github.com/IoTSharp/IoTSharp</RepositoryUrl>
13
    <PackageReleaseNotes>Open-source IoT Platform - Device management, data collection, processing and visualization.   https://www.iotsharp.net</PackageReleaseNotes>
麦壳饼's avatar
麦壳饼 已提交
14
    <Description>Open-source IoT Platform - Device management, data collection, processing and visualization.</Description>
麦壳饼's avatar
麦壳饼 已提交
15
    <PackageId>IoTSharp</PackageId>
麦壳饼's avatar
麦壳饼 已提交
16
    <UserSecretsId>18970590-05bf-4a1f-a70b-3c8a120d12cb</UserSecretsId>
麦壳饼's avatar
version  
麦壳饼 已提交
17
    <Version>1.0.1</Version>
18 19 20
    <PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
    <RepositoryType>git</RepositoryType>
    <PackageTags>IoT</PackageTags>
麦壳饼's avatar
麦壳饼 已提交
21
    <PackageIcon>https:\avatars2.githubusercontent.com\u\200x200.png</PackageIcon>
麦壳饼's avatar
麦壳饼 已提交
22
    <ApplicationIcon>Resources\Logo.ico</ApplicationIcon>
麦壳饼's avatar
麦壳饼 已提交
23
    <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
麦壳饼's avatar
麦壳饼 已提交
24
    <PackageIconUrl />
25
    <DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
麦壳饼's avatar
麦壳饼 已提交
26
  </PropertyGroup>
27 28 29 30 31 32

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
    <DocumentationFile>D:\GitHub\IoTSharp\IoTSharp\IoTSharp\IoTSharp.xml</DocumentationFile>
    <NoWarn>1701;1702;1591</NoWarn>
  </PropertyGroup>
33
  <ItemGroup>
麦壳饼's avatar
麦壳饼 已提交
34

35
    <PackageReference Include="AspNetCore.HealthChecks.Network" Version="3.1.1" />
36

37
    <PackageReference Include="AspNetCore.HealthChecks.NpgSql" Version="3.1.1" />
麦壳饼's avatar
麦壳饼 已提交
38 39 40
    <PackageReference Include="AspNetCore.HealthChecks.System" Version="3.1.2" />
    <PackageReference Include="AspNetCore.HealthChecks.UI" Version="3.1.1" />
    <PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="3.1.1" />
41
    <PackageReference Include="AspNetCore.HealthChecks.UI.PostgreSQL.Storage" Version="3.1.1" />
麦壳饼's avatar
麦壳饼 已提交
42
    <PackageReference Include="AspNetCore.HealthChecks.Uris" Version="3.1.2" />
麦壳饼's avatar
麦壳饼 已提交
43
    <PackageReference Include="AspNetCore.HealthChecks.Network" Version="3.1.1" />
44

麦壳饼's avatar
麦壳饼 已提交
45
    <PackageReference Include="AspNetCore.HealthChecks.NpgSql" Version="3.1.1" />
46

麦壳饼's avatar
麦壳饼 已提交
47 48
    <PackageReference Include="IoTSharp.CoAP.NET" Version="2.0.8" />

49 50 51



52
    <PackageReference Include="IoTSharp.X509Extensions" Version="1.4.9" />
麦壳饼's avatar
麦壳饼 已提交
53 54 55 56 57




    <PackageReference Include="kimbus" Version="2.0.1" />
麦壳饼's avatar
麦壳饼 已提交
58
    <PackageReference Include="LiteDB" Version="5.0.8" />
麦壳饼's avatar
麦壳饼 已提交
59 60
    <PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="3.1.6" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.6">
麦壳饼's avatar
麦壳饼 已提交
61 62 63
      <PrivateAssets>all</PrivateAssets>
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
    </PackageReference>
麦壳饼's avatar
麦壳饼 已提交
64
    <PackageReference Include="Microsoft.Extensions.Options" Version="3.1.6" />
麦壳饼's avatar
麦壳饼 已提交
65
    
麦壳饼's avatar
麦壳饼 已提交
66
    <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.8" />
麦壳饼's avatar
麦壳饼 已提交
67 68
    
    <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.3" />
麦壳饼's avatar
麦壳饼 已提交
69 70 71
    <PackageReference Include="MQTTnet" Version="3.0.12-rc1" />
    <PackageReference Include="MQTTnet.AspNetCore" Version="3.0.12-rc1" />
    <PackageReference Include="MQTTnet.Extensions.Rpc" Version="3.0.12-rc1" />
麦壳饼's avatar
麦壳饼 已提交
72
    <PackageReference Include="NodaTime" Version="3.0.0" />
麦壳饼's avatar
麦壳饼 已提交
73
    <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.4" />
74
    <PackageReference Include="NSwag.AspNetCore" Version="13.6.2" />
麦壳饼's avatar
麦壳饼 已提交
75
    <PackageReference Include="ProxyKit" Version="2.3.3" />
麦壳饼's avatar
麦壳饼 已提交
76 77 78
    <PackageReference Include="Silkier" Version="1.0.121" />
    <PackageReference Include="Silkier.AspNetCore" Version="1.0.121" />
    <PackageReference Include="Silkier.EFCore" Version="1.0.121" />
麦壳饼's avatar
麦壳饼 已提交
79
    <PackageReference Include="SilkierQuartz" Version="1.0.46" />
麦壳饼's avatar
麦壳饼 已提交
80
    <PackageReference Include="System.ServiceModel.Primitives" Version="4.7.0" />
麦壳饼's avatar
麦壳饼 已提交
81
    <PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.1" />
麦壳饼's avatar
麦壳饼 已提交
82 83 84 85 86 87 88 89 90
    <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.6" />
    <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.1.6" />
    <PackageReference Include="Microsoft.AspNetCore.Hosting.WindowsServices" Version="3.1.6" />
    <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.6" />
    <PackageReference Include="Microsoft.AspNetCore.SpaServices" Version="3.1.6" />
    <PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.6" />
    <PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.6" />
    <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.1.6" />
    <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="3.1.6" />
麦壳饼's avatar
麦壳饼 已提交
91
    <PackageReference Include="MQTTnet.AspNetCoreEx" Version="3.0.11" />
麦壳饼's avatar
麦壳饼 已提交
92
    <PackageReference Include="MQTTnet.Extensions.ManagedClient" Version="3.0.12-rc1" />
麦壳饼's avatar
麦壳饼 已提交
93

94
  </ItemGroup>
麦壳饼's avatar
麦壳饼 已提交
95 96 97 98 99
  <ItemGroup>
    <Compile Remove="Migrations\**" />
    <Content Remove="Migrations\**" />
    <EmbeddedResource Remove="Migrations\**" />
    <None Remove="Migrations\**" />
麦壳饼's avatar
麦壳饼 已提交
100
    <None Remove=".gitignore" />
101
    <None Remove="healthchecksdb" />
麦壳饼's avatar
麦壳饼 已提交
102
    <None Remove="healthchecksdb-shm" />
麦壳饼's avatar
麦壳饼 已提交
103 104 105 106
    <None Include="..\docs\images\200x200.png">
      <Pack>True</Pack>
      <PackagePath></PackagePath>
    </None>
107 108 109 110
    <None Include="..\LICENSE.txt">
      <Pack>True</Pack>
      <PackagePath></PackagePath>
    </None>
麦壳饼's avatar
麦壳饼 已提交
111
    
麦壳饼's avatar
麦壳饼 已提交
112
  </ItemGroup>
麦壳饼's avatar
麦壳饼 已提交
113
</Project>