-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #359 from WildernessLabs/proj-metadata
Update project metadata
- Loading branch information
Showing
13 changed files
with
125 additions
and
100 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,29 +1,31 @@ | ||
<Project Sdk="Meadow.Sdk/1.1.0"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>Meadow</AssemblyName> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/</PackageProjectUrl> | ||
<PackageId>Meadow</PackageId> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Core</RepositoryUrl> | ||
<PackageTags>Meadow</PackageTags> | ||
<Version>0.23.0</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<RootNamespace>Meadow</RootNamespace> | ||
<Nullable>enable</Nullable> | ||
<Description>Core .NET libraries for Wilderness Labs Meadow</Description> | ||
<LangVersion>10</LangVersion> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\icon.png" Link="icon.png" Pack="true" PackagePath="" /> | ||
<PropertyGroup> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>Meadow</AssemblyName> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/</PackageProjectUrl> | ||
<PackageId>Meadow</PackageId> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Core</RepositoryUrl> | ||
<PackageTags>Meadow</PackageTags> | ||
<Version>0.23.0</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<RootNamespace>Meadow</RootNamespace> | ||
<Nullable>enable</Nullable> | ||
<Description>Core .NET libraries for Wilderness Labs Meadow</Description> | ||
<LangVersion>10.0</LangVersion> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\icon.png" Link="icon.png" Pack="true" PackagePath="" /> | ||
<ProjectReference Include="..\..\..\Meadow.Contracts\Source\Meadow.Contracts\Meadow.Contracts.csproj" /> | ||
<ProjectReference Include="..\..\..\Meadow.Modbus\src\Meadow.Modbus\Meadow.Modbus.csproj" /> | ||
<ProjectReference Include="..\..\..\MQTTnet\Source\MQTTnet\MQTTnet.csproj" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" /> | ||
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="2.2.0" /> | ||
</ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" /> | ||
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="2.2.0" /> | ||
</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
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
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,21 +1,23 @@ | ||
<Project Sdk="Meadow.Sdk/1.1.0"> | ||
<PropertyGroup> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<LangVersion>10.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TargetFramework>net472</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>App</AssemblyName> | ||
<Configurations>Release;Debug</Configurations> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\Meadow.Core\Meadow.Core.csproj" /> | ||
</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
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
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
6 changes: 5 additions & 1 deletion
6
...plementations/simulation/Meadow.Simulation.Unit.Tests/Meadow.Simulation.Unit.Tests.csproj
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
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
11 changes: 6 additions & 5 deletions
11
source/implementations/simulation/SimulatedApp/SimulatedApp.csproj
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,19 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<LangVersion>10.0</LangVersion> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<AssemblyName>App</AssemblyName> | ||
<AssemblyName>App</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Meadow.Modbus" Version="0.29.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Meadow.Simulation\Meadow.Simulation.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
4 changes: 4 additions & 0 deletions
4
source/implementations/windows/Meadow.Windows/Meadow.Windows.csproj
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
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,30 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<LangVersion>10.0</LangVersion> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<AssemblyName>Meadow.Avalonia</AssemblyName> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.Core/</PackageProjectUrl> | ||
<PackageId>Meadow.Avalonia</PackageId> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Core</RepositoryUrl> | ||
<PackageTags>Meadow,Meadow.Avalonia,Avalonia</PackageTags> | ||
<Version>0.9.54</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Description>Utility library for aiding in using Wilderness Labs' Meadow stack in an Avalonia application</Description> | ||
<AssemblyName>Meadow.Avalonia</AssemblyName> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.Core/</PackageProjectUrl> | ||
<PackageId>Meadow.Avalonia</PackageId> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Core</RepositoryUrl> | ||
<PackageTags>Meadow,Meadow.Avalonia,Avalonia</PackageTags> | ||
<Version>0.9.54</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Description>Utility library for aiding in using Wilderness Labs' Meadow stack in an Avalonia application</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Avalonia" Version="0.10.18" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\icon.png" Pack="true" PackagePath="" /> | ||
<ProjectReference Include="..\..\Meadow.Core\Meadow.Core.csproj" /> | ||
<None Include="..\..\icon.png" Pack="true" PackagePath="" /> | ||
<ProjectReference Include="..\..\Meadow.Core\Meadow.Core.csproj" /> | ||
</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,31 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041</TargetFrameworks> | ||
<UseMaui>true</UseMaui> | ||
<SingleProject>true</SingleProject> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained> | ||
|
||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> | ||
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> | ||
<AssemblyName>Meadow.Maui</AssemblyName> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.Core/</PackageProjectUrl> | ||
<PackageId>Meadow.Maui</PackageId> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Core</RepositoryUrl> | ||
<PackageTags>Meadow,Meadow.Maui,MAUI</PackageTags> | ||
<Version>0.9.54</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Description>Utility library for aiding in using Wilderness Labs' Meadow stack in a MAUI application</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\icon.png" Pack="true" PackagePath="" /> | ||
<ProjectReference Include="..\..\implementations\windows\Meadow.Windows\Meadow.Windows.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<LangVersion>10.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041</TargetFrameworks> | ||
<UseMaui>true</UseMaui> | ||
<SingleProject>true</SingleProject> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> | ||
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> | ||
<AssemblyName>Meadow.Maui</AssemblyName> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.Core/</PackageProjectUrl> | ||
<PackageId>Meadow.Maui</PackageId> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Core</RepositoryUrl> | ||
<PackageTags>Meadow,Meadow.Maui,MAUI</PackageTags> | ||
<Version>0.9.54</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Description>Utility library for aiding in using Wilderness Labs' Meadow stack in a MAUI application</Description> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\..\icon.png" Pack="true" PackagePath="" /> | ||
<ProjectReference Include="..\..\implementations\windows\Meadow.Windows\Meadow.Windows.csproj" /> | ||
</ItemGroup> | ||
</Project> |