-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(vscode): Resolve Test Folder Addition, Naming Convention, and Fil…
…e Path Issues in Templates (#6001) * clean UX for codeful and update c# project for sdk support * Apply suggestions from code review Apply pull request review suggestions Co-authored-by: Esther Fan <[email protected]> * Apply suggestions from code review Update mock data trigger docstring Co-authored-by: Esther Fan <[email protected]> * Apply suggestions from code review Co-authored-by: Esther Fan <[email protected]> * update doc template * update doc template within assets folder * update doc templates based on project req * ensure test folder is in workspace and update templates * update templates and add root path to .cs file * update .cs template per PR feedback * remove var * update mock path to original --------- Co-authored-by: Esther Fan <[email protected]>
- Loading branch information
1 parent
a746b60
commit 1504fc5
Showing
4 changed files
with
77 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
apps/vs-code-designer/src/assets/UnitTestTemplates/TestProjectFile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<?xml version="1.0" encoding="utf-8" standalone="yes"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<IsPackable>false</IsPackable> | ||
<IsTestProject>true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="MSTest" Version="3.2.0" /> | ||
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.10.1" /> | ||
<PackageReference Include="Microsoft.Azure.Workflows.WebJobs.Extension" Version="17.10.*" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="3.2.0" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="3.2.0" /> | ||
<PackageReference Include="Microsoft.Azure.Workflows.WebJobs.Extension" Version="1.96.*" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters