Skip to content

Commit 3df918f

Browse files
committed
Include .net8 support
1 parent 02e5820 commit 3df918f

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed
Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,37 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<Title>SimpleInjection</Title>
5+
<TargetFrameworks>net9.0;net8.0;</TargetFrameworks>
56
<ImplicitUsings>enable</ImplicitUsings>
67
<Nullable>enable</Nullable>
78

8-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9-
<PackageId>SimpleInjection</PackageId>
10-
<Version>0.9.3</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>
9+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10+
<PackageId>SimpleInjection</PackageId>
11+
<Version>0.9.5</Version>
12+
<Authors>Derek Gooding</Authors>
13+
<Description>A library for adding lightweight Dependancy Injection to any C# project.</Description>
14+
<PackageTags>CSharp Tools</PackageTags>
1415

15-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16-
<PackageProjectUrl>https://github.com/DerekGooding/SimpleInjection</PackageProjectUrl>
17-
<RepositoryUrl>https://github.com/DerekGooding/SimpleInjection</RepositoryUrl>
18-
<PackageBugTrackerUrl>https://github.com/DerekGooding/SimpleInjection/issues</PackageBugTrackerUrl>
19-
<RepositoryType>git</RepositoryType>
20-
<PackageIcon>icon.png</PackageIcon>
21-
<PackageReadmeFile>README.md</PackageReadmeFile>
22-
23-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
24-
<DocumentationFile>bin\SimpleInjection.xml</DocumentationFile>
16+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17+
<PackageReadmeFile>README.md</PackageReadmeFile>
18+
<PackageProjectUrl>https://github.com/DerekGooding/SimpleInjection</PackageProjectUrl>
19+
<RepositoryUrl>https://github.com/DerekGooding/SimpleInjection</RepositoryUrl>
20+
<PackageBugTrackerUrl>https://github.com/DerekGooding/SimpleInjection/issues</PackageBugTrackerUrl>
21+
<RepositoryType>git</RepositoryType>
22+
23+
<PackageIcon>icon.png</PackageIcon>
24+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
25+
<DocumentationFile>bin\SimpleInjection.xml</DocumentationFile>
2526
</PropertyGroup>
2627

2728
<ItemGroup>
2829
<None Include="README.md" Pack="true" PackagePath="\" />
2930
<Resource Include="icon.png" Pack="true" PackagePath="icon.png" />
30-
<None Include="$(MSBuildThisFileDirectory)../EnumSourceGenerator/bin/Release/netstandard2.0/EnumSourceGenerator.dll" Pack="true" PackagePath="analyzers/dotnet/cs/" Condition="Exists('$(MSBuildThisFileDirectory)../EnumSourceGenerator/bin/Release/netstandard2.0/EnumSourceGenerator.dll')" />
31+
<None Include="$(MSBuildThisFileDirectory)../EnumSourceGenerator/bin/Release/netstandard2.0/EnumSourceGenerator.dll"
32+
Pack="true"
33+
PackagePath="analyzers/dotnet/cs/"
34+
Condition="Exists('$(MSBuildThisFileDirectory)../EnumSourceGenerator/bin/Release/netstandard2.0/EnumSourceGenerator.dll')" />
3135
</ItemGroup>
3236

3337
</Project>

0 commit comments

Comments
 (0)