Skip to content

Commit 06d3f90

Browse files
committed
Move dotnet properties outside src folder
1 parent 695fb32 commit 06d3f90

12 files changed

+16
-16
lines changed

build/GetVersion.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
open FSharp.Data
44

5-
type publishingProperties = XmlProvider<"../src/Properties/GirCore.Publishing.props">
5+
type publishingProperties = XmlProvider<"../properties/GirCore.Publishing.props">
66

77
let versionPrefix = publishingProperties.GetSample().PropertyGroups
88
|> Seq.tryFind(fun p -> p.VersionPrefix.IsSome)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/Extensions/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<Project>
2-
<Import Project="../Properties/GirCore.Publishing.props" />
2+
<Import Project="../../properties/GirCore.Publishing.props" />
33
</Project>

src/Generation/Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
2-
<Import Project="../Properties/GirCore.Tooling.props" />
3-
<Import Project="../Properties/GirCore.Logging.props" />
2+
<Import Project="../../properties/GirCore.Tooling.props" />
3+
<Import Project="../../properties/GirCore.Logging.props" />
44

55
<PropertyGroup>
66
<IsPackable>false</IsPackable>

src/GirCore.sln

+6-6
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "create", "create", "{C095C4
205205
EndProject
206206
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GirTool", "Generation\GirTool\GirTool.csproj", "{03CEAA82-AEEC-4A6D-B5D9-BF149C0CA0D7}"
207207
EndProject
208-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Properties", "Properties", "{BE2159DE-B264-4C71-9B52-94C5C956F76A}"
208+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "properties", "properties", "{BE2159DE-B264-4C71-9B52-94C5C956F76A}"
209209
ProjectSection(SolutionItems) = preProject
210-
Properties\GirCore.Libraries.props = Properties\GirCore.Libraries.props
211-
Properties\GirCore.Logging.props = Properties\GirCore.Logging.props
212-
Properties\GirCore.Publishing.props = Properties\GirCore.Publishing.props
213-
Properties\GirCore.Testing.props = Properties\GirCore.Testing.props
214-
Properties\GirCore.Tooling.props = Properties\GirCore.Tooling.props
210+
properties\GirCore.Libraries.props = ..\properties\GirCore.Libraries.props
211+
properties\GirCore.Logging.props = ..\properties\GirCore.Logging.props
212+
properties\GirCore.Publishing.props = ..\properties\GirCore.Publishing.props
213+
properties\GirCore.Testing.props = ..\properties\GirCore.Testing.props
214+
properties\GirCore.Tooling.props = ..\properties\GirCore.Tooling.props
215215
EndProjectSection
216216
EndProject
217217
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FontDialog", "Samples\Gtk-4.0\FontDialog\FontDialog.csproj", "{B75DC27B-C90A-47E6-909F-C55D6204F35D}"

src/Libs/Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
2-
<Import Project="../Properties/GirCore.Libraries.props" />
3-
<Import Project="../Properties/GirCore.Publishing.props" />
2+
<Import Project="../../properties/GirCore.Libraries.props" />
3+
<Import Project="../../properties/GirCore.Publishing.props" />
44

55
<PropertyGroup Condition="$(GenerateDocumentationFile) == 'True'">
66
<NoWarn>1591</NoWarn>

src/Tests/Generation/Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
2-
<Import Project="../../Properties/GirCore.Tooling.props" />
3-
<Import Project="../../Properties/GirCore.Testing.props" />
2+
<Import Project="../../../properties/GirCore.Tooling.props" />
3+
<Import Project="../../../properties/GirCore.Testing.props" />
44

55
<PropertyGroup>
66
<IsPackable>false</IsPackable>

src/Tests/Libs/Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
2-
<Import Project="../../Properties/GirCore.Libraries.props" />
3-
<Import Project="../../Properties/GirCore.Testing.props" />
2+
<Import Project="../../../properties/GirCore.Libraries.props" />
3+
<Import Project="../../../properties/GirCore.Testing.props" />
44

55
<PropertyGroup>
66
<IsPackable>false</IsPackable>

0 commit comments

Comments
 (0)