From 9a4473e0affe1f8163030ce2046b9e9589504fb2 Mon Sep 17 00:00:00 2001 From: Kevin Jhang Date: Fri, 28 Jan 2022 10:34:18 +0800 Subject: [PATCH] Update to net4.8 --- dotnet/.vs/dotnet/v17/.suo | Bin 0 -> 7680 bytes dotnet/authenticate/app.config | 3 +++ dotnet/authenticate/authenticate.csproj | 11 +++++++++-- dotnet/client_example_async/app.config | 3 +++ .../client_example_async.csproj | 4 ++-- dotnet/client_example_setting_groups/app.config | 3 +++ .../client_example_setting_groups.csproj | 10 +++++++--- dotnet/control/app.config | 3 +++ dotnet/control/control.csproj | 11 +++++++++-- dotnet/datasets/app.config | 3 +++ dotnet/datasets/datasets.csproj | 11 +++++++++-- dotnet/example1/app.config | 3 +++ dotnet/example1/example1.csproj | 9 ++++++++- dotnet/example2/app.config | 3 +++ dotnet/example2/example2.csproj | 11 +++++++++-- dotnet/example3/app.config | 3 +++ dotnet/example3/example3.csproj | 11 +++++++++-- dotnet/files/app.config | 3 +++ dotnet/files/files.csproj | 11 +++++++++-- dotnet/goose_subscriber/app.config | 3 +++ dotnet/goose_subscriber/goose_subscriber.csproj | 10 +++++++--- dotnet/log_client/app.config | 3 +++ dotnet/log_client/log_client.csproj | 14 ++++++++++---- dotnet/model_browsing/app.config | 3 +++ dotnet/model_browsing/model_browsing.csproj | 11 +++++++++-- dotnet/report_new_dataset/app.config | 3 +++ .../report_new_dataset/report_new_dataset.csproj | 11 +++++++++-- dotnet/reporting/app.config | 3 +++ dotnet/reporting/reporting.csproj | 11 +++++++++-- dotnet/server1/app.config | 3 +++ dotnet/server1/server1.csproj | 6 ++++-- dotnet/server_goose_publisher/App.config | 6 +++--- .../server_goose_publisher.csproj | 3 ++- dotnet/sv_subscriber/app.config | 3 +++ dotnet/sv_subscriber/sv_subscriber.csproj | 11 ++++++++--- dotnet/tests/tests.csproj | 6 +++++- dotnet/tls_client_example/app.config | 3 +++ .../tls_client_example/tls_client_example.csproj | 8 +++++--- dotnet/tls_server_example/app.config | 3 +++ .../tls_server_example/tls_server_example.csproj | 8 +++++--- 40 files changed, 201 insertions(+), 47 deletions(-) create mode 100644 dotnet/.vs/dotnet/v17/.suo create mode 100644 dotnet/authenticate/app.config create mode 100644 dotnet/client_example_async/app.config create mode 100644 dotnet/client_example_setting_groups/app.config create mode 100644 dotnet/control/app.config create mode 100644 dotnet/datasets/app.config create mode 100644 dotnet/example1/app.config create mode 100644 dotnet/example2/app.config create mode 100644 dotnet/example3/app.config create mode 100644 dotnet/files/app.config create mode 100644 dotnet/goose_subscriber/app.config create mode 100644 dotnet/log_client/app.config create mode 100644 dotnet/model_browsing/app.config create mode 100644 dotnet/report_new_dataset/app.config create mode 100644 dotnet/reporting/app.config create mode 100644 dotnet/server1/app.config create mode 100644 dotnet/sv_subscriber/app.config create mode 100644 dotnet/tls_client_example/app.config create mode 100644 dotnet/tls_server_example/app.config diff --git a/dotnet/.vs/dotnet/v17/.suo b/dotnet/.vs/dotnet/v17/.suo new file mode 100644 index 0000000000000000000000000000000000000000..027a72d598375979c82fbaaef3d3f23a86d4838f GIT binary patch literal 7680 zcmeHL%}*0S6n_i&0V3blhM3qG4jhp1wQj!{QrU_KG>#ZF zh?rEwJ*r9?J9Y!wc{x8 z2|F+7!;SkqZkg?JQjSTRw8|B5h5*k7UWN%gGfcIO*@q?|I|8Q*LEf)`I*oyo(AC7Y zx``L=2--&hHXnc)lxgJYAk-u)u{v{K#^@U`TL|r_JWy|LEo(rEC?N4d9uw|-QJA92 zEKaOj7>zM>l?j73l@(L+=z?^MR|XVlqu6-(1IDZNP(OG%kjk__ zXRc{Qe=%4)`P1ce^P-wzHXDWGC|KdGca-g3f6trSLmzHk9DFvnQr0zh>Sx#czNNE| z-@f|T-+TBjTtDsS8siJ{Oo^uw&q$Fb{>F;INap>*8UX;u*@&ft%)qnh%TDY$bYqlD z@{cIA5#8LS{tj)~DDG9mq|~=F#SLAjOKsS8&Ck))mwn0HhUJ`6zU!|nnG81UH@cng zC?S18=qLmEI7)hanRE$DjJY!w9~1qw`1Jd`CkviCEiV>cf4O`vCns_m6|4oE^)J|^ I+Y-h90Qb(r0RR91 literal 0 HcmV?d00001 diff --git a/dotnet/authenticate/app.config b/dotnet/authenticate/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/authenticate/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/authenticate/authenticate.csproj b/dotnet/authenticate/authenticate.csproj index c05c41f8..4483ff96 100644 --- a/dotnet/authenticate/authenticate.csproj +++ b/dotnet/authenticate/authenticate.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe authenticate authenticate + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/client_example_async/app.config b/dotnet/client_example_async/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/client_example_async/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/client_example_async/client_example_async.csproj b/dotnet/client_example_async/client_example_async.csproj index 86340d04..25a0c235 100644 --- a/dotnet/client_example_async/client_example_async.csproj +++ b/dotnet/client_example_async/client_example_async.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -7,7 +7,7 @@ Exe client_example_async client_example_async - v4.0 + v4.8 diff --git a/dotnet/client_example_setting_groups/app.config b/dotnet/client_example_setting_groups/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/client_example_setting_groups/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/client_example_setting_groups/client_example_setting_groups.csproj b/dotnet/client_example_setting_groups/client_example_setting_groups.csproj index 9030d71b..c35fc669 100644 --- a/dotnet/client_example_setting_groups/client_example_setting_groups.csproj +++ b/dotnet/client_example_setting_groups/client_example_setting_groups.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,7 +7,8 @@ Exe clientexamplesettinggroup client-example-setting-group - v4.5 + v4.8 + true @@ -41,4 +42,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/control/app.config b/dotnet/control/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/control/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/control/control.csproj b/dotnet/control/control.csproj index efe7f4ca..baf5062a 100644 --- a/dotnet/control/control.csproj +++ b/dotnet/control/control.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe control control + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/datasets/app.config b/dotnet/datasets/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/datasets/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/datasets/datasets.csproj b/dotnet/datasets/datasets.csproj index 312ccbfd..94e90ba5 100644 --- a/dotnet/datasets/datasets.csproj +++ b/dotnet/datasets/datasets.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe datasets datasets + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/example1/app.config b/dotnet/example1/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/example1/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/example1/example1.csproj b/dotnet/example1/example1.csproj index 592905b5..da7f380a 100644 --- a/dotnet/example1/example1.csproj +++ b/dotnet/example1/example1.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -7,6 +7,8 @@ Exe example1 example1 + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/example2/app.config b/dotnet/example2/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/example2/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/example2/example2.csproj b/dotnet/example2/example2.csproj index 612fcdb5..99d490e2 100644 --- a/dotnet/example2/example2.csproj +++ b/dotnet/example2/example2.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe example2 example2 + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/example3/app.config b/dotnet/example3/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/example3/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/example3/example3.csproj b/dotnet/example3/example3.csproj index 4f60434a..189e432e 100644 --- a/dotnet/example3/example3.csproj +++ b/dotnet/example3/example3.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe example3 example3 + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/files/app.config b/dotnet/files/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/files/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/files/files.csproj b/dotnet/files/files.csproj index ba8c3186..6b943901 100644 --- a/dotnet/files/files.csproj +++ b/dotnet/files/files.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe files files + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/goose_subscriber/app.config b/dotnet/goose_subscriber/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/goose_subscriber/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/goose_subscriber/goose_subscriber.csproj b/dotnet/goose_subscriber/goose_subscriber.csproj index 077b65df..90b21bdb 100644 --- a/dotnet/goose_subscriber/goose_subscriber.csproj +++ b/dotnet/goose_subscriber/goose_subscriber.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,7 +7,8 @@ Exe goose_subscriber goose_subscriber - v4.5 + v4.8 + true @@ -41,4 +42,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/log_client/app.config b/dotnet/log_client/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/log_client/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/log_client/log_client.csproj b/dotnet/log_client/log_client.csproj index f9defe5c..8dc5eb5d 100644 --- a/dotnet/log_client/log_client.csproj +++ b/dotnet/log_client/log_client.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,7 +7,8 @@ Exe log_client log_client - v4.0 + v4.8 + true @@ -18,6 +19,7 @@ prompt 4 true + false full @@ -26,6 +28,7 @@ prompt 4 true + false @@ -41,4 +44,7 @@ IEC61850.NET - + + + + \ No newline at end of file diff --git a/dotnet/model_browsing/app.config b/dotnet/model_browsing/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/model_browsing/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/model_browsing/model_browsing.csproj b/dotnet/model_browsing/model_browsing.csproj index 8162b3f8..de4fc963 100644 --- a/dotnet/model_browsing/model_browsing.csproj +++ b/dotnet/model_browsing/model_browsing.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe model_browsing model_browsing + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/report_new_dataset/app.config b/dotnet/report_new_dataset/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/report_new_dataset/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/report_new_dataset/report_new_dataset.csproj b/dotnet/report_new_dataset/report_new_dataset.csproj index ccf2dc93..fb520387 100644 --- a/dotnet/report_new_dataset/report_new_dataset.csproj +++ b/dotnet/report_new_dataset/report_new_dataset.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,6 +7,8 @@ Exe report_new_dataset report_new_dataset + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 true + false none @@ -25,6 +28,7 @@ prompt 4 true + false @@ -40,4 +44,7 @@ IEC61850.NET + + + \ No newline at end of file diff --git a/dotnet/reporting/app.config b/dotnet/reporting/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/reporting/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/reporting/reporting.csproj b/dotnet/reporting/reporting.csproj index 53a5829e..bed208a4 100644 --- a/dotnet/reporting/reporting.csproj +++ b/dotnet/reporting/reporting.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -22,6 +22,8 @@ false false true + v4.8 + true @@ -33,6 +35,7 @@ 4 true true + false none @@ -41,6 +44,7 @@ prompt 4 true + false @@ -78,4 +82,7 @@ true - + + + + \ No newline at end of file diff --git a/dotnet/server1/app.config b/dotnet/server1/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/server1/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/server1/server1.csproj b/dotnet/server1/server1.csproj index ab6d9c85..c0cd3eb3 100644 --- a/dotnet/server1/server1.csproj +++ b/dotnet/server1/server1.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -7,7 +7,7 @@ Exe server1 server1 - v4.0 + v4.8 @@ -28,6 +28,7 @@ prompt 4 true + false @@ -44,6 +45,7 @@ + PreserveNewest diff --git a/dotnet/server_goose_publisher/App.config b/dotnet/server_goose_publisher/App.config index 731f6de6..4bfa0056 100644 --- a/dotnet/server_goose_publisher/App.config +++ b/dotnet/server_goose_publisher/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/dotnet/server_goose_publisher/server_goose_publisher.csproj b/dotnet/server_goose_publisher/server_goose_publisher.csproj index 5cf3a856..4405a074 100644 --- a/dotnet/server_goose_publisher/server_goose_publisher.csproj +++ b/dotnet/server_goose_publisher/server_goose_publisher.csproj @@ -8,10 +8,11 @@ Exe server_goose_publisher server_goose_publisher - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/dotnet/sv_subscriber/app.config b/dotnet/sv_subscriber/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/sv_subscriber/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/sv_subscriber/sv_subscriber.csproj b/dotnet/sv_subscriber/sv_subscriber.csproj index 4d0fa10d..400ab39a 100644 --- a/dotnet/sv_subscriber/sv_subscriber.csproj +++ b/dotnet/sv_subscriber/sv_subscriber.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -7,7 +7,7 @@ Exe sv_subscriber sv_subscriber - v4.0 + v4.8 @@ -19,6 +19,7 @@ prompt 4 true + false full @@ -27,6 +28,7 @@ prompt 4 true + false @@ -42,4 +44,7 @@ IEC61850.NET - + + + + \ No newline at end of file diff --git a/dotnet/tests/tests.csproj b/dotnet/tests/tests.csproj index ecaf4e89..e7c7349b 100644 --- a/dotnet/tests/tests.csproj +++ b/dotnet/tests/tests.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -7,6 +7,8 @@ Library tests tests + v4.8 + true @@ -17,6 +19,7 @@ prompt 4 false + false none @@ -25,6 +28,7 @@ prompt 4 false + false diff --git a/dotnet/tls_client_example/app.config b/dotnet/tls_client_example/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/tls_client_example/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/tls_client_example/tls_client_example.csproj b/dotnet/tls_client_example/tls_client_example.csproj index 389abef9..44e6086e 100644 --- a/dotnet/tls_client_example/tls_client_example.csproj +++ b/dotnet/tls_client_example/tls_client_example.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,7 +7,8 @@ Exe tls_client_example tls_client_example - v4.5 + v4.8 + true @@ -42,6 +43,7 @@ + PreserveNewest diff --git a/dotnet/tls_server_example/app.config b/dotnet/tls_server_example/app.config new file mode 100644 index 00000000..3e0e37cf --- /dev/null +++ b/dotnet/tls_server_example/app.config @@ -0,0 +1,3 @@ + + + diff --git a/dotnet/tls_server_example/tls_server_example.csproj b/dotnet/tls_server_example/tls_server_example.csproj index 012dd760..2015bd55 100644 --- a/dotnet/tls_server_example/tls_server_example.csproj +++ b/dotnet/tls_server_example/tls_server_example.csproj @@ -1,5 +1,5 @@ - - + + Debug AnyCPU @@ -7,7 +7,8 @@ Exe tls_server_example tls_server_example - v4.5 + v4.8 + true @@ -42,6 +43,7 @@ + PreserveNewest