Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
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 generators/generator-bot-adaptive/generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ module.exports = class extends BaseGenerator {
_writeJsPackageJson() {
const { botName, integration } = this.options;

const sdkVersion = '~4.13.2-preview';
const sdkVersion = '4.13.3-preview';

const dependencies = {
[integrations.functions]: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace <%= botName %>.Triggers
{
public class StaticFilesTrigger
{
private const string StaticFilesDirectory = "www";
private const string StaticFilesDirectory = "wwwroot";

private readonly FileExtensionContentTypeProvider _provider;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<Content Include="**/*.blu;**/*.dialog;**/*.json;**/*.lg;**/*.lu;**/*.onnx;**/*.qna;**/*.txt"
Exclude="$(AppDesignerFolder)/**;$(BaseOutputPath)/**;$(BaseIntermediateOutputPath)/**;www/**;**/function.json">
Exclude="$(AppDesignerFolder)/**;$(BaseOutputPath)/**;$(BaseIntermediateOutputPath)/**;wwwroot/**;**/function.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
Expand All @@ -24,7 +24,7 @@
<Content Update="local.settings.json">
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</Content>
<None Include="www/**/*.*">
<None Include="wwwroot/**/*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Expand Down