Skip to content

Commit ed7c609

Browse files
committed
去掉规则过滤
1 parent f5f6ce3 commit ed7c609

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.vs/espjs/v16/.suo

-3 KB
Binary file not shown.

App.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ public void Upload()
439439
if (System.IO.Directory.Exists(path))
440440
{
441441
// 文件夹
442-
string[] files = System.IO.Directory.GetFiles(path, "*.js", System.IO.SearchOption.AllDirectories);
442+
string[] files = System.IO.Directory.GetFiles(path, "*", System.IO.SearchOption.AllDirectories);
443443
foreach (string file in files)
444444
{
445445
string name = file.Replace(path + "\\", "").Replace("\\", "/");

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"Version": "1.0.1",
2+
"Version": "1.0.2",
33
"BaudRate": 115200,
44
"Modules": "http://www.espruino.com/modules/[name].min.js",
55
"Flash": {

espjs.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@
127127
<None Include="resources\esptool.exe">
128128
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
129129
</None>
130-
<Content Include="使用说明.txt" />
130+
<Content Include="使用说明.txt">
131+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
132+
</Content>
131133
</ItemGroup>
132134
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
133135
</Project>

0 commit comments

Comments
 (0)