Skip to content

Commit db0cf86

Browse files
committed
project nuget setup
1 parent 9014888 commit db0cf86

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

SimpleInjection/SimpleInjection.csproj

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@
44
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7+
8+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9+
<PackageId>SimpleInjection</PackageId>
10+
<Version>1.0.0</Version>
11+
<Authors>Derek Gooding</Authors>
12+
<Description>A library for adding lightweight Dependancy Injection to any C# project.</Description>
13+
<PackageTags>CSharp Tools</PackageTags>
14+
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16+
<PackageReadmeFile>README.md</PackageReadmeFile>
17+
<PackageProjectUrl>https://github.com/DerekGooding/SimpleInjection</PackageProjectUrl>
18+
<RepositoryUrl>https://github.com/DerekGooding/SimpleInjection</RepositoryUrl>
19+
<PackageBugTrackerUrl>https://github.com/DerekGooding/SimpleInjection/issues</PackageBugTrackerUrl>
20+
<RepositoryType>git</RepositoryType>
21+
22+
<!--<PackageIcon>icon.png</PackageIcon>-->
23+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
24+
<DocumentationFile>bin\SimpleInjection.xml</DocumentationFile>
725
</PropertyGroup>
826

27+
<ItemGroup>
28+
<None Include="$(MSBuildThisFileDirectory)../EnumSourceGenerator/bin/Release/netstandard2.0/EnumSourceGenerator.dll"
29+
Pack="true"
30+
PackagePath="analyzers/dotnet/cs/"
31+
Condition="Exists('$(MSBuildThisFileDirectory)../EnumSourceGenerator/bin/Release/netstandard2.0/EnumSourceGenerator.dll')" />
32+
</ItemGroup>
33+
934
</Project>

0 commit comments

Comments
 (0)