-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAGVSystem.csproj
More file actions
217 lines (172 loc) · 8.22 KB
/
AGVSystem.csproj
File metadata and controls
217 lines (172 loc) · 8.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyVersion>1.8.23</AssemblyVersion>
<FileVersion>1.8.23</FileVersion>
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
<PackageReadmeFile></PackageReadmeFile>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ShouldCreateLogs>True</ShouldCreateLogs>
<AdvancedSettingsExpanded>False</AdvancedSettingsExpanded>
<UpdateAssemblyVersion>True</UpdateAssemblyVersion>
<UpdateAssemblyFileVersion>True</UpdateAssemblyFileVersion>
<UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
<AssemblyVersionSettings>IncrementOnDemand.IncrementOnDemand.IncrementOnDemand.None</AssemblyVersionSettings>
<UpdatePackageVersion>False</UpdatePackageVersion>
<AssemblyInfoVersionType>SettingsVersion</AssemblyInfoVersionType>
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
<AssemblyFileVersionSettings>IncrementOnDemand.IncrementOnDemand.IncrementOnDemand.None</AssemblyFileVersionSettings>
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<ShouldCreateLogs>True</ShouldCreateLogs>
<AdvancedSettingsExpanded>False</AdvancedSettingsExpanded>
<UpdateAssemblyVersion>True</UpdateAssemblyVersion>
<UpdateAssemblyFileVersion>True</UpdateAssemblyFileVersion>
<UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
<UpdatePackageVersion>False</UpdatePackageVersion>
<AssemblyInfoVersionType>SettingsVersion</AssemblyInfoVersionType>
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
<AssemblyVersionSettings>IncrementOnDemand.IncrementOnDemand.IncrementOnDemand.None</AssemblyVersionSettings>
<AssemblyFileVersionSettings>IncrementOnDemand.IncrementOnDemand.IncrementOnDemand.None</AssemblyFileVersionSettings>
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);1591</NoWarn>
<NoWarn>$(NoWarn);1572</NoWarn>
<NoWarn>$(NoWarn);1573</NoWarn>
<NoWarn>$(NoWarn);4014</NoWarn>
<NoWarn>$(NoWarn);0168</NoWarn>
<NoWarn>$(NoWarn);0169</NoWarn>
<NoWarn>$(NoWarn);0219</NoWarn>
<NoWarn>$(NoWarn);0414</NoWarn>
<NoWarn>$(NoWarn);1988</NoWarn>
<NoWarn>$(NoWarn);1998</NoWarn>
<NoWarn>$(NoWarn);1587</NoWarn>
<NoWarn>$(NoWarn);8600</NoWarn>
<NoWarn>$(NoWarn);8601</NoWarn>
<NoWarn>$(NoWarn);8618</NoWarn>
<NoWarn>$(NoWarn);8602</NoWarn>
<NoWarn>$(NoWarn);8619</NoWarn>
<NoWarn>$(NoWarn);8625</NoWarn>
<NoWarn>$(NoWarn);8321</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="SaveLog\**" />
<Compile Remove="wwwroot\images\AGVDisplayImages - 複製\**" />
<Content Remove="SaveLog\**" />
<Content Remove="wwwroot\images\AGVDisplayImages - 複製\**" />
<EmbeddedResource Remove="SaveLog\**" />
<EmbeddedResource Remove="wwwroot\images\AGVDisplayImages - 複製\**" />
<None Remove="SaveLog\**" />
<None Remove="wwwroot\images\AGVDisplayImages - 複製\**" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.15" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.15">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.7" />
<PackageReference Include="NLog" Version="5.3.2" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.11" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.1" />
<PackageReference Include="VueRouterHistory" Version="1.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AGVSystemCommonNet6\AGVSystemCommonNet6.csproj" />
<ProjectReference Include="..\EquipmentManagment\EquipmentManagment.csproj" />
<ProjectReference Include="..\KGSWebAGVSystemAPI\KGSWebAGVSystemAPI.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="Resources\AGVS_AlarmCodes.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="agvs-system-config-folder-backup.cmd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Tools\AGVS_Folder_Snapshot.cmd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Tools\AGVS_Snapshot_Task_Create.cmd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Audios\mcs_command_recieved.mp3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Audios\mcs_transfer_command_recieved.wav">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Audios\order_created.mp3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Audios\shelf_available_materials_insufficient.mp3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\AGVS_TrobleShooting.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\AOI_SOP_000_AGV 無線網路斷線回復 .pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\AOI_SOP_000_AGV 當機處理-2 %28工程人員%29.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\AOI_SOP_000_AGV 當機處理.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\AOI_SOP_010_AGV 開機關機.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\AOI_SOP_010_車載更新.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\AOI_SOP_100_ AGV 充電操作.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\AOI_SOP_100_AGV_手動充電%28電池喚醒%29.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\Reference Documents\[GPM SPEC] [新版] IO交握流程規範_V1.2.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\Reference Documents\[GPM SPEC] [舊版] IO交握流程規範_V1.06.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\VCS_TrobleShooting.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<!--<Exec Command="powershell.exe -ExecutionPolicy Bypass -File "AutoVersionModify.ps1"
" />-->
</Target>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="tasklist | find /I "AGVSystem.exe" > nul && taskkill /F /IM "AGVSystem.exe" || echo "AGVSystem not running."& exit 0" />
</Target>
<Target Name="CreatePathchZipFile_WithWWWROOT" AfterTargets="Publish">
<Exec Command="powershell -ExecutionPolicy Bypass -File "create-patch-zip-file.ps1" "$(PublishDir)." "true"" />
</Target>
<Target Name="CreatePathchZipFile" AfterTargets="Publish">
<Exec Command="powershell -ExecutionPolicy Bypass -File "create-patch-zip-file.ps1" "$(PublishDir)." "false"" />
</Target>
</Project>