-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate from Kysect.Editorconfig to Kysect.SolutionDefaults
- Loading branch information
Showing
3 changed files
with
10 additions
and
22 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters