-
Notifications
You must be signed in to change notification settings - Fork 24
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 #110 from torressa/fix108
v1.0.3
- Loading branch information
Showing
55 changed files
with
3,699 additions
and
812 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
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
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ xml | |
*.o | ||
*.so | ||
*.sw* | ||
*.DS_Store |
This file was deleted.
Oops, something went wrong.
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
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,8 +1,8 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks> | ||
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers> | ||
@DOTNET_TFM@ | ||
<RuntimeIdentifier>@RUNTIME_IDENTIFIER@</RuntimeIdentifier> | ||
<AssemblyName>@DOTNET_PROJECT@</AssemblyName> | ||
<Version>@PROJECT_VERSION@</Version> | ||
|
||
|
@@ -26,16 +26,19 @@ | |
<ItemGroup> | ||
<RuntimeLinux Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
<RuntimeOsx Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
<RuntimeOsxArm Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
<RuntimeWin Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
</ItemGroup> | ||
<Message Importance="high" Text="Package @[email protected]: found" Condition="Exists('@(RuntimeLinux)')"/> | ||
<Message Importance="high" Text="------- $(OS) "/> | ||
<Message Importance="high" Text="Package @[email protected]: not found" Condition="!Exists('@(RuntimeLinux)')"/> | ||
<Message Importance="high" Text="Package @[email protected]: found" Condition="Exists('@(RuntimeOsxArm)')"/> | ||
<Message Importance="high" Text="Package @[email protected]: not found" Condition="!Exists('@(RuntimeOsxArm)')"/> | ||
<Message Importance="high" Text="Package @[email protected]: found" Condition="Exists('@(RuntimeOsx)')"/> | ||
<Message Importance="high" Text="Package @[email protected]: not found" Condition="!Exists('@(RuntimeOsx)')"/> | ||
<Message Importance="high" Text="Package @[email protected]: found" Condition="Exists('@(RuntimeWin)')"/> | ||
<Message Importance="high" Text="Package @[email protected]: not found" Condition="!Exists('@(RuntimeWin)')"/> | ||
<Error Text="You must locally 'dotnet pack' at least one @[email protected].{rid} Project." Condition="!Exists('@(RuntimeLinux)') AND !Exists('@(RuntimeOsx)') AND !Exists('@(RuntimeWin)')"/> | ||
<Error Text="You must locally 'dotnet pack' at least one @[email protected].{rid} Project." Condition="!Exists('@(RuntimeLinux)') AND !Exists('@(RuntimeOsx)') AND !Exists('@(RuntimeWin)') AND !Exists('@(RuntimeOsxArm)')"/> | ||
</Target> | ||
|
||
<!-- Need to add required runtime dependencies so Meta-Project will pull runtime Nuget(s) --> | ||
|
@@ -47,9 +50,11 @@ | |
<ItemGroup> | ||
<RuntimeLinux Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
<RuntimeOsx Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
<RuntimeOsxArm Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
<RuntimeWin Include="@DOTNET_PACKAGES_DIR@/@[email protected].*.nupkg"/> | ||
<PackageReference Include="@[email protected]" Version="@PROJECT_VERSION@" Condition="Exists('@(RuntimeLinux)')"/> | ||
<PackageReference Include="@[email protected]" Version="@PROJECT_VERSION@" Condition="Exists('@(RuntimeOsx)')" /> | ||
<PackageReference Include="@[email protected]" Version="@PROJECT_VERSION@" Condition="Exists('@(RuntimeOsxArm)')" /> | ||
<PackageReference Include="@[email protected]" Version="@PROJECT_VERSION@" Condition="Exists('@(RuntimeWin)')" /> | ||
</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
Oops, something went wrong.