Skip to content
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.6.0
**Other**
- Upgraded to .NET 10

## 0.5.3
**Other**
- Moved to GitHub

## 0.5.1
**:sparkles: Features**
- Added `Test` task
Expand Down
25 changes: 14 additions & 11 deletions Common.Build.Cake/Common.Build.Cake.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<OutputType>exe</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputType>exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Frosting" Version="6.1.0" />
<PackageReference Include="Cake.Json" Version="7.0.1"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>

<!-- Project References -->
<ItemGroup>
<ProjectReference Include="../Common.Build/Common.Build.csproj"/>
<ProjectReference Include="../Common.Build.Generator/Common.Build.Generator.csproj">
Expand All @@ -24,6 +17,16 @@
</ProjectReference>
</ItemGroup>

<!-- NuGet References -->
<ItemGroup>
<PackageReference Include="Cake.Frosting" Version="6.1.0"/>
<PackageReference Include="Cake.Json" Version="7.0.1"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>

<!-- Additional Files -->
<ItemGroup>
<None Include="../.editorconfig"/>
<None Include="../.gitignore"/>
Expand Down
31 changes: 16 additions & 15 deletions Common.Build.Generator/Common.Build.Generator.csproj
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<IsRoslynComponent>true</IsRoslynComponent>
<IncludeBuildOutput>false</IncludeBuildOutput>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<IsRoslynComponent>true</IsRoslynComponent>
<LangVersion>latest</LangVersion>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<PropertyGroup>
<PackageId>Common.Build.Generator</PackageId>
<Version>12.34.56</Version>
<Authors>Andrei "DetPikachu" Hava</Authors>
<Company>Andrei "DetPikachu" Hava</Company>
<PackageId>Common.Build.Generator</PackageId>
<Product>Common.Build.Generator</Product>
<Version>12.34.56</Version>
</PropertyGroup>

<ItemGroup>
<None Include="$(OutputPath)/$(AssemblyName).dll">
<Pack>true</Pack>
<PackagePath>analyzers/dotnet/cs</PackagePath>
<Visible>false</Visible>
</None>
</ItemGroup>

<!-- NuGet References -->
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4">
<PrivateAssets>all</PrivateAssets>
Expand All @@ -27,15 +36,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0"/>
</ItemGroup>

<ItemGroup>
<None Include="$(OutputPath)/$(AssemblyName).dll">
<Pack>true</Pack>
<PackagePath>analyzers/dotnet/cs</PackagePath>
<Visible>false</Visible>
</None>
</ItemGroup>

</Project>
11 changes: 6 additions & 5 deletions Common.Build/Common.Build.csproj
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>

<PropertyGroup>
<PackageId>Common.Build</PackageId>
<Version>12.34.56</Version>
<Authors>Andrei "DetPikachu" Hava</Authors>
<Company>Andrei "DetPikachu" Hava</Company>
<PackageId>Common.Build</PackageId>
<Product>Common.Build</Product>
<Version>12.34.56</Version>
</PropertyGroup>

<!-- NuGet References -->
<ItemGroup>
<PackageReference Include="Cake.Frosting" Version="6.1.0" />
<PackageReference Include="Cake.Frosting" Version="6.1.0"/>
<PackageReference Include="Cake.Json" Version="7.0.1"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4">
<ExcludeAssets>runtime</ExcludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<a title="GPL-3.0" target="_blank" href="https://www.gnu.org/licenses/gpl-3.0.en.html">
<img alt="License Badge" src="https://img.shields.io/badge/license-GPL--3.0--or--later-blue.svg" />
</a>
<img alt=".NET Version Badge" src="https://img.shields.io/badge/dotnet-9.0-%236F419A" />
<img alt=".NET Version Badge" src="https://img.shields.io/badge/dotnet-10.0-%236F419A" />
<a title="CI Pipeline" target="_blank" href="https://github.com/devpikachu/Common.Build/actions">
<img alt="CI Status Badge" src="https://img.shields.io/github/check-runs/devpikachu/Common.Build/main" />
</a>
Expand Down