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

fix: Exclude bin and obj folders explicitly #85

Merged
merged 4 commits into from
Jan 4, 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
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="CopySqlFilesToOutputDirectory" Version="0.1.0-alpha" />
<PackageVersion Include="CopySqlFilesToOutputDirectory" Version="0.2.0-alpha" />
<PackageVersion Include="CopySqlFilesToPublishDirectory" Version="0.1.0-alpha" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="7.0.10" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.5.0" />
Expand Down
2 changes: 1 addition & 1 deletion props/YeSql.Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>CopySqlFilesToOutputDirectory</id>
<version>0.1.0-alpha</version>
<version>0.2.0-alpha</version>
<authors>OSE.NET</authors>
<owners>OSE.NET</owners>
<projectUrl>https://github.com/ose-net/yesql.net</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion props/build/CopySqlFilesToOutputDirectory.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Other directories such as ./bin and ./obj are also excluded.
-->
<DefaultItemExcludes>
$(DefaultItemExcludes);out/**;publish/**
$(DefaultItemExcludes);out/**;publish/**;bin/**;obj/**
</DefaultItemExcludes>
</PropertyGroup>

Expand Down
2 changes: 2 additions & 0 deletions samples/YeSql.Net.Examples.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.NetFramework", "Exa
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{91D295C8-520D-46AF-95BC-D1E6C1E60534}"
ProjectSection(SolutionItems) = preProject
..\props\build\CopySqlFilesToOutputDirectory.props = ..\props\build\CopySqlFilesToOutputDirectory.props
..\targets\build\CopySqlFilesToPublishDirectory.targets = ..\targets\build\CopySqlFilesToPublishDirectory.targets
..\Directory.Build.props = ..\Directory.Build.props
..\Directory.Packages.props = ..\Directory.Packages.props
EndProjectSection
Expand Down