-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fully filled out all project files. Added Stringier meta-package. Bum…
…ped all versions to v2.0
- Loading branch information
Showing
10 changed files
with
256 additions
and
19 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,9 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<RootNamespace>Stringier</RootNamespace> | ||
<AssemblyName>Stringier.Core</AssemblyName> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Authors>Patrick Kelly</Authors> | ||
<Description>Core library holding all code common to all Stringier subprojects</Description> | ||
<Copyright>2019</Copyright> | ||
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/Entomy/Stringier</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Entomy/Stringier</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags /> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageIcon>Logo.png</PackageIcon> | ||
<Version>2.0.0</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\Logo.png" Pack="true" Visible="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Stringier | ||
|
||
This project is just for automatically creating a meta-package on build, which pulls in all (non auxillary) subprojects when depended on. That's it. There should never be code in here. |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Authors>Patrick Kelly</Authors> | ||
<Version>2.0</Version> | ||
<Description>Meta package for all (non auxillary) Stringier subprojects</Description> | ||
<Copyright>2019</Copyright> | ||
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression> | ||
<PackageTags>stringier</PackageTags> | ||
<RepositoryUrl>https://github.com/Entomy/Stringier</RepositoryUrl> | ||
<PackageProjectUrl>https://github.com/Entomy/Stringier</PackageProjectUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Core\Core.csproj" /> | ||
<ProjectReference Include="..\Extensions\Extensions.csproj" /> | ||
<ProjectReference Include="..\Patterns\Patterns.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\Logo.png" Pack="true" Visible="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
</Project> |