When I build the project, the bin folder is shown in the Solution Explorer:
Here it is my CSPROJ file:
<Project Sdk="MSBuild.Sdk.SqlProj/3.3.0">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<SqlServerVersion>SqlAzure</SqlServerVersion>
<RunSqlCodeAnalysis>True</RunSqlCodeAnalysis>
<!-- For additional properties that can be set here, please refer to https://github.com/rr-wfm/MSBuild.Sdk.SqlProj#model-properties -->
</PropertyGroup>
<ItemGroup>
<!-- These packages adds additional code analysis rules -->
<!-- We recommend using these, but they can be removed if desired -->
<PackageReference Include="ErikEJ.DacFX.SqlServer.Rules" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ErikEJ.DacFX.TSQLSmellSCA" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<!-- Refer to https://github.com/rr-wfm/MSBuild.Sdk.SqlProj#publishing-support for supported publishing options -->
</PropertyGroup>
</Project>
In some way, I think it is similar to dotnet/efcore#36970.
When I build the project, the
binfolder is shown in the Solution Explorer:Here it is my CSPROJ file:
In some way, I think it is similar to dotnet/efcore#36970.