|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net9.0</TargetFramework> |
| 4 | + <Title>SimpleInjection</Title> |
| 5 | + <TargetFrameworks>net9.0;net8.0;</TargetFrameworks> |
5 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
6 | 7 | <Nullable>enable</Nullable> |
7 | 8 |
|
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> |
14 | 15 |
|
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> |
25 | 26 | </PropertyGroup> |
26 | 27 |
|
27 | 28 | <ItemGroup> |
28 | 29 | <None Include="README.md" Pack="true" PackagePath="\" /> |
29 | 30 | <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')" /> |
31 | 35 | </ItemGroup> |
32 | 36 |
|
33 | 37 | </Project> |
0 commit comments