Skip to content

Commit

Permalink
Corrected package metadata and cleaned up csproj and sln files. (#2)
Browse files Browse the repository at this point in the history
* Corrected package metadata and cleaned up csproj and sln files.

* Added missing link to GitHub page to package description.
  • Loading branch information
Timovzl authored Apr 11, 2022
1 parent 7be9a50 commit 09ac354
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 14 deletions.
4 changes: 2 additions & 2 deletions DomainModeling.Example/DomainModeling.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>Architect.DomainModeling.Example</AssemblyName>
<RootNamespace>Architect.DomainModeling.Example</RootNamespace>
<Nullable>Enable</Nullable>
<ImplicitUsings>Enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand All @@ -16,6 +14,8 @@
<!-- CS1591: Missing XML comment for publicly visible type -->
<NoWarn>CA1822,CS1573,CS1591</NoWarn>
<LangVersion>10</LangVersion>
<Nullable>Enable</Nullable>
<ImplicitUsings>Enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions DomainModeling.Generator/DomainModeling.Generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Architect.DomainModeling.Generator</AssemblyName>
<RootNamespace>Architect.DomainModeling.Generator</RootNamespace>
<Nullable>Enable</Nullable>
<ImplicitUsings>Enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>

<PropertyGroup>
<!-- IDE0057: Slice can be simplified -->
<NoWarn>IDE0057</NoWarn>
<LangVersion>10</LangVersion>
<Nullable>Enable</Nullable>
<ImplicitUsings>Enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion DomainModeling.Tests/DomainModeling.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>Architect.DomainModeling.Tests</AssemblyName>
<RootNamespace>Architect.DomainModeling.Tests</RootNamespace>
<ImplicitUsings>Enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand All @@ -14,6 +13,7 @@
<!-- CS1591: Missing XML comment for publicly visible type -->
<NoWarn>CA1822,CS1573,CS1591</NoWarn>
<LangVersion>10</LangVersion>
<ImplicitUsings>Enable</ImplicitUsings>
</PropertyGroup>

<PropertyGroup>
Expand Down
10 changes: 6 additions & 4 deletions DomainModeling.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DomainModeling.Generator",
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{08DABA83-2014-4A2F-A584-B5FFA6FEA45D}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
pipeline-publish-preview.yml = pipeline-publish-preview.yml
pipeline-publish-stable.yml = pipeline-publish-stable.yml
pipeline-verify.yml = pipeline-verify.yml
README.md = README.md
LICENSE = LICENSE
EndProjectSection
EndProject
Global
Expand All @@ -25,6 +27,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{66195298-4899-4F4E-BE32-0FC7B697C343}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{66195298-4899-4F4E-BE32-0FC7B697C343}.Debug|Any CPU.Build.0 = Debug|Any CPU
{66195298-4899-4F4E-BE32-0FC7B697C343}.Release|Any CPU.ActiveCfg = Release|Any CPU
{66195298-4899-4F4E-BE32-0FC7B697C343}.Release|Any CPU.Build.0 = Release|Any CPU
{CEFD6067-C690-4B97-9F52-98EB9220233C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CEFD6067-C690-4B97-9F52-98EB9220233C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CEFD6067-C690-4B97-9F52-98EB9220233C}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -37,10 +43,6 @@ Global
{F4035B17-3F4B-4298-A68E-AD3B730A4DB6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4035B17-3F4B-4298-A68E-AD3B730A4DB6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4035B17-3F4B-4298-A68E-AD3B730A4DB6}.Release|Any CPU.Build.0 = Release|Any CPU
{66195298-4899-4F4E-BE32-0FC7B697C343}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{66195298-4899-4F4E-BE32-0FC7B697C343}.Debug|Any CPU.Build.0 = Debug|Any CPU
{66195298-4899-4F4E-BE32-0FC7B697C343}.Release|Any CPU.ActiveCfg = Release|Any CPU
{66195298-4899-4F4E-BE32-0FC7B697C343}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
19 changes: 14 additions & 5 deletions DomainModeling/DomainModeling.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
<TargetFrameworks>net6.0;net5.0</TargetFrameworks>
<AssemblyName>Architect.DomainModeling</AssemblyName>
<RootNamespace>Architect.DomainModeling</RootNamespace>
<Nullable>Enable</Nullable>
<ImplicitUsings>Enable</ImplicitUsings>
<Version>1.0.0</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -16,12 +12,25 @@
<!-- CS1591: Missing XML comment for publicly visible type -->
<NoWarn>CA1822,CS1573,CS1591</NoWarn>
<LangVersion>10</LangVersion>
<Nullable>Enable</Nullable>
<ImplicitUsings>Enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>1.0.1</VersionPrefix>
<Description>
For Domain-Driven Design (DDD), this package provides tools for implementing domain models, such as base types and source generators.
For Domain-Driven Design (DDD), this package provides tools for implementing domain models, such as base types and source generators.

https://github.com/TheArchitectDev/Architect.DomainModeling
</Description>
<Copyright>The Architect</Copyright>
<Company>The Architect</Company>
<Authors>TheArchitectDev, Timovzl</Authors>
<RepositoryUrl>https://github.com/TheArchitectDev/Architect.AmbientContexts</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>DDD, Domain-Driven Design, Entity, ValueObject, domain, modeling, source, generator</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 09ac354

Please sign in to comment.