forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Waher.Runtime.Language.csproj
41 lines (35 loc) · 1.74 KB
/
Waher.Runtime.Language.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.3</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Description>Class library that helps applications with language localization.</Description>
<Copyright>Copyright © Waher Data AB 2017. All rights reserved.</Copyright>
<PackageLicenseUrl>https://github.com/PeterWaher/IoTGateway#license</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Runtime/Waher.Runtime.Language</PackageProjectUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>language localization</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
<AssemblyVersion>1.0.1</AssemblyVersion>
<FileVersion>1.0.1</FileVersion>
<Version>1.0.1</Version>
<PackageIconUrl>https://github.com/PeterWaher/IoTGateway/blob/master/Images/Icon.ico?raw=true</PackageIconUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard1.3\.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="Schema\Translation.xsd" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Schema\Translation.xsd" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Persistence\Waher.Persistence\Waher.Persistence.csproj" />
<ProjectReference Include="..\Waher.Runtime.Settings\Waher.Runtime.Settings.csproj" />
</ItemGroup>
</Project>