diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-11-29 15:50:24 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-11-29 15:50:24 +0300 |
commit | 3eb118d6db672eb8e27f2b2478b0688141782654 (patch) | |
tree | 02fc5455edfbc0d5bcdf17e366185985531c1441 /app.config | |
parent | 0fe8e038af7f33eae824bba263e7c54dea829679 (diff) |
Async/await ready solution init commit
Diffstat (limited to 'app.config')
-rw-r--r-- | app.config | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app.config b/app.config new file mode 100644 index 0000000..59eda38 --- /dev/null +++ b/app.config @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<configuration> + <runtime> + <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> + <dependentAssembly> + <assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> + <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> + </dependentAssembly> + <dependentAssembly> + <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> + <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> + </dependentAssembly> + </assemblyBinding> + </runtime> +<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration> |