Skip to content

Commit ca29c1c

Browse files
committed
增加整合式支付頁支援代理商模式
1 parent 404db0e commit ca29c1c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+41976
-42
lines changed

PayuniSDK/Models/ParameterModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class ParameterModel
1111
public string EncryptInfo { get; set; }
1212
public string HashInfo { get; set; }
1313
public string Status { get; set; }
14-
public string isPlatForm { get; set; }
14+
public string IsPlatForm { get; set; }
1515

1616
}
1717
}

PayuniSDK/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// 您可以指定所有的值,也可以使用 '*' 將組建和修訂編號
3333
// 設為預設,如下所示:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.10.8930.18610")]
36+
[assembly: AssemblyFileVersion("1.10.8930.18610")]

PayuniSDK/bin/Debug/payuniSDK.dll

0 Bytes
Binary file not shown.

PayuniSDK/bin/Debug/payuniSDK.pdb

2 KB
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
adcea7554a8a72d2a0f189525feed10c8fd57000
1+
98226f0c83698b7d2b4db14612e5f06927e92250

PayuniSDK/obj/Debug/payuniSDK.csproj.FileListAbsolute.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,14 @@ D:\payuni\payuniSDK\obj\Debug\payuniSDK.csproj.CoreCompileInputs.cache
2020
D:\payuni\payuniSDK\obj\Debug\payuniSDK.csproj.CopyComplete
2121
D:\payuni\payuniSDK\obj\Debug\payuniSDK.dll
2222
D:\payuni\payuniSDK\obj\Debug\payuniSDK.pdb
23+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\payuniSDK.dll
24+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\payuniSDK.pdb
25+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\BouncyCastle.Crypto.dll
26+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\Newtonsoft.Json.dll
27+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\BouncyCastle.Crypto.xml
28+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\Newtonsoft.Json.xml
29+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.csproj.AssemblyReference.cache
30+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.csproj.CoreCompileInputs.cache
31+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.csproj.CopyComplete
32+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.dll
33+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.pdb

PayuniSDK/obj/Debug/payuniSDK.dll

0 Bytes
Binary file not shown.

PayuniSDK/obj/Debug/payuniSDK.pdb

2 KB
Binary file not shown.

PayuniSDK/payuniAPI.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ private string HtmlApi()
256256
htmlprint += "<input name='Version' type='hidden' value='" + Parameter.Version + "' />";
257257
htmlprint += "<input name='EncryptInfo' type='hidden' value='" + Parameter.EncryptInfo + "' />";
258258
htmlprint += "<input name='HashInfo' type='hidden' value='" + Parameter.HashInfo + "' />";
259+
htmlprint += "<input name='IsPlatForm' type='hidden' value='" + Parameter.IsPlatForm + "' />";
259260
htmlprint += "</form></body></html>";
260261
return htmlprint;
261262
}
@@ -340,7 +341,7 @@ private void SetParams(string type = "")
340341
Parameter.Version = "1.0";
341342
Parameter.EncryptInfo = Encrypt();
342343
Parameter.HashInfo = Hash(Parameter.EncryptInfo);
343-
Parameter.isPlatForm = isPlatForm;
344+
Parameter.IsPlatForm = isPlatForm;
344345

345346
ApiUrl = ApiUrl + type;
346347
}

example/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// 您可以指定所有的值,也可以使用 '*' 將組建和修訂編號
3333
// 設為預設,如下所示:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.10.8930.18610")]
36+
[assembly: AssemblyFileVersion("1.10.8930.18610")]
3.16 MB
Binary file not shown.

example/bin/Debug/BouncyCastle.Crypto.xml

Lines changed: 30592 additions & 0 deletions
Large diffs are not rendered by default.

example/bin/Debug/Newtonsoft.Json.dll

686 KB
Binary file not shown.

example/bin/Debug/Newtonsoft.Json.xml

Lines changed: 11305 additions & 0 deletions
Large diffs are not rendered by default.

example/bin/Debug/example.dll

7.5 KB
Binary file not shown.

example/bin/Debug/example.pdb

27.5 KB
Binary file not shown.

example/bin/Debug/payuniSDK.dll

21 KB
Binary file not shown.

example/bin/Debug/payuniSDK.pdb

63.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

example/obj/Debug/example.csproj.CopyComplete

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18538091218b27202aaf429d7c0f2e253d205a07
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\example.dll
2+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\example.pdb
3+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\payuniSDK.dll
4+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\BouncyCastle.Crypto.dll
5+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\Newtonsoft.Json.dll
6+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\payuniSDK.pdb
7+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\BouncyCastle.Crypto.xml
8+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\bin\Debug\Newtonsoft.Json.xml
9+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\obj\Debug\example.csproj.AssemblyReference.cache
10+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\obj\Debug\example.csproj.CoreCompileInputs.cache
11+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\obj\Debug\example.csproj.CopyComplete
12+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\obj\Debug\example.dll
13+
C:\Users\ray.luo\Downloads\NET_SDK-main\example\obj\Debug\example.pdb

