Skip to content

Migrate from Kysect.Editorconfig to Kysect.SolutionDefaults #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed Images/Kysect-logo.png
Binary file not shown.
30 changes: 9 additions & 21 deletions Sources/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,41 +1,29 @@
<Project>
<!-- Default project values -->
<PropertyGroup>
<Authors>Kysect</Authors>
<Company>Kysect</Company>
<PackageIcon>Kysect-logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Copyright>Copyright (c) Kysect 2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<!-- Specific project values -->
<PropertyGroup>
<Description>Kysect.DotnetProjectSystem is a nuget package for working with .sln, .csproj and .props files</Description>
<RepositoryUrl>https://github.com/kysect/DotnetProjectSystem</RepositoryUrl>
<PackageProjectUrl>https://github.com/kysect/DotnetProjectSystem</PackageProjectUrl>
</PropertyGroup>

<!-- Code configuration -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<UseArtifactsOutput>true</UseArtifactsOutput>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Kysect.Editorconfig" />
<None Include="$(MSBuildThisFileDirectory)../README.md" Pack="true" PackagePath="/Readme.md" Visible="false" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Kysect.SolutionDefaults">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="MinVer">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition="$(Configuration) == 'Release'">
<None Include="$(MSBuildThisFileDirectory)..\Images\Kysect-logo.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Sources/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageVersion Include="Kysect.CommonLib.DependencyInjection" Version="0.1.21" />
<PackageVersion Include="Kysect.CommonLib.Testing" Version="0.1.21" />
<PackageVersion Include="Kysect.DotnetSlnGenerator" Version="0.1.6" />
<PackageVersion Include="Kysect.Editorconfig" Version="1.1.8" />
<PackageVersion Include="Kysect.SolutionDefaults" Version="0.1.2" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
Expand Down