parent
d7503ba68d
commit
d7ae46bb17
2 changed files with 70 additions and 70 deletions
@ -1,45 +1,45 @@ |
|||||||
<Project Sdk="Microsoft.NET.Sdk"> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||||
|
|
||||||
<PropertyGroup> |
<PropertyGroup> |
||||||
<TargetFramework>net10.0</TargetFramework> |
<TargetFramework>net10.0</TargetFramework> |
||||||
<Authors>SimonG</Authors> |
<Authors>SimonG</Authors> |
||||||
<Copyright>Copyright(c) 2025 SimonG. All Rights Reserved.</Copyright> |
<Copyright>Copyright(c) 2025 SimonG. All Rights Reserved.</Copyright> |
||||||
<Description>A lightweight IOC Container Validator.</Description> |
<Description>A lightweight IOC Container Validator.</Description> |
||||||
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl> |
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl> |
||||||
<LangVersion>latest</LangVersion> |
<LangVersion>latest</LangVersion> |
||||||
<Nullable>enable</Nullable> |
<Nullable>enable</Nullable> |
||||||
<ImplicitUsings>enable</ImplicitUsings> |
<ImplicitUsings>enable</ImplicitUsings> |
||||||
<DocumentationFile>LightweightIocContainer.Validation.xml</DocumentationFile> |
<DocumentationFile>LightweightIocContainer.Validation.xml</DocumentationFile> |
||||||
<VersionPrefix>5.0.0</VersionPrefix> |
<VersionPrefix>5.0.0</VersionPrefix> |
||||||
</PropertyGroup> |
</PropertyGroup> |
||||||
|
|
||||||
<PropertyGroup> |
<PropertyGroup> |
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
||||||
<PackageProjectUrl>https://github.com/SimonG96/LightweightIocContainer</PackageProjectUrl> |
<PackageProjectUrl>https://github.com/SimonG96/LightweightIocContainer</PackageProjectUrl> |
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression> |
<PackageLicenseExpression>MIT</PackageLicenseExpression> |
||||||
<PackageReadmeFile>README.md</PackageReadmeFile> |
<PackageReadmeFile>README.md</PackageReadmeFile> |
||||||
<IncludeSymbols>true</IncludeSymbols> |
<IncludeSymbols>true</IncludeSymbols> |
||||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> |
<SymbolPackageFormat>snupkg</SymbolPackageFormat> |
||||||
</PropertyGroup> |
</PropertyGroup> |
||||||
|
|
||||||
<ItemGroup> |
<ItemGroup> |
||||||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> |
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> |
||||||
<PrivateAssets>all</PrivateAssets> |
<PrivateAssets>all</PrivateAssets> |
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||||
</PackageReference> |
</PackageReference> |
||||||
<PackageReference Include="NSubstitute" Version="5.3.0" /> |
<PackageReference Include="NSubstitute" Version="5.3.0" /> |
||||||
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" /> |
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" /> |
||||||
</ItemGroup> |
</ItemGroup> |
||||||
|
|
||||||
<ItemGroup> |
<ItemGroup> |
||||||
<Content Include="README.md" Pack="true" PackagePath="" /> |
<Content Include="README.md" Pack="true" PackagePath="" /> |
||||||
</ItemGroup> |
</ItemGroup> |
||||||
|
|
||||||
<ItemGroup Condition="Exists('..\LightweightIocContainer\LightweightIocContainer.csproj')"> |
<ItemGroup Condition="Exists('..\LightweightIocContainer\LightweightIocContainer.csproj')"> |
||||||
<ProjectReference Include="..\LightweightIocContainer\LightweightIocContainer.csproj" /> |
<ProjectReference Include="..\LightweightIocContainer\LightweightIocContainer.csproj" /> |
||||||
</ItemGroup> |
</ItemGroup> |
||||||
<ItemGroup Condition="!Exists('..\LightweightIocContainer\LightweightIocContainer.csproj')"> |
<ItemGroup Condition="!Exists('..\LightweightIocContainer\LightweightIocContainer.csproj')"> |
||||||
<PackageReference Include="LightweightIocContainer" Version="$(Version)" /> |
<PackageReference Include="LightweightIocContainer" Version="$(Version)" /> |
||||||
</ItemGroup> |
</ItemGroup> |
||||||
|
|
||||||
</Project> |
</Project> |
||||||
@ -1,38 +1,38 @@ |
|||||||
<Project Sdk="Microsoft.NET.Sdk"> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||||
|
|
||||||
<PropertyGroup> |
<PropertyGroup> |
||||||
<TargetFramework>net10.0</TargetFramework> |
<TargetFramework>net10.0</TargetFramework> |
||||||
<Authors>SimonG</Authors> |
<Authors>SimonG</Authors> |
||||||
<Copyright>Copyright(c) 2025 SimonG. All Rights Reserved.</Copyright> |
<Copyright>Copyright(c) 2025 SimonG. All Rights Reserved.</Copyright> |
||||||
<Description>A lightweight IOC Container that is powerful enough to do all the things you need it to do.</Description> |
<Description>A lightweight IOC Container that is powerful enough to do all the things you need it to do.</Description> |
||||||
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl> |
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl> |
||||||
<LangVersion>latest</LangVersion> |
<LangVersion>latest</LangVersion> |
||||||
<Nullable>enable</Nullable> |
<Nullable>enable</Nullable> |
||||||
<ImplicitUsings>enable</ImplicitUsings> |
<ImplicitUsings>enable</ImplicitUsings> |
||||||
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile> |
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile> |
||||||
<VersionPrefix>5.0.0</VersionPrefix> |
<VersionPrefix>5.0.0</VersionPrefix> |
||||||
</PropertyGroup> |
</PropertyGroup> |
||||||
|
|
||||||
<PropertyGroup> |
<PropertyGroup> |
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
||||||
<PackageProjectUrl>https://github.com/SimonG96/LightweightIocContainer</PackageProjectUrl> |
<PackageProjectUrl>https://github.com/SimonG96/LightweightIocContainer</PackageProjectUrl> |
||||||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
||||||
<PackageReadmeFile>README.md</PackageReadmeFile> |
<PackageReadmeFile>README.md</PackageReadmeFile> |
||||||
<IncludeSymbols>true</IncludeSymbols> |
<IncludeSymbols>true</IncludeSymbols> |
||||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> |
<SymbolPackageFormat>snupkg</SymbolPackageFormat> |
||||||
</PropertyGroup> |
</PropertyGroup> |
||||||
|
|
||||||
<ItemGroup> |
<ItemGroup> |
||||||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> |
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> |
||||||
<PrivateAssets>all</PrivateAssets> |
<PrivateAssets>all</PrivateAssets> |
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||||
</PackageReference> |
</PackageReference> |
||||||
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" /> |
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" /> |
||||||
</ItemGroup> |
</ItemGroup> |
||||||
|
|
||||||
<ItemGroup> |
<ItemGroup> |
||||||
<Content Include="..\README.md" Pack="true" PackagePath="" /> |
<Content Include="..\README.md" Pack="true" PackagePath="" /> |
||||||
<Content Include="..\LICENSE.md" Pack="true" PackagePath="" /> |
<Content Include="..\LICENSE.md" Pack="true" PackagePath="" /> |
||||||
</ItemGroup> |
</ItemGroup> |
||||||
|
|
||||||
</Project> |
</Project> |
||||||
Loading…
Reference in new issue