Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved .msbuildproj files into new proj/ folder #1012

Merged
merged 1 commit into from
Nov 6, 2024
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
10 changes: 0 additions & 10 deletions .build/build.msbuildproj

This file was deleted.

11 changes: 3 additions & 8 deletions Lucene.Net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
NOTICE.txt = NOTICE.txt
NuGet.config = NuGet.config
README.md = README.md
TestTargetFramework.props = TestTargetFramework.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lucene.Net", "src\Lucene.Net\Lucene.Net.csproj", "{3A0AA37E-2B7B-4416-B528-DA4E0E6A6706}"
Expand Down Expand Up @@ -197,13 +196,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{42599646-2
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LuceneDocsPlugins", "src\docs\LuceneDocsPlugins\LuceneDocsPlugins.csproj", "{FED4A824-1F32-4948-8D37-2B7610804DB5}"
EndProject
Project("{13B669BE-BB05-4DDF-9536-439F39A36129}") = "websites", "websites\websites.msbuildproj", "{C0448DD3-68D2-485F-B31A-D2806E589FA7}"
Project("{13B669BE-BB05-4DDF-9536-439F39A36129}") = "websites", "proj\websites.msbuildproj", "{C0448DD3-68D2-485F-B31A-D2806E589FA7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".build", ".build", "{9D88BB9B-A226-4C6F-BC99-7AB2D923EDCA}"
Project("{13B669BE-BB05-4DDF-9536-439F39A36129}") = "build", "proj\build.msbuildproj", "{5C5253E9-BAF2-493C-B4D4-EE01D2E1769F}"
EndProject
Project("{13B669BE-BB05-4DDF-9536-439F39A36129}") = "build", ".build\build.msbuildproj", "{5C5253E9-BAF2-493C-B4D4-EE01D2E1769F}"
EndProject
Project("{13B669BE-BB05-4DDF-9536-439F39A36129}") = "github", ".github\github.msbuildproj", "{E71152A0-48CC-4334-981F-F5FBFFA50891}"
Project("{13B669BE-BB05-4DDF-9536-439F39A36129}") = "github", "proj\github.msbuildproj", "{E71152A0-48CC-4334-981F-F5FBFFA50891}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -509,8 +506,6 @@ Global
{4D0ED7D9-ABEE-4890-B06C-477E3A32B9A0} = {E5E8C5DC-7048-4818-B884-FB2D037D2EF2}
{FED4A824-1F32-4948-8D37-2B7610804DB5} = {42599646-275F-4970-BC60-A3349F6498CC}
{C0448DD3-68D2-485F-B31A-D2806E589FA7} = {42599646-275F-4970-BC60-A3349F6498CC}
{5C5253E9-BAF2-493C-B4D4-EE01D2E1769F} = {9D88BB9B-A226-4C6F-BC99-7AB2D923EDCA}
{E71152A0-48CC-4334-981F-F5FBFFA50891} = {9D88BB9B-A226-4C6F-BC99-7AB2D923EDCA}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9F2179CC-CFD2-4419-AB74-D72856931F36}
Expand Down
14 changes: 14 additions & 0 deletions proj/build.msbuildproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="../.build/**/*.*" Exclude="../.build/obj/**/*;../.build/bin/**/*;../.build/psake/**/*" />
</ItemGroup>
<ItemGroup>
<None Include="..\azure-pipelines.yml" Link="azure-pipelines.yml" />
<None Include="..\TestTargetFramework.props" Link="TestTargetFramework.props" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion .github/github.msbuildproj → proj/github.msbuildproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<OutputPath>bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="**/*.*" Exclude="obj/**/*;bin/**/*;*.msbuildproj"/>
<None Include="../.github/**/*.*" Exclude="../.github/obj/**/*;../.github/bin/**/*"/>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<OutputPath>bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="**/*.*" Exclude="obj/**/*;bin/**/*;*.msbuildproj"/>
<None Include="../websites/**/*.*" Exclude="../websites/obj/**/*;../websites/bin/**/*"/>
</ItemGroup>
</Project>
Loading