We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
VS 2022 17.11.5 asp.net core webapi .net8.0 project
I make a http-client.env.json file in my project, see docs, then .csproj become this:
http-client.env.json
.csproj
... <ItemGroup> <None Include="http-client.env.json" /> </ItemGroup> ...
and after I published project, this file appears in publish directory, I don't want it, I tried change .csproj to:
<ItemGroup> <None Include(or Update)="http-client.env.json" CopyToPublishDirectory="Never" /> </ItemGroup>
Not working, please help.
The text was updated successfully, but these errors were encountered:
also tried:
<None Update="http-client.env.json"> <CopyToPublishDirectory>Never</CopyToPublishDirectory> (or CopyToOutputDirectory) </None>
Sorry, something went wrong.
No branches or pull requests
VS 2022 17.11.5
asp.net core webapi .net8.0 project
I make a
http-client.env.json
file in my project, see docs, then.csproj
become this:and after I published project, this file appears in publish directory, I don't want it, I tried change
.csproj
to:Not working, please help.
The text was updated successfully, but these errors were encountered: