2019-12-17 12:08:46 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-11-16 20:11:06 +00:00
|
|
|
|
|
2019-12-17 12:08:46 +00:00
|
|
|
|
<PropertyGroup>
|
2020-07-15 14:31:26 +01:00
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2019-12-17 12:08:46 +00:00
|
|
|
|
<LangVersion>8.0</LangVersion>
|
|
|
|
|
<Authors>Oliver Booth</Authors>
|
|
|
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<RepositoryUrl>https://github.com/oliverbooth/X10D</RepositoryUrl>
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
<Description>Extension methods on crack.</Description>
|
|
|
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
2019-12-17 13:06:23 +00:00
|
|
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
|
|
|
<PackageIconUrl />
|
2019-12-17 13:06:39 +00:00
|
|
|
|
<PackageTags>dotnet extension-methods</PackageTags>
|
2020-10-20 15:11:21 +01:00
|
|
|
|
<Version>2.6.0</Version>
|
2020-04-19 14:10:42 +01:00
|
|
|
|
<CodeAnalysisRuleSet>..\X10D.ruleset</CodeAnalysisRuleSet>
|
2020-04-21 03:45:02 +01:00
|
|
|
|
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
|
2020-10-20 15:11:21 +01:00
|
|
|
|
<AssemblyVersion>2.6.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>2.6.0</FileVersion>
|
|
|
|
|
<PackageVersion>2.6.0</PackageVersion>
|
2020-10-20 15:09:48 +01:00
|
|
|
|
<Nullable>enable</Nullable>
|
2019-12-17 12:08:46 +00:00
|
|
|
|
</PropertyGroup>
|
2019-11-16 20:11:06 +00:00
|
|
|
|
|
2019-12-17 12:08:46 +00:00
|
|
|
|
<ItemGroup>
|
2019-12-17 13:06:23 +00:00
|
|
|
|
<None Include="..\icon.png">
|
2020-04-18 14:43:16 +01:00
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath></PackagePath>
|
2019-12-17 13:06:23 +00:00
|
|
|
|
</None>
|
2019-12-17 12:08:46 +00:00
|
|
|
|
<None Include="..\LICENSE.md">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath></PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-18 14:42:47 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-04-19 14:31:29 +01:00
|
|
|
|
<PackageReference Include="Roslynator.Analyzers" Version="2.3.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-04-18 14:42:47 +01:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-19 14:14:29 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Resource.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resource.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Resource.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resource.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-12-17 12:08:46 +00:00
|
|
|
|
</Project>
|