-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1118a8
commit 1bdbf08
Showing
5 changed files
with
156 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,46 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<Title>WoT.Net</Title> | ||
<VersionPrefix>0.0.1</VersionPrefix> | ||
<VersionSuffix>alpha</VersionSuffix> | ||
<PackageVersion>$(VersionPrefix)-$(VersionSuffix)</PackageVersion> | ||
<Authors>Fady Salama, Idil Szegin</Authors> | ||
<Company>Technical University of Munich, Professorship of Embedded Systems and Internet of Things</Company> | ||
<PackageId>WoT.Net</PackageId> | ||
<Product>WoT.Net</Product> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageProjectUrl>https://github.com/tum-esi/WoT.Net</PackageProjectUrl> | ||
<Description>A .NET Standard 2.0 implementation of the W3C Web of Things (WoT) Scripting API</Description> | ||
<RepositoryUrl>https://github.com/tum-esi/WoT.Net</RepositoryUrl> | ||
<PackageIcon>wot_dot_net_logo.png</PackageIcon> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageTags>Web of Things; WoT; IoT; HTTP</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.15" /> | ||
<PackageReference Include="Tavis.UriTemplates" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="docGeneration\images\wot_dot_net_logo.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.8.34316.72 | ||
VisualStudioVersion = 17.8.34511.84 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WoT", "WoT.csproj", "{B6560709-AB2A-46A8-8999-659D779E3420}" | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WoT", "WoT.csproj", "{A15CE721-A44F-42A1-8744-974E7724C7E9}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{B6560709-AB2A-46A8-8999-659D779E3420}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B6560709-AB2A-46A8-8999-659D779E3420}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B6560709-AB2A-46A8-8999-659D779E3420}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B6560709-AB2A-46A8-8999-659D779E3420}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{A15CE721-A44F-42A1-8744-974E7724C7E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{A15CE721-A44F-42A1-8744-974E7724C7E9}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{A15CE721-A44F-42A1-8744-974E7724C7E9}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{A15CE721-A44F-42A1-8744-974E7724C7E9}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {BA1934F5-1059-4198-A805-AE11BD17C441} | ||
SolutionGuid = {D84C53D0-CECB-4F2C-A926-C2E2084B139D} | ||
EndGlobalSection | ||
EndGlobal |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.