example/obj/Debug/example.dll

7.5 KB
Binary file not shown.

example/obj/Debug/example.pdb

27.5 KB
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
-16 KB
Binary file not shown.
-16 Bytes
Binary file not shown.

testuni/bin/Debug/netcoreapp3.1/testuni.runtimeconfig.dev.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"runtimeOptions": {
33
"additionalProbingPaths": [
44
"C:\\Users\\ray.luo\\.dotnet\\store\\|arch|\\|tfm|",
5-
"C:\\Users\\ray.luo\\.nuget\\packages",
6-
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
5+
"C:\\Users\\ray.luo\\.nuget\\packages"
76
]
87
}
98
}
-16 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
is_global = true
22
build_property.RootNamespace = testuni
3-
build_property.ProjectDir = C:\文件\payuni\payuni202304282\payuni\testuni\
3+
build_property.ProjectDir = C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e108134e0b2f874b48fb88456bd4f9cc7a368dc8
1+
acdc89613a4ce401bcc6887707ab68c95caef554

testuni/obj/Debug/netcoreapp3.1/testuni.csproj.FileListAbsolute.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,23 @@ C:\文件\payuni\payuni202304282\payuni\testuni\obj\Debug\netcoreapp3.1\testuni.
5858
C:\文件\payuni\payuni202304282\payuni\testuni\obj\Debug\netcoreapp3.1\testuni.dll
5959
C:\文件\payuni\payuni202304282\payuni\testuni\obj\Debug\netcoreapp3.1\testuni.pdb
6060
C:\文件\payuni\payuni202304282\payuni\testuni\obj\Debug\netcoreapp3.1\testuni.genruntimeconfig.cache
61+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\testuni.exe
62+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\testuni.deps.json
63+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\testuni.runtimeconfig.json
64+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\testuni.runtimeconfig.dev.json
65+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\testuni.dll
66+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\testuni.pdb
67+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
68+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\payuniSDK.dll
69+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\BouncyCastle.Crypto.dll
70+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\payuniSDK.pdb
71+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\bin\Debug\netcoreapp3.1\BouncyCastle.Crypto.xml
72+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.csproj.AssemblyReference.cache
73+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.GeneratedMSBuildEditorConfig.editorconfig
74+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.AssemblyInfoInputs.cache
75+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.AssemblyInfo.cs
76+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.csproj.CoreCompileInputs.cache
77+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.csproj.CopyComplete
78+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.dll
79+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.pdb
80+
C:\Users\ray.luo\Downloads\NET_SDK-main\testuni\obj\Debug\netcoreapp3.1\testuni.genruntimeconfig.cache
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e494262b9fcf3ea4e1d8bdfe6d17bb99272b3fdb
1+
a4a450035da933f7971189769c2e392c24293dee
-16 Bytes
Binary file not shown.

testuni/obj/project.assets.json

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,17 @@
6363
]
6464
},
6565
"packageFolders": {
66-
"C:\\Users\\ray.luo\\.nuget\\packages\\": {},
67-
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
66+
"C:\\Users\\ray.luo\\.nuget\\packages\\": {}
6867
},
6968
"project": {
7069
"version": "1.0.0",
7170
"restore": {
72-
"projectUniqueName": "C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\testuni.csproj",
71+
"projectUniqueName": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\testuni.csproj",
7372
"projectName": "testuni",
74-
"projectPath": "C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\testuni.csproj",
73+
"projectPath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\testuni.csproj",
7574
"packagesPath": "C:\\Users\\ray.luo\\.nuget\\packages\\",
76-
"outputPath": "C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\obj\\",
75+
"outputPath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\obj\\",
7776
"projectStyle": "PackageReference",
78-
"fallbackFolders": [
79-
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
80-
],
8177
"configFilePaths": [
8278
"C:\\Users\\ray.luo\\AppData\\Roaming\\NuGet\\NuGet.Config",
8379
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
@@ -93,8 +89,8 @@
9389
"netcoreapp3.1": {
9490
"targetAlias": "netcoreapp3.1",
9591
"projectReferences": {
96-
"C:\\文件\\payuni\\payuni202304282\\payuni\\payuniSDK\\payuniSDK.csproj": {
97-
"projectPath": "C:\\文件\\payuni\\payuni202304282\\payuni\\payuniSDK\\payuniSDK.csproj"
92+
"C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\payuniSDK\\payuniSDK.csproj": {
93+
"projectPath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\payuniSDK\\payuniSDK.csproj"
9894
}
9995
}
10096
}
@@ -129,7 +125,7 @@
129125
"privateAssets": "all"
130126
}
131127
},
132-
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.413\\RuntimeIdentifierGraph.json"
128+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
133129
}
134130
}
135131
}

testuni/obj/project.nuget.cache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"version": 2,
3-
"dgSpecHash": "R0s2CpkZASkanm0BqsUvcuwhCOnxpdnO+3Lwg3bDuj2V3Z/01evwK/PkLpFjpraaXkW5PXuLQuyZaHEI0ZdvHA==",
3+
"dgSpecHash": "wYFeZm+tjjZaw4KbpOg/bdusHL9z4gvpTL2Z8TuVDMU5J6UBWTfLClchkUVRQtr6d5KYRy1twq9gv6kWUGbtEg==",
44
"success": true,
5-
"projectFilePath": "C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\testuni.csproj",
5+
"projectFilePath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\testuni.csproj",
66
"expectedPackageFiles": [
77
"C:\\Users\\ray.luo\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512"
88
],

testuni/obj/testuni.csproj.nuget.dgspec.json

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"format": 1,
33
"restore": {
4-
"C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\testuni.csproj": {}
4+
"C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\testuni.csproj": {}
55
},
66
"projects": {
7-
"C:\\文件\\payuni\\payuni202304282\\payuni\\payuniSDK\\payuniSDK.csproj": {
7+
"C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\payuniSDK\\payuniSDK.csproj": {
88
"restore": {
9-
"projectUniqueName": "C:\\文件\\payuni\\payuni202304282\\payuni\\payuniSDK\\payuniSDK.csproj",
9+
"projectUniqueName": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\payuniSDK\\payuniSDK.csproj",
1010
"projectName": "payuniSDK",
11-
"projectPath": "C:\\文件\\payuni\\payuni202304282\\payuni\\payuniSDK\\payuniSDK.csproj",
11+
"projectPath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\payuniSDK\\payuniSDK.csproj",
1212
"frameworks": {
1313
"net472": {
1414
"projectReferences": {}
@@ -19,18 +19,15 @@
1919
"net472": {}
2020
}
2121
},
22-
"C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\testuni.csproj": {
22+
"C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\testuni.csproj": {
2323
"version": "1.0.0",
2424
"restore": {
25-
"projectUniqueName": "C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\testuni.csproj",
25+
"projectUniqueName": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\testuni.csproj",
2626
"projectName": "testuni",
27-
"projectPath": "C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\testuni.csproj",
27+
"projectPath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\testuni.csproj",
2828
"packagesPath": "C:\\Users\\ray.luo\\.nuget\\packages\\",
29-
"outputPath": "C:\\文件\\payuni\\payuni202304282\\payuni\\testuni\\obj\\",
29+
"outputPath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\testuni\\obj\\",
3030
"projectStyle": "PackageReference",
31-
"fallbackFolders": [
32-
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
33-
],
3431
"configFilePaths": [
3532
"C:\\Users\\ray.luo\\AppData\\Roaming\\NuGet\\NuGet.Config",
3633
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
@@ -46,8 +43,8 @@
4643
"netcoreapp3.1": {
4744
"targetAlias": "netcoreapp3.1",
4845
"projectReferences": {
49-
"C:\\文件\\payuni\\payuni202304282\\payuni\\payuniSDK\\payuniSDK.csproj": {
50-
"projectPath": "C:\\文件\\payuni\\payuni202304282\\payuni\\payuniSDK\\payuniSDK.csproj"
46+
"C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\payuniSDK\\payuniSDK.csproj": {
47+
"projectPath": "C:\\Users\\ray.luo\\Downloads\\NET_SDK-main\\payuniSDK\\payuniSDK.csproj"
5148
}
5249
}
5350
}
@@ -82,7 +79,7 @@
8279
"privateAssets": "all"
8380
}
8481
},
85-
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.413\\RuntimeIdentifierGraph.json"
82+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
8683
}
8784
}
8885
}

testuni/obj/testuni.csproj.nuget.g.props

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
66
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
77
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8-
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ray.luo\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ray.luo\.nuget\packages\</NuGetPackageFolders>
99
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10-
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.2</NuGetToolVersion>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.4</NuGetToolVersion>
1111
</PropertyGroup>
1212
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
1313
<SourceRoot Include="C:\Users\ray.luo\.nuget\packages\" />
14-
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
1514
</ItemGroup>
1615
<PropertyGroup>
1716
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>

0 commit comments

Comments
 (0)