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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Files Community
Copyright (c) 2018 - present Files Community

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion src/Files.App.SaveDialog/Files.App.SaveDialog.Win32.vcxproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Files Community. Licensed under the MIT License. -->
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|arm64">
Expand Down Expand Up @@ -472,4 +473,4 @@

<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

</Project>
</Project>
3 changes: 2 additions & 1 deletion src/Files.App.Server/Files.App.Server.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Copyright (c) Files Community. Licensed under the MIT License. -->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal static StringBuilder AppendAutoGeneratedHeader(this StringBuilder sb, s
/// <returns>The <see cref="StringBuilder"/> instance with the appended license header.</returns>
internal static StringBuilder AppendLicenceHeader(this StringBuilder sb)
{
return sb.AppendLine($"// Copyright (c) {DateTime.Now.Year} Files Community")
return sb.AppendLine($"// Copyright (c) Files Community")
.AppendLine("// Licensed under the MIT License.");
}

Expand Down