forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Waher.Mock.csproj
53 lines (45 loc) · 2.41 KB
/
Waher.Mock.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Description>Simplifies the creation of small networked applications.</Description>
<Copyright>Copyright © Waher Data AB 2015-2017. All rights reserved.</Copyright>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<PackageLicenseUrl>https://github.com/PeterWaher/IoTGateway#license</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Mocks/Waher.Mock</PackageProjectUrl>
<PackageIconUrl>https://github.com/PeterWaher/IoTGateway/blob/master/Images/Icon.ico?raw=true</PackageIconUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>mock networking iot app</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\Waher.Mock.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\Waher.Mock.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="Schema\SimpleComponentConfiguration.xsd" />
<None Remove="Schema\SimpleXmppConfiguration.xsd" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Schema\SimpleComponentConfiguration.xsd" />
<EmbeddedResource Include="Schema\SimpleXmppConfiguration.xsd" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gma.QrCodeNet.Encoding" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content.Xml\Waher.Content.Xml.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content.Xsl\Waher.Content.Xsl.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content\Waher.Content.csproj" />
<ProjectReference Include="..\..\Networking\Waher.Networking.XMPP\Waher.Networking.XMPP.csproj" />
<ProjectReference Include="..\..\Networking\Waher.Networking\Waher.Networking.csproj" />
</ItemGroup>
</Project>