Skip to content

Commit

Permalink
(#571) Cesium.Templates.CSharp → Cesium.Templates
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Feb 23, 2025
1 parent f48bcba commit 6d207fa
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<ContentTargetFolders>content</ContentTargetFolders>
<!-- https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5128#scenario-2 -->
<NoWarn>$(NoWarn);NU5128</NoWarn>
<RootNamespace>Cesium.Templates.CSharp</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json.schemastore.org/template",
"author": "Cesium Team",
"classifications": [ "Console" ],
"identity": "Cesium.Template.App.CSharp",
"identity": "Cesium.Template.App",
"name": "Cesium Console Application",
"shortName": "cesiumapp",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json.schemastore.org/template",
"author": "Cesium Team",
"classifications": [ "Console" ],
"identity": "Cesium.Template.Library.CSharp",
"identity": "Cesium.Template.Library",
"name": "Cesium Library",
"shortName": "cesiumlib",
"tags": {
Expand Down
2 changes: 1 addition & 1 deletion Cesium.sln
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "build\_build.cspr
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Templates", "Templates", "{F59EF607-B888-4FC2-8148-43B019F33C7E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cesium.Templates.CSharp", "Cesium.Templates.CSharp\Cesium.Templates.CSharp.csproj", "{D26ED37B-1F41-4001-8755-47026763A32A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cesium.Templates", "Cesium.Templates\Cesium.Templates.csproj", "{D26ED37B-1F41-4001-8755-47026763A32A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ License
-------
The project's sources, except the project templates, are distributed under the terms of [the MIT license][docs.license.mit].

The project templates (from the directory `Cesium.Templates.CSharp`) are distributed under the terms of [the CC-0 license][docs.license.cc0].
The project templates (from the directory `Cesium.Templates`) are distributed under the terms of [the CC-0 license][docs.license.cc0].

The license indication in the project's sources is compliant with the [REUSE specification v3.3][reuse.spec].

Expand Down
2 changes: 1 addition & 1 deletion REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SPDX-FileCopyrightText = "2025 Cesium contributors <https://github.com/ForNeVeR/
SPDX-License-Identifier = "MIT"

[[annotations]]
path = "Cesium.Templates.CSharp/**/*"
path = "Cesium.Templates/**/*"
precedence = "override"
SPDX-FileCopyrightText = "2025 Cesium contributors <https://github.com/ForNeVeR/Cesium>"
SPDX-License-Identifier = "CC0-1.0"
Expand Down
2 changes: 1 addition & 1 deletion build/Build.Templates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ partial class Build
DotNetPack(_ => _
.Apply(settings => !string.IsNullOrEmpty(RuntimeId) ? settings.SetRuntime(RuntimeId) : settings)
.SetConfiguration(Configuration)
.SetProject(Solution.Templates.Cesium_Templates_CSharp)
.SetProject(Solution.Templates.Cesium_Templates)
.EnableNoRestore());
});
}

0 comments on commit 6d207fa

Please sign in to comment.