Initial Commit after switching from SVN to git

This commit is contained in:
2026-05-03 01:43:52 +02:00
parent ab8638e5bb
commit a4284234b2
910 changed files with 359931 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
# Copilot Instructions
## Project Overview
- **Fuchs Intranet** is an ASP.NET Core (.NET 10) web application — the intranet IS the entire website, served from `/`.
- Routes: `/{fn?}/{id?}/{code?}``IntranetController.Index`; `/do/{fn?}/{id?}/{code?}``IntranetController.Do`.
- Project structure (relative to `Fuchs/`):
- `Controllers/``IntranetController` partials (no area)
- `code/` — business logic, PDF, email, widgets, data models
- `css/intranet/` — intranet SCSS source files
- `js/intranet/` — intranet JS source files (modules in `js/intranet/modules/`)
- `Data/` — static data assets (images for PDF, HTML files)
- `Views/Intranet/` — Razor views; `Views/Shared/_Layout.cshtml`; `Views/Partials/`
## Coding Standards
- All code must be written in C#.
- Keep files to a limit of 400 (max 600) lines of code to ensure maintainability and readability. Proactively refactor larger files into smaller, focused classes or components as needed.
- Follow standard C# naming conventions (PascalCase for classes and methods, camelCase for variables and parameters).
- Use modern, performance-oriented C# .NET 10 features and best practices, such as async/await for asynchronous programming, LINQ for data manipulation, and dependency injection for better testability and maintainability.
## Configuration
- All application settings live in `Fuchs/appsettings.json`**do not use `Web.config` or `System.Configuration.ConfigurationManager`**.
- App-specific settings are nested under the `"Fuchs"` key (e.g., `_config["Fuchs:SMS_APIKey"]`).
- Connection strings are stored under the standard `"ConnectionStrings"` key and read via `IConfiguration.GetConnectionString(...)`.
- `FuchsOcmsIntranet.Initialize(configuration)` must be called at app start (in `Program.cs`) before DI registration; `Fuchs_intranet` receives `IConfiguration` via its constructor.
- `appsettings.Development.json` (git-ignored) can override secrets for local development.
## Libraries
- Do not upgrade Spire.PDF beyond version 8.10.5.
- Make use of OCORE libraries where possible, especially for common tasks such as logging, configuration management, and data access.
- Whenever possible, prefer OCORE_web_pdf / OCORE PDF functions for PDF-related tasks over rewriting.
- Do not use OCMS or OCMS_sharp; use only OCORE or OCORE_web.
@@ -0,0 +1,57 @@
---
applyTo: "Fuchs_DataService/**"
---
# Fuchs_DataService Instructions
## Overview
`Fuchs_DataService` is a .NET 10 Windows Service (via **Topshelf**) that synchronises MFR entity data into the Fuchs SQL database on a configurable schedule.
## Key Classes
| Class | Role |
|-------|------|
| `FdsMainModule` | Entry point — builds `LoggerFactory`, creates `FdsService`, runs Topshelf |
| `FdsService` | Topshelf `ServiceControl` — owns `PeriodicHostedService` lifecycle |
| `PeriodicHostedService` | Runs one or more `PeriodicJobDefinition` jobs independently |
| `FdsMfr : IFdsMfr` | Singleton business logic — registered via DI constructor injection |
| `FdsMfrClient` | Wraps `MFRClient` + SQL write logic; instantiated per-use inside `FdsMfr` |
| `Archive` (FdsZip) | SevenZip wrapper; created per-use, accepts optional `ILogger<Archive>` |
| `FdsConfig` | Static config accessor — reads from `appsettings.json` under `Fds:` key |
| `FdsShared` | Static SQL/stream helpers — use `FdsDebug.DebugLog` for errors in static methods |
| `FdsDebug` | Legacy static logger — **only for use in static helper methods** |
| `FdsLoggerProvider` | Custom `ILoggerProvider`: Debug output + file + prepared DB logging |
## Dependency Injection
`FdsMfr` is the main business singleton. It receives:
- `ILogger<FdsMfr>` — for its own logging
- `ILoggerFactory` — to create loggers for `FdsMfrClient` and `Archive` it instantiates
```csharp
// FdsService constructor
var mfr = new FdsMfr(loggerFactory.CreateLogger<FdsMfr>(), loggerFactory);
```
## Configuration (`appsettings.json`)
```json
{
"ConnectionStrings": {
"fuchs_fds_ConnectionString": "...",
"fuchs_ConnectionString": "..."
},
"Fds": {
"ExecutionFrequency_Minutes": 15,
"DebugDetails": false,
"MFR_UserName": "...",
"MFR_Password": "...",
"MFR_host": "https://..."
}
}
```
## Rules
- Do **not** use `System.Configuration.ConfigurationManager` — always use `FdsConfig` / `IConfiguration`.
- Do **not** use `OCMS` or `OCMS_sharp`.
- Use `FdsSqlOptions` for all SQL calls (`getSQLDatatable_async`, `getSQLDataSet_async`, `setSQLValue_async`).
- Classes that run async work must use `async/await` — never `.Wait()` or `.Result` in new code.
- Add new periodic jobs as `PeriodicJobDefinition` entries in `FdsService` — see `periodic_service.instructions.md`.
- Logging: see `logging.instructions.md`.
@@ -0,0 +1,176 @@
# Frontend Instructions
## General Rules
- **Never edit files inside `wwwroot/` directly.** All output files are generated by the Gulp build pipeline.
- All stylesheet sources must be written in **SCSS** (`.scss`), not plain CSS.
- After adding or changing source files, ensure they are listed in `Fuchs/bdlconfig.json` so they are picked up by the build.
## Source File Locations
| Type | Source path |
|------|-------------|
| SCSS (shared/global) | `Fuchs/css/intranet/` |
| SCSS (module-specific) | `Fuchs/js/intranet/modules/<module>/` (co-located with the module JS) |
| JavaScript (core) | `Fuchs/js/intranet/` |
| JavaScript (modules) | `Fuchs/js/intranet/modules/<module>/` |
## Output / Bundle Locations
All bundles are written to `Fuchs/web/` by the Gulp pipeline. Do not reference these paths as source.
| Bundle | Context | Description |
|--------|---------|-------------|
| `web/fisb.min.css` | `intranet` | Bootstrap/login CSS |
| `web/fis.min.css` | `intranet` | Main intranet CSS |
| `web/fis.inv.min.css` | `intranet:inv` | Invoices module CSS |
| `web/fis.req.min.css` | `intranet:req` | Requests module CSS |
| `web/fis.rep.min.css` | `intranet:rep` | Reports module CSS |
| `web/fis.bam.min.css` | `intranet:bam` | BAM module CSS |
| `web/fisb.min.js` | `intranet` | Bootstrap/basic JS |
| `web/fis.min.js` | `intranet` | Main intranet JS |
| `web/fis.inv.de.js` | `intranet:inv` | Invoices module JS |
| `web/fis.req.de.js` | `intranet:req` | Requests module JS |
| `web/fis.rep.de.js` | `intranet:rep` | Reports module JS |
| `web/fis.bam.de.js` | `intranet:bam` | BAM module JS |
## bdlconfig.json Entry Format
`Fuchs/bdlconfig.json` drives all bundle definitions. Each entry has this shape:
```json
{
"context": "intranet",
"outputFileName": "web/<bundle-name>.min.css",
"inputFiles": [
"css/intranet/oci_variables.scss",
"css/intranet/fis_variables.scss",
"css/intranet/<your-file>.scss"
],
"minify": { "enabled": true }
}
```
### SCSS Variable Prepend Rule
Every CSS bundle **must** include the two variable files as the first `inputFiles` entries, in this order:
```
css/intranet/oci_variables.scss
css/intranet/fis_variables.scss
```
These define the shared design tokens used across all SCSS files. Omitting them will cause compilation errors.
### Module Co-location Pattern
Module-specific SCSS files live alongside their JavaScript counterparts under `js/intranet/modules/<module>/`. When adding a new module:
1. Create `js/intranet/modules/<module>/<module>.scss` for module styles.
2. Add that path to the appropriate context bundle in `bdlconfig.json` (after the variable files).
3. Create `js/intranet/modules/<module>/<module>.js` for module logic.
4. Add that path to the corresponding JS bundle in `bdlconfig.json`.
## Build Pipeline
The Gulp 4 pipeline (`Fuchs/gulpfile.js`) reads `bdlconfig.json` and `copyconfig.json`.
### Available Tasks
| Command | Description |
|---------|-------------|
| `gulp min:scss` | Compile and minify all SCSS bundles |
| `gulp min:js` | Concatenate and minify all JS bundles |
| `gulp min:html` | Minify HTML bundles |
| `gulp min` | Run `min:js`, `min:scss`, and `min:html` in parallel |
| `gulp copy` | Run file copy tasks from `copyconfig.json` |
| `gulp all` | Run `min` and `copy` in parallel (full build) |
| `gulp clean` | Delete all bundle output files |
| `gulp watch` | Watch source files and rebuild on change |
Run from the `Fuchs/` directory:
```powershell
cd Fuchs
npx gulp all
```
### How SCSS Compilation Works
- All `.scss` files listed in a bundle's `inputFiles` are concatenated into a single stream, then compiled with `node-sass` via `gulp-sass`.
- The output is then minified with `gulp-cssmin` and written to `web/<bundle>.min.css`.
- `.less` files in the same bundle are compiled separately and merged with the SCSS output before minification.
### How JS Bundling Works
- All JS files listed in `inputFiles` are concatenated with `gulp-concat`.
- Files listed in `inputFiles_tominify` are individually minified with `gulp-terser` before concatenation.
- When `minify.enabled` is `true` (default), the full bundle is also minified via `gulp-terser`.
## npm Dependencies
Runtime packages available via npm (do not copy these into source manually):
| Package | Usage |
|---------|-------|
| `jquery` | DOM/AJAX |
| `js-cookie` | Cookie access |
| `fg-loadcss` | Async CSS loading (`loadCSS.js`, `onloadCSS_array.js`) |
| `tinymce` | Rich text editor |
These are copied to `web/` or `wwwroot/lib/` via `copyconfig.json` entries and the `gulp copy` task.
| Package | Destination (gulp copy) | Served at |
|---------|------------------------|-----------|
| `jquery` + `js-cookie` | concatenated into `Fuchs/web/tools.js` | `~/web/tools.js` |
| `tinymce` | `wwwroot/lib/tinymce/` | `~/lib/tinymce/tinymce.min.js` |
## Layout Asset Wiring (`Views/Shared/_Layout.cshtml`)
Asset loading follows a strict order and is split by authentication state.
### Always loaded (before auth check)
```razor
<script src="~/web/tools.js" asp-append-version="true"></script>
```
`tools.js` contains jQuery and js-cookie. It must be first so all subsequent scripts can use `$` and `Cookies`.
### Auth-conditional bundles
```razor
@if (isAuth)
{
<script src="~/lib/tinymce/tinymce.min.js"></script>
<link rel="stylesheet" href="~/web/fis.min.css" asp-append-version="true" />
<script src="~/web/fis.min.js" asp-append-version="true"></script>
}
else
{
<link rel="stylesheet" href="~/web/fisb.min.css" asp-append-version="true" />
<script src="~/web/fisb.min.js" asp-append-version="true"></script>
}
```
- **Authenticated** (`fis.*`): full intranet styles + scripts + TinyMCE rich-text editor.
- **Unauthenticated** (`fisb.*`): login-page-only styles + scripts. TinyMCE is **not** loaded.
- TinyMCE is always loaded from `~/lib/tinymce/tinymce.min.js` (copied by `gulp copy` from `node_modules/tinymce`). Never use `~/Scripts/tinymce/` — that path does not exist.
### `$ocms.auth` injection (always)
A `<script>` block is always rendered (authenticated or not) that writes the `$ocms.auth` object with the current user's id, email, and authorization level. This lets client-side code read auth state without additional requests.
### Per-page module bundles (`@section CustomHeader`)
Module bundles (`fis.inv`, `fis.req`, `fis.rep`, `fis.bam`) are **not** loaded globally. Each view that needs them renders a `@section CustomHeader` block:
```razor
@section CustomHeader {
<link rel="stylesheet" href="~/web/fis.inv.min.css" asp-append-version="true" />
<script src="~/web/fis.inv.de.js" asp-append-version="true"></script>
}
```
`_Layout.cshtml` renders `@RenderSection("CustomHeader", required: false)` inside `<head>`, so only the relevant module assets are fetched for each page.
@@ -0,0 +1,75 @@
# JavaScript Instructions
## General Rules
- **Never edit files inside `wwwroot/` directly.** All JS output files are generated by the Gulp build pipeline.
- After adding or modifying JS source files, ensure they are listed in `Fuchs/bdlconfig.json` under the correct bundle and context.
## Source File Locations
| Type | Path |
|------|------|
| Core intranet JS | `Fuchs/js/intranet/` |
| Feature module JS | `Fuchs/js/intranet/modules/<module>/` |
## Bundle Contexts
Each bundle in `bdlconfig.json` has a `context` field that determines which page(s) load it:
| Context | Loaded on |
|---------|-----------|
| `intranet` | All intranet pages |
| `intranet:inv` | Invoices module only |
| `intranet:req` | Requests module only |
| `intranet:rep` | Reports module only |
| `intranet:bam` | BAM module only |
## Adding a JS File to a Bundle
Locate the correct bundle entry in `Fuchs/bdlconfig.json` by matching the `context` and `outputFileName`, then add the source path to `inputFiles`:
```json
{
"context": "intranet:inv",
"outputFileName": "web/fis.inv.de.js",
"inputFiles": [
"js/intranet/modules/invoices/invoices.js",
"js/intranet/modules/invoices/your-new-file.js"
],
"minify": { "enabled": true }
}
```
Files listed in `inputFiles_tominify` are minified individually before concatenation (use for third-party scripts that should be minified separately).
## Adding a New Module
1. Create `Fuchs/js/intranet/modules/<module>/<module>.js`.
2. If the module needs styles, create `Fuchs/js/intranet/modules/<module>/<module>.scss`.
3. Add both files to the appropriate bundle entries in `bdlconfig.json`.
4. Run `npx gulp all` from the `Fuchs/` directory to rebuild.
## npm Packages
Use packages already declared in `Fuchs/package.json` where possible. Available runtime packages:
| Package | Global / Usage |
|---------|----------------|
| `jquery` | DOM, AJAX |
| `js-cookie` | Cookie read/write |
| `fg-loadcss` | Async CSS loading |
| `tinymce` | Rich text editor |
Do not import npm packages directly in source files — they are copied to `web/` by `gulp copy` and referenced via bundle entries in `bdlconfig.json`.
## Build Commands
Run from the `Fuchs/` directory:
```powershell
cd Fuchs
npx gulp min:js # rebuild JS bundles only
npx gulp all # full rebuild (JS + CSS + copy)
```
@@ -0,0 +1,63 @@
---
applyTo: "Fuchs/**,Fuchs_DataService/**,MFR_RESTClient/**,MT940Parser/**"
---
# Logging Instructions
## Overview
All logging in this solution uses `Microsoft.Extensions.Logging.ILogger<T>`.
**Never use** `System.Diagnostics.Debug.Print`, `Debug.WriteLine`, `Console.WriteLine`, or `OCMS.ocms_debug.debug_log` in business or library code.
## Providers
### Fuchs_DataService — `FdsLoggerProvider`
- Location: `Fuchs_DataService/Logging/FdsLoggerProvider.cs`
- Always active: **Debug output** (`System.Diagnostics.Debug.WriteLine`) + **file** (`tmp/DebugLog.txt`, `tmp/ErrorLog.txt`)
- Database logging: prepared via `WriteToDatabase()` but **disabled by default**. Activate with `FdsLoggerProvider.DatabaseLoggingEnabled = true`.
- Registered in `FdsMain.cs` via `LoggerFactory.Create(b => b.SetMinimumLevel(LogLevel.Debug).AddFdsLogging())`.
### Fuchs — `FuchsLoggerProvider`
- Location: `Fuchs/Logging/FuchsLoggerProvider.cs`
- Always active: **Debug output** + **file** (`logs/AppLog.txt`, `logs/ErrorLog.txt`)
- Database logging: prepared but **disabled by default**. Activate with `FuchsLoggerProvider.DatabaseLoggingEnabled = true`.
- Registered in `Program.cs` via `builder.Logging.SetMinimumLevel(LogLevel.Debug).AddFuchsLogging()`.
### MFR_RESTClient — Library (no provider)
- No logging provider — purely a library.
- `MFRClient` accepts `ILogger<MFRClient>?` as an optional constructor parameter.
- Defaults to `NullLogger<MFRClient>.Instance` when no logger is provided.
- Callers supply a logger from the host's `ILoggerFactory`.
### MT940Parser — Library (no provider)
- Location: `../../WebProjectComponents/MT940Parser/` (shared external component)
- No logging provider — purely a library.
- **Public entry point only**: `Parser` accepts `ILogger<Parser>?` as an optional constructor parameter and defaults to `NullLogger<Parser>.Instance`.
- **Internal sub-parsers** (`StatementParser`, `BalanceParser`, `StatementLineParser`, `AdditionalInfoParser`) are pure algorithmic classes. They **do not hold logger fields**. Parse errors are thrown as exceptions (`InvalidDataException`, `FormatException`) and caught by `Parser.Parse()`, which logs them at `LogWarning`.
- Callers supply a logger when constructing `Parser`; the sub-parsers never need one directly.
## Rules
- **DI classes** (singletons, scoped): receive `ILogger<T>` via constructor injection.
- **Library classes** (`MFRClient`, `Parser`): accept `ILogger<T>?` as an optional constructor parameter, default to `NullLogger<T>.Instance`.
- **Internal library helpers** (`StatementParser`, `BalanceParser`, `StatementLineParser`, `AdditionalInfoParser`): pure algorithmic, no logger field. Throw exceptions; the public entry-point catches and logs.
- **Static helpers** (`FdsShared`, `Banking`): accept `ILogger?` as an optional method parameter, or delegate to `FdsDebug.DebugLog` for infrastructure-level errors.
- `FdsDebug` remains the **fallback for static infrastructure code only** (stream helpers, etc.). Do not use it in new class-level code.
- Use structured logging parameters: `_logger.LogError(ex, "Message {Param}", value)` — never string interpolation in the message template.
## Log Levels
| Level | Use for |
|-------|---------|
| `LogDebug` | Timing, row counts, progress traces |
| `LogInformation` | Service start/stop, significant state changes |
| `LogWarning` | Recoverable issues, skipped items |
| `LogError` | Caught exceptions, data sync failures |
| `LogCritical` | Unrecoverable failures that stop a job |
## Enabling Database Logging
```csharp
// Fuchs_DataService
FdsLoggerProvider.DatabaseLoggingEnabled = true;
// Fuchs web
FuchsLoggerProvider.DatabaseLoggingEnabled = true;
```
Uncomment the body of `WriteToDatabase()` in the respective provider and adjust the stored procedure name.
@@ -0,0 +1,53 @@
---
applyTo: "Fuchs_DataService/**"
---
# PeriodicHostedService Instructions
## Overview
`PeriodicHostedService` (`Fuchs_DataService/PeriodicHostedService.cs`) is a `BackgroundService` that runs multiple independent jobs, each on its own `PeriodicTimer`. It is started and stopped by the Topshelf `FdsService` (see `topshelf.instructions.md`).
## Job Definition
Each job is a `PeriodicJobDefinition` record:
```csharp
public sealed record PeriodicJobDefinition(
string Name,
TimeSpan Interval,
Func<CancellationToken, Task> Execute);
```
## Registering Jobs
Jobs are created in `FdsService` constructor and passed to `PeriodicHostedService`:
```csharp
var interval = TimeSpan.FromMinutes(FdsConfig.ExecutionFrequency_Minutes);
var jobs = new[]
{
new PeriodicJobDefinition("MfrSync", interval, async ct =>
{
await mfr.UpdateIfNecessary_async(debug);
await mfr.UpdateRequested_async(debug);
await mfr.GetInvoiceFiles_async(debug);
}),
// Add more jobs with different schedules here:
// new PeriodicJobDefinition("HourlyJob", TimeSpan.FromHours(1), async ct => { ... })
};
```
## Schedules
- Each job runs on its **own independent `PeriodicTimer`** — schedules do not interfere.
- Frequencies are configured in `appsettings.json` under the `Fds` section (e.g. `Fds:ExecutionFrequency_Minutes`).
- Add new config keys for additional job intervals as needed.
## Error Handling
- Each job's `Execute` delegate is wrapped in a `try/catch` inside `RunJobAsync`.
- `OperationCanceledException` propagates normally (signals shutdown).
- All other exceptions are caught, logged via `ILogger`, and the job continues on its next tick.
## Cancellation
- `PeriodicHostedService` respects the `CancellationToken` passed to `StartAsync`.
- `FdsService.Stop()` cancels the token, then awaits `StopAsync(CancellationToken.None)`.
## Adding a New Job
1. Optionally add a new frequency key to `appsettings.json` and read it via `FdsConfig`.
2. Add a new `PeriodicJobDefinition` to the `jobs` array in `FdsService`.
3. No changes to `PeriodicHostedService` itself are needed.
@@ -0,0 +1,52 @@
---
applyTo: "Fuchs_DataService/**"
---
# Topshelf Instructions
## Overview
`Fuchs_DataService` uses **Topshelf 4.x** as the Windows Service host. The hosted jobs run inside a `PeriodicHostedService` (see `periodic_service.instructions.md`), which is managed by the Topshelf `FdsService` class.
## Structure
```
FdsMainModule.Main()
└── HostFactory.Run()
└── FdsService : ServiceControl
├── Start() → _hostedService.StartAsync(_cts.Token)
└── Stop() → _cts.Cancel() + _hostedService.StopAsync()
```
## FdsService Rules
- `FdsService` owns a `CancellationTokenSource _cts` for cooperative cancellation.
- `FdsService` builds the `ILoggerFactory` (via `LoggerFactory.Create(b => b.AddFdsLogging())`) and passes it to all job objects.
- `FdsService` constructs `FdsMfr` directly: `new FdsMfr(loggerFactory.CreateLogger<FdsMfr>(), loggerFactory)`.
- `FdsService` constructs `PeriodicHostedService` with jobs and passes `loggerFactory.CreateLogger<PeriodicHostedService>()`.
- Never use the generic `Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder` pattern here — Topshelf manages the host lifetime.
## Topshelf Configuration
```csharp
HostFactory.Run(x =>
{
x.Service<FdsService>(s =>
{
s.ConstructUsing(name => new FdsService());
s.WhenStarted((tc, host) => tc.Start(host));
s.WhenStopped((tc, host) => tc.Stop(host));
s.WhenPaused((tc, host) => tc.Stop(host));
s.WhenContinued((tc, host) => tc.Start(host));
});
x.EnablePauseAndContinue();
x.StartAutomatically();
x.RunAsLocalSystem();
x.SetDescription("MFR Data Sync");
x.SetDisplayName("MFR Data Sync");
x.SetServiceName("MFR Data Sync");
});
```
## Dev-Machine Shortcut
On machines named `digital-pc` or `digital-dpc` the service runs in-process (console) instead of installing as a Windows Service.
## Adding a New Job
Add a new `PeriodicJobDefinition` in `FdsService` constructor — see `periodic_service.instructions.md`.
@@ -0,0 +1,440 @@
Issue ID,Description,State,Severity,Story Points,Project Path,Location Kind,Path,Line,Column,Incident ID,Help Link,Assembly Name,Assembly Version,Assembly Public Key,Snippet
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor 2.9.1,,,,,"ImageProcessor, 2.9.1 Recommendation: No supported version found"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor.Plugins.WebP 1.3.0,,,,,"ImageProcessor.Plugins.WebP, 1.3.0 Recommendation: No supported version found"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor.Web 4.12.1,,,,,"ImageProcessor.Web, 4.12.1 Recommendation: No supported version found"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor.Web.Config 2.6.0,,,,,"ImageProcessor.Web.Config, 2.6.0 Recommendation: No supported version found"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.Mvc 5.2.9,,,,,"Microsoft.AspNet.Mvc, 5.2.9 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.Razor 3.2.9,,,,,"Microsoft.AspNet.Razor, 3.2.9 Recommendation: Package functionality included with new framework reference"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.TelemetryCorrelation 1.0.8,,,,,"Microsoft.AspNet.TelemetryCorrelation, 1.0.8 Recommendation: Microsoft.AspNet.TelemetryCorrelation, 1.0.3"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.WebPages 3.2.9,,,,,"Microsoft.AspNet.WebPages, 3.2.9 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.CodeDom.Providers.DotNetCompilerPlatform 4.1.0,,,,,"Microsoft.CodeDom.Providers.DotNetCompilerPlatform, 4.1.0 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.Web.Infrastructure 2.0.0,,,,,"Microsoft.Web.Infrastructure, 2.0.0 Recommendation: Package functionality included with new framework reference"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Newtonsoft.Json 13.0.3,,,,,"Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,PDFsharp 1.50.5147,,,,,"PDFsharp, 1.50.5147 Recommendation: PDFsharp, 6.2.4"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,PDFsharp-MigraDoc 1.50.5147,,,,,"PDFsharp-MigraDoc, 1.50.5147 Recommendation: PDFsharp-MigraDoc, 6.2.4"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Buffers 4.5.1,,,,,"System.Buffers, 4.5.1 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Data.DataSetExtensions 4.5.0,,,,,"System.Data.DataSetExtensions, 4.5.0 Recommendation: Package functionality included with new framework reference"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Diagnostics.DiagnosticSource 7.0.2,,,,,"System.Diagnostics.DiagnosticSource, 7.0.2 Recommendation: Remove System.Diagnostics.DiagnosticSource, and replace with new package System.Diagnostics.DiagnosticSource 10.0.5"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Formats.Asn1 8.0.0,,,,,"System.Formats.Asn1, 8.0.0 Recommendation: Remove System.Formats.Asn1, and replace with new package System.Formats.Asn1 10.0.5"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Memory 4.5.5,,,,,"System.Memory, 4.5.5 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Numerics.Vectors 4.5.0,,,,,"System.Numerics.Vectors, 4.5.0 Recommendation: Package functionality included with new framework reference"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Runtime.CompilerServices.Unsafe 6.0.0,,,,,"System.Runtime.CompilerServices.Unsafe, 6.0.0 Recommendation: Remove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Text.Encoding.CodePages 7.0.0,,,,,"System.Text.Encoding.CodePages, 7.0.0 Recommendation: Remove System.Text.Encoding.CodePages, and replace with new package System.Text.Encoding.CodePages 10.0.5"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Threading.Tasks.Extensions 4.5.4,,,,,"System.Threading.Tasks.Extensions, 4.5.4 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.ValueTuple 4.5.0,,,,,"System.ValueTuple, 4.5.0 Recommendation: Package functionality included with new framework reference"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,BouncyCastle 1.8.9,,,,,"BouncyCastle, 1.8.9 Recommendation: BouncyCastle, 1.8.9"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,BouncyCastle 1.8.9,,,,,"BouncyCastle, 1.8.9 Recommendation: This package is no longer maintainted. Please, use official BouncyCastle.Cryptography package. See https://www.bouncycastle.org/csharp/ Remove BouncyCastle, and replace with new package BouncyCastle, 1.8.9"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,BouncyCastle.Cryptography 2.3.0,,,,,"BouncyCastle.Cryptography, 2.3.0 Recommendation: BouncyCastle.Cryptography, 2.6.2"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,MimeKit 4.4.0,,,,,"MimeKit, 4.4.0 Recommendation: MimeKit, 4.15.1"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Formats.Asn1 8.0.0,,,,,"System.Formats.Asn1, 8.0.0 Recommendation: System.Formats.Asn1, 10.0.5"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,TinyMCE 6.3.1,,,,,"TinyMCE, 6.3.1 Recommendation: TinyMCE, 8.3.2"
Project.0001,Project file needs to be converted to SDK-style,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,,,,,,
Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,,,,,,"Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb,28,24,T:System.Data.SqlClient.SqlCommand,,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb,28,24,M:System.Data.SqlClient.SqlCommand.#ctor(System.String),,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb,22,24,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,"Dim tbl As DataTable = Global.Fuchs.intranet.banking.parseToDatatable(stream:=fle.InputStream, SchemaDatatable:=SchemaDatatable)"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,188,8,T:System.Web.Mvc.ViewResult,,,,,"Protected Overrides Function IntranetView() As ViewResult Return View(""intranet"", New Global.OCMS.intranet.intranet_model(Me, True)) End Function"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,105,32,T:System.Configuration.ConfigurationManager,,,,,"Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(""ocms_serviceemail"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,105,32,P:System.Configuration.ConfigurationManager.AppSettings,,,,,"Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(""ocms_serviceemail"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet_invoices.vb,37,24,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() { SQL_BigInt(""@id"", Me.Form(""id"")), SQL_VarChar(""@entitytype"", ""report""), New SqlClient.SqlParameter(""@vat"", val), SQL_VarChar(""@userid"", Me.UserAccountID) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet_invoices.vb,37,24,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() { SQL_BigInt(""@id"", Me.Form(""id"")), SQL_VarChar(""@entitytype"", ""report""), New SqlClient.SqlParameter(""@vat"", val), SQL_VarChar(""@userid"", Me.UserAccountID) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1028,24,"M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)",,,,,"singlelineimage.SetPixel(x, y, System.Drawing.Color.Black)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1027,20,P:System.Drawing.Image.Height,,,,,For y As Integer = 0 To singlelineimage.Height - 1
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1026,16,P:System.Drawing.Image.Width,,,,,For x As Integer = 0 To singlelineimage.Width - 1
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1025,16,T:System.Drawing.Bitmap,,,,,"Dim singlelineimage As New System.Drawing.Bitmap(20, 1)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1025,16,"M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)",,,,,"Dim singlelineimage As New System.Drawing.Bitmap(20, 1)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,723,8,T:System.Drawing.Bitmap,,,,,"Public Function getPaycode(iban As String, bic As String, name As String, amount As Decimal, purpose As String) As System.Drawing.Bitmap Try 'Dim totp As New OtpNet.Totp(rfcKey) Dim generator As New QRCoder.PayloadGenerator.Girocode(iban:=iban, bic:=bic, name:=name, amount:=amount, typeOfRemittance:=QRCoder.PayloadGenerator.Girocode.TypeOfRemittance.Unstructured, remittanceInformation:=purpose) Dim payload As String = generator.ToString() Dim qrGenerator As New QRCoder.QRCodeGenerator() Dim qrCodeData As QRCoder.QRCodeData = qrGenerator.CreateQrCode(payload, QRCoder.QRCodeGenerator.ECCLevel.Q) Dim qrCode As New QRCoder.QRCode(qrCodeData) Return qrCode.GetGraphic(20) Catch ex As Exception Return Nothing End Try End Function"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,734,16,T:System.Drawing.Bitmap,,,,,Return qrCode.GetGraphic(20)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,687,20,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,Debug.Print(ex.Message & vbNewLine & ex.StackTrace)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,634,24,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,Debug.Print(gcex.Message & vbNewLine & gcex.StackTrace)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,629,24,T:System.Drawing.Bitmap,,,,,"Dim girocode As Drawing.Bitmap = getPaycode(iban:=""DE52301502000002091478"", bic:=""WELADED1KSD"", name:=""Sebastian Fuchs Bad und Heizung"", amount:=payamount, purpose:=""Rechnung "" & Rm.InvoiceId)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,483,20,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,Debug.Print(ex.Message & vbNewLine & ex.StackTrace)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,435,16,P:System.Data.SqlClient.SqlParameter.Value,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,435,16,T:System.Data.SqlClient.SqlParameter,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,435,16,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)",,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,221,16,P:System.Data.SqlClient.SqlParameter.Value,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,221,16,T:System.Data.SqlClient.SqlParameter,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,221,16,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)",,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,318,24,M:System.Net.WebRequest.Create(System.String),,,,,Dim wqrequest As Net.HttpWebRequest = Net.WebRequest.Create(turib.ToString)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,43,28,T:System.Drawing.Imaging.ImageFormat,,,,,"Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(""/"") & ""intranet/"", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & "".png"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,43,28,T:System.Drawing.Imaging.ImageFormat,,,,,"Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(""/"") & ""intranet/"", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & "".png"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,43,28,P:System.Drawing.Imaging.ImageFormat.Png,,,,,"Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(""/"") & ""intranet/"", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & "".png"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,286,16,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,286,16,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,278,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,278,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,274,32,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,274,32,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,T:System.Web.Mvc.ContentResult,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,253,36,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,253,36,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,221,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,221,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,219,28,P:System.Web.Mvc.FileResult.FileDownloadName,,,,,"Return New Mvc.FileContentResult(chart, ""image/png"") With {.FileDownloadName = report.Replace("" "", ""_"") & ""_"" & Now().ToString(""yyyyMMdd_HHmm"") & "".png""}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,219,28,T:System.Web.Mvc.FileContentResult,,,,,"Return New Mvc.FileContentResult(chart, ""image/png"") With {.FileDownloadName = report.Replace("" "", ""_"") & ""_"" & Now().ToString(""yyyyMMdd_HHmm"") & "".png""}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,219,28,"M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String)",,,,,"Return New Mvc.FileContentResult(chart, ""image/png"") With {.FileDownloadName = report.Replace("" "", ""_"") & ""_"" & Now().ToString(""yyyyMMdd_HHmm"") & "".png""}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,214,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,214,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,T:System.Web.Mvc.ContentResult,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,187,32,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,187,32,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,171,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,171,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,T:System.Web.Mvc.ContentResult,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,160,32,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,160,32,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,142,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim Catalog As SQLDataTable = Await getSQLDatatable_async(""EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;"", ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@report_name"", report), New SqlClient.SqlParameter(""@authuser"", ctrl.UserAccountID)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,142,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim Catalog As SQLDataTable = Await getSQLDatatable_async(""EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;"", ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@report_name"", report), New SqlClient.SqlParameter(""@authuser"", ctrl.UserAccountID)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,105,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""OCMS_EmailSettings""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,94,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""FDS_Intranet_DebugState""),Boolean)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,85,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""FDS_EmailSettings""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,73,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""EmailTestAddresses""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,64,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""EmailSettings""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,433,12,M:System.TimeSpan.FromMilliseconds(System.Double),,,,,"Return Regex.IsMatch(email, ""^(?("""")("""".+?(?<!\\)""""@)|(([0-9a-z]((\.(?!\.))|[-!#\$%&'\*\+/=\?\^`\{\}\|~\w])*)(?<=[0-9a-z])@))"" + ""(?(\[)(\[(\d{1,3}\.){3}\d{1,3}\])|(([0-9a-z][-0-9a-z]*[0-9a-z]*\.)+[a-z0-9][\-a-z0-9]{0,22}[a-z0-9]))$"", RegexOptions.IgnoreCase, TimeSpan.FromMilliseconds(250))"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,426,12,M:System.TimeSpan.FromMilliseconds(System.Double),,,,,"email = Regex.Replace(email, ""(@)(.+)$"", DomainMapper, RegexOptions.None, TimeSpan.FromMilliseconds(200))"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,295,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Result = New OCMS.ExceptionResult(""Die Email konnte nicht gesendet werden."" & vbNewLine & ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,295,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Result = New OCMS.ExceptionResult(""Die Email konnte nicht gesendet werden."" & vbNewLine & ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,183,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Result = New ExceptionResult(statusDescription:=""Die Email konnte nicht gesendet werden."" & If(ErrorMessage.Count > 0, vbNewLine & ErrorMessage.ToArray.join(vbNewLine), """"), InternalCode:=OCMS_StatusCodes.exception)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,183,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Result = New ExceptionResult(statusDescription:=""Die Email konnte nicht gesendet werden."" & If(ErrorMessage.Count > 0, vbNewLine & ErrorMessage.ToArray.join(vbNewLine), """"), InternalCode:=OCMS_StatusCodes.exception)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,178,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Console.WriteLine(""Errors: "" & ErrorMessage.ToArray.join(vbNewLine))"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,169,20,T:System.Web.Mvc.HttpStatusCodeResult,,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,169,20,M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode),,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,166,20,T:System.Web.Mvc.HttpStatusCodeResult,,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,166,20,M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode),,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,65,8,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"body.append(New SOC(""p"").rwText(""Hallo Sebastian!"" & vbNewLine & Name & "" hat Interesse Teil des Teams zu werden."" & vbNewLine & ""Hier sind die Infos:""))"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,65,8,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"body.append(New SOC(""p"").rwText(""Hallo Sebastian!"" & vbNewLine & Name & "" hat Interesse Teil des Teams zu werden."" & vbNewLine & ""Hier sind die Infos:""))"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,24,4,T:System.Web.HttpPostedFileWrapper,,,,,Public Sub New(fle As HttpPostedFileWrapper) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,31,8,P:System.Web.HttpPostedFileWrapper.FileName,,,,,Me.filename = fle.FileName
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,27,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.CopyTo(memoryStream)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,26,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.Position = 0
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,14,4,T:System.Web.HttpPostedFile,,,,,Public Sub New(fle As HttpPostedFile) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,21,8,P:System.Web.HttpPostedFile.FileName,,,,,Me.filename = fle.FileName
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,17,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.CopyTo(memoryStream)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,16,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.Position = 0
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,24,4,T:System.Web.HttpPostedFileWrapper,,,,,Public Sub New(fle As HttpPostedFileWrapper) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,31,8,P:System.Web.HttpPostedFileWrapper.FileName,,,,,Me.filename = fle.FileName
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,27,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.CopyTo(memoryStream)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,26,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.Position = 0
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,14,4,T:System.Web.HttpPostedFile,,,,,Public Sub New(fle As HttpPostedFile) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,21,8,P:System.Web.HttpPostedFile.FileName,,,,,Me.filename = fle.FileName
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,17,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.CopyTo(memoryStream)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,16,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.Position = 0
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,60,4,T:System.Web.HttpFileCollectionBase,,,,,"Public Async Function sendSummary(ByVal Controller As Global.OCMS.ocms_ClientController, planner As String, session As String, files As HttpFileCollectionBase) As Threading.Tasks.Task(Of Boolean) Dim summary As PlannerSummary = Await getSummary(planner, session) Dim emailfiles As New List(Of EmailFile) For fli As Integer = 0 To files.Count - 1 emailfiles.Add(New EmailFile(files(fli))) Next Return Await fuchs_email.SendEmail(Controller, summary.SummaryHtml, summary.cformdictionary(""c_email""), summary.cformdictionary(""c_name""), files:=emailfiles.ToArray) End Function"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,65,12,T:System.Web.HttpPostedFileBase,,,,,emailfiles.Add(New EmailFile(files(fli)))
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,65,12,P:System.Web.HttpFileCollectionBase.Item(System.Int32),,,,,emailfiles.Add(New EmailFile(files(fli)))
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,64,8,P:System.Web.HttpFileCollectionBase.Count,,,,,For fli As Integer = 0 To files.Count - 1
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,53,8,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,53,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,42,8,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,42,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,31,8,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,31,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,7,4,T:System.Data.SqlClient.SqlConnection,,,,,"Friend Function SqlCon() As SqlClient.SqlConnection Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString) End Function"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Configuration.ConfigurationManager,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Data.SqlClient.SqlConnection,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,T:System.Configuration.ConfigurationManager,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,8,4,T:System.Web.Routing.RouteCollection,,,,,"Public Sub RegisterRoutes(ByVal routes As RouteCollection) routes.IgnoreRoute(""{resource}.axd/{*pathInfo}"") routes.MapRoute( name:=""Sitemap"", url:=""sitemap.xml"", defaults:=New With {.controller = ""Fuchs"", .action = ""SiteMap""} ) routes.MapRoute( name:=""html"", url:=""*.html"", defaults:=New With {.controller = ""Fuchs"", .action = ""html""} ) routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} ) routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} ) 'routes.MapRoute( ' name:=""FuchsImg"", ' url:=""img/{ident}"", ' defaults:=New With {.controller = ""Fuchs"", .action = ""Img"", .ident = UrlParameter.Optional} ') routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} ) End Sub"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,F:System.Web.Mvc.UrlParameter.Optional,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,F:System.Web.Mvc.UrlParameter.Optional,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,F:System.Web.Mvc.UrlParameter.Optional,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,16,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""html"", url:=""*.html"", defaults:=New With {.controller = ""Fuchs"", .action = ""html""} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,11,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""Sitemap"", url:=""sitemap.xml"", defaults:=New With {.controller = ""Fuchs"", .action = ""SiteMap""} )"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,192,24,P:System.Web.Mvc.ContentResult.Content,,,,,html.Content = summary.SummaryHtml
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,187,24,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Dim html As New ContentResult With { .ContentType = ""text/html"" }"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,187,24,T:System.Web.Mvc.ContentResult,,,,,"Dim html As New ContentResult With { .ContentType = ""text/html"" }"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,187,24,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Dim html As New ContentResult With { .ContentType = ""text/html"" }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,152,24,T:System.Drawing.Imaging.ImageFormat,,,,,"Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=""captcha.png"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,152,24,T:System.Drawing.Imaging.ImageFormat,,,,,"Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=""captcha.png"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,152,24,P:System.Drawing.Imaging.ImageFormat.Png,,,,,"Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=""captcha.png"")"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,146,28,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,146,28,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,T:System.Web.Mvc.ContentResult,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,80,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,77,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,74,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,71,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,68,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,58,16,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,4,4,T:System.Web.Mvc.GlobalFilterCollection,,,,,Public Sub RegisterGlobalFilters(ByVal filters As GlobalFilterCollection) filters.Add(New HandleErrorAttribute()) filters.Add(New OCMS.OCMS_ActionFilterAttribute()) filters.Add(New OCMS.CompressAttribute()) End Sub
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,5,8,T:System.Web.Mvc.HandleErrorAttribute,,,,,filters.Add(New HandleErrorAttribute())
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,5,8,M:System.Web.Mvc.HandleErrorAttribute.#ctor,,,,,filters.Add(New HandleErrorAttribute())
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,5,8,M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object),,,,,filters.Add(New HandleErrorAttribute())
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,12,8,T:System.Web.Routing.RouteTable,,,,,RouteConfig.RegisterRoutes(RouteTable.Routes)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,12,8,T:System.Web.Routing.RouteCollection,,,,,RouteConfig.RegisterRoutes(RouteTable.Routes)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,12,8,P:System.Web.Routing.RouteTable.Routes,,,,,RouteConfig.RegisterRoutes(RouteTable.Routes)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,11,8,T:System.Web.Mvc.GlobalFilters,,,,,FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,11,8,T:System.Web.Mvc.GlobalFilterCollection,,,,,FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,11,8,P:System.Web.Mvc.GlobalFilters.Filters,,,,,FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,10,8,T:System.Web.Mvc.AreaRegistration,,,,,AreaRegistration.RegisterAllAreas()
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,10,8,M:System.Web.Mvc.AreaRegistration.RegisterAllAreas,,,,,AreaRegistration.RegisterAllAreas()
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,Microsoft.AspNet.Razor 3.2.9,,,,,"Microsoft.AspNet.Razor, 3.2.9 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,Microsoft.Web.Infrastructure 2.0.0,,,,,"Microsoft.Web.Infrastructure, 2.0.0 Recommendation: Package functionality included with new framework reference"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,Newtonsoft.Json 13.0.3,,,,,"Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,System.Runtime.InteropServices.RuntimeInformation 4.3.0,,,,,"System.Runtime.InteropServices.RuntimeInformation, 4.3.0 Recommendation: Package functionality included with new framework reference"
Project.0001,Project file needs to be converted to SDK-style,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,,,,,,
Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,,,,,,"Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,97,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_host""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,88,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_Password""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,79,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_UserName""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,70,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""DebugDetails""),Boolean)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,61,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""ExecutionFrequency_Minutes""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,782,40,T:System.Data.SqlClient.SqlCommand,,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand('""SELECT * INTO [t_"" & SetID.ToLower & ""_"" & tbl.TableName & ""] FROM "" & dtwa.DestinationTableName & "";"" & ""EXECUTE [dbo].["" & (tbl.TableName).Replace(""__"", ""__updt__"") & ""] @tblname, @referencetable, @tgtid;"" & ""EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;"" & If(AdditionalCommandAfter, """"))"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,782,40,M:System.Data.SqlClient.SqlCommand.#ctor(System.String),,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand('""SELECT * INTO [t_"" & SetID.ToLower & ""_"" & tbl.TableName & ""] FROM "" & dtwa.DestinationTableName & "";"" & ""EXECUTE [dbo].["" & (tbl.TableName).Replace(""__"", ""__updt__"") & ""] @tblname, @referencetable, @tgtid;"" & ""EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;"" & If(AdditionalCommandAfter, """"))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,763,40,T:System.Uri,,,,,MFR_Response = Await ReadOData(MFR_Response.nextlink.ToString)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,762,36,T:System.Uri,,,,,"If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString <> """" Then"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,762,36,T:System.Uri,,,,,"If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString <> """" Then"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,90,40,P:System.Data.SqlClient.SqlParameter.SqlDbType,,,,,"Await setSQLValue_async(""EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;"", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(""@Id"", id), SQL_VarChar(""@filename"", DocumentName), New SqlClient.SqlParameter(""@file"", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,90,40,T:System.Data.SqlClient.SqlParameter,,,,,"Await setSQLValue_async(""EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;"", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(""@Id"", id), SQL_VarChar(""@filename"", DocumentName), New SqlClient.SqlParameter(""@file"", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,90,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Await setSQLValue_async(""EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;"", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(""@Id"", id), SQL_VarChar(""@filename"", DocumentName), New SqlClient.SqlParameter(""@file"", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,223,8,T:System.Web.MimeMapping,,,,,Return System.Web.MimeMapping.GetMimeMapping(FI.Name)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,223,8,M:System.Web.MimeMapping.GetMimeMapping(System.String),,,,,Return System.Web.MimeMapping.GetMimeMapping(FI.Name)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,64,T:Microsoft.VisualBasic.MyServices.FileSystemProxy,,,,,My.Computer.FileSystem.DeleteFile(FilePath)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,64,P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem,,,,,My.Computer.FileSystem.DeleteFile(FilePath)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,64,M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String),,,,,My.Computer.FileSystem.DeleteFile(FilePath)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,12,T:Microsoft.VisualBasic.MyServices.FileSystemProxy,,,,,If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,12,P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem,,,,,If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,12,M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FileExists(System.String),,,,,If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,10,4,T:System.Data.SqlClient.SqlConnection,,,,,"Friend Function SqlCon() As SqlClient.SqlConnection Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString) End Function"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Configuration.ConfigurationManager,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Data.SqlClient.SqlConnection,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,T:System.Configuration.ConfigurationManager,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,T:System.Configuration.ConfigurationManager,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,444,12,P:System.IO.DirectoryInfo.FullName,,,,,"Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName & If(Strings.Right(TgtArchiveDirectory.FullName, 1) = ""\"", """", ""\"") & ArchiveName)"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,444,12,P:System.IO.DirectoryInfo.FullName,,,,,"Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName & If(Strings.Right(TgtArchiveDirectory.FullName, 1) = ""\"", """", ""\"") & ArchiveName)"
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,119,20,P:System.IO.DirectoryInfo.FullName,,,,,Me.ZipOut.ExtractArchive(TgtDirectory.FullName)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,114,20,P:System.IO.DirectoryInfo.FullName,,,,,"OCMS.debug_log(""DDA.intranet.Zipping Archive InitZipIn"", ex:=ex, data:=New With {.DataArchiveFilePath = DataArchiveFilePath.FullName, .TgtDirectory = TgtDirectory.FullName})"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,48,20,P:System.Reflection.AssemblyName.CodeBase,,,,,assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,48,20,T:System.Uri,,,,,assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,48,20,M:System.Uri.#ctor(System.String),,,,,assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,45,4,T:System.Data.SqlClient.SqlConnection,,,,,"<Diagnostics.DebuggerStepThrough> Public Sub DebugLog(CodeReference As String, SQLConnection As SqlClient.SqlConnection, Optional exc As Exception = Nothing, Optional data As String = """", Optional context As Object = Nothing) If CodeReference = """" OrElse IsNothing(SQLConnection) = True Then Exit Sub Dim note As String = Now.ToString(""yyyy.MM.dd HH:mm:ss"") & "" - "" & CodeReference Try Try If IsNothing(SQLConnection) = False Then Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) } Try Dim w As Integer = 0 If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close() If SQLConnection.State = ConnectionState.Connecting Then w = 0 While SQLConnection.State = ConnectionState.Connecting And w < 10 System.Threading.Thread.Sleep(100) w += 1 End While ElseIf Not SQLConnection.State = ConnectionState.Open Then SQLConnection.Open() End If w = 0 While Not SQLConnection.State = ConnectionState.Open And w < 10 System.Threading.Thread.Sleep(100) w += 1 End While Dim cmd As New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;"", SQLConnection) cmd.Parameters.AddRange(pl.ToArray) Call cmd.ExecuteNonQuery() 'SQLConnection.Close() cmd.Parameters.Clear() Catch sqlex As Exception End Try End If Catch dbex As Exception End Try If IsNothing(exc) = False Then note &= (vbCrLf & ""Exception:"" & exc.Message & vbCrLf & ""Stack:"" & exc.StackTrace.ToString).Replace(vbLf, vbLf & "" "") End If If data <> """" Then note &= (vbCrLf & ""Data:"" & data).Replace(vbLf, vbLf & "" "") End If note &= vbCrLf Dim DebugLogfile As IO.FileInfo = LogFile(""DebugLog.txt"") If DebugLogfile.Directory.Exists = True Then IO.File.AppendAllText(DebugLogfile.FullName, note) End If Catch logex As Exception Finally Console.Write(note) Debug.Print(note) End Try End Sub"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,79,24,T:System.Data.SqlClient.SqlParameterCollection,,,,,cmd.Parameters.Clear()
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,79,24,P:System.Data.SqlClient.SqlCommand.Parameters,,,,,cmd.Parameters.Clear()
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,79,24,M:System.Data.SqlClient.SqlParameterCollection.Clear,,,,,cmd.Parameters.Clear()
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,77,24,M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery,,,,,Call cmd.ExecuteNonQuery()
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,76,24,T:System.Data.SqlClient.SqlParameterCollection,,,,,cmd.Parameters.AddRange(pl.ToArray)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,76,24,P:System.Data.SqlClient.SqlCommand.Parameters,,,,,cmd.Parameters.AddRange(pl.ToArray)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,76,24,M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Data.SqlClient.SqlParameter[]),,,,,cmd.Parameters.AddRange(pl.ToArray)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,75,24,T:System.Data.SqlClient.SqlCommand,,,,,"Dim cmd As New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;"", SQLConnection)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,75,24,"M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection)",,,,,"Dim cmd As New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;"", SQLConnection)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,71,24,P:System.Data.SqlClient.SqlConnection.State,,,,,While Not SQLConnection.State = ConnectionState.Open And w < 10
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,68,28,M:System.Data.SqlClient.SqlConnection.Open,,,,,SQLConnection.Open()
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,67,24,P:System.Data.SqlClient.SqlConnection.State,,,,,ElseIf Not SQLConnection.State = ConnectionState.Open Then
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,63,28,P:System.Data.SqlClient.SqlConnection.State,,,,,While SQLConnection.State = ConnectionState.Connecting And w < 10
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,61,24,P:System.Data.SqlClient.SqlConnection.State,,,,,If SQLConnection.State = ConnectionState.Connecting Then
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,60,77,M:System.Data.SqlClient.SqlConnection.Close,,,,,SQLConnection.Close()
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,60,24,P:System.Data.SqlClient.SqlConnection.State,,,,,If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close()
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,39,8,T:System.Data.SqlClient.SqlConnection,,,,,Using con As New SqlClient.SqlConnection(SQLConnectionString)
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,39,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using con As New SqlClient.SqlConnection(SQLConnectionString)
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,19,8,T:Microsoft.VisualBasic.MyServices.FileSystemProxy,,,,,ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,19,8,P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem,,,,,ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,19,8,M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DirectoryExists(System.String),,,,,ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then
Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,9,8,P:System.IO.DirectoryInfo.FullName,,,,,Return New IO.FileInfo(AppBaseDirectory().FullName & FileName)
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.AspNet.WebApi 5.2.9,,,,,"Microsoft.AspNet.WebApi, 5.2.9 Recommendation: Package functionality included with new framework reference"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.AspNet.WebApi.Core 5.2.9,,,,,"Microsoft.AspNet.WebApi.Core, 5.2.9 Recommendation: No supported version found"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.AspNet.WebApi.WebHost 5.2.9,,,,,"Microsoft.AspNet.WebApi.WebHost, 5.2.9 Recommendation: No supported version found"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.Bcl.AsyncInterfaces 7.0.0,,,,,"Microsoft.Bcl.AsyncInterfaces, 7.0.0 Recommendation: Remove Microsoft.Bcl.AsyncInterfaces, and replace with new package Microsoft.Bcl.AsyncInterfaces 10.0.5"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.NETCore.Platforms 7.0.4,,,,,"Microsoft.NETCore.Platforms, 7.0.4 Recommendation: Package functionality included with new framework reference"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.WindowsAzure.ConfigurationManager 3.2.3,,,,,"Microsoft.WindowsAzure.ConfigurationManager, 3.2.3 Recommendation: No supported version found"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Newtonsoft.Json 13.0.3,,,,,"Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Buffers 4.5.1,,,,,"System.Buffers, 4.5.1 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.IO 4.3.0,,,,,"System.IO, 4.3.0 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Memory 4.5.5,,,,,"System.Memory, 4.5.5 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Net.Http 4.3.4,,,,,"System.Net.Http, 4.3.4 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Numerics.Vectors 4.5.0,,,,,"System.Numerics.Vectors, 4.5.0 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Runtime 4.3.1,,,,,"System.Runtime, 4.3.1 Recommendation: Package functionality included with new framework reference"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Runtime.CompilerServices.Unsafe 6.0.0,,,,,"System.Runtime.CompilerServices.Unsafe, 6.0.0 Recommendation: Remove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.Algorithms 4.3.1,,,,,"System.Security.Cryptography.Algorithms, 4.3.1 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.Encoding 4.3.0,,,,,"System.Security.Cryptography.Encoding, 4.3.0 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.Primitives 4.3.0,,,,,"System.Security.Cryptography.Primitives, 4.3.0 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.X509Certificates 4.3.2,,,,,"System.Security.Cryptography.X509Certificates, 4.3.2 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Encoding 4.3.0,,,,,"System.Text.Encoding, 4.3.0 Recommendation: Package functionality included with new framework reference"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Encodings.Web 7.0.0,,,,,"System.Text.Encodings.Web, 7.0.0 Recommendation: Remove System.Text.Encodings.Web, and replace with new package System.Text.Encodings.Web 10.0.5"
NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Json 7.0.3,,,,,"System.Text.Json, 7.0.3 Recommendation: Remove System.Text.Json, and replace with new package System.Text.Json 10.0.5"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Threading.Tasks.Extensions 4.5.4,,,,,"System.Threading.Tasks.Extensions, 4.5.4 Recommendation: Package functionality included with new framework reference"
NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.ValueTuple 4.5.0,,,,,"System.ValueTuple, 4.5.0 Recommendation: Package functionality included with new framework reference"
NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,WindowsAzure.ServiceBus 6.2.2,,,,,"WindowsAzure.ServiceBus, 6.2.2 Recommendation: No supported version found"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.Data.OData 5.8.5,,,,,"Microsoft.Data.OData, 5.8.5 Recommendation: Broken thread safe. See https://github.com/OData/odata.net/issues/2452 Remove Microsoft.Data.OData, and replace with new package Microsoft.Data.OData, 5.8.5"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Abstractions 7.0.2,,,,,"Microsoft.IdentityModel.Abstractions, 7.0.2 Recommendation: Update to latest https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.Abstractions, and replace with new package Microsoft.IdentityModel.Abstractions, 8.17.0"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Clients.ActiveDirectory 5.3.0,,,,,"Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0 Recommendation: Please note, a newer package is available Microsoft.Identity.Client. This package will continue to receive critical bug fixes until December 2022, we strongly encourage you to upgrade. See https://docs.microsoft.com/azure/active-directory/develop/msal-net-migration for Migration guide and more details. Remove Microsoft.IdentityModel.Clients.ActiveDirectory, and replace with new package Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.JsonWebTokens 7.0.2,,,,,"Microsoft.IdentityModel.JsonWebTokens, 7.0.2 Recommendation: Microsoft.IdentityModel.JsonWebTokens, 8.17.0"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.JsonWebTokens 7.0.2,,,,,"Microsoft.IdentityModel.JsonWebTokens, 7.0.2 Recommendation: Move to latest https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.JsonWebTokens, and replace with new package Microsoft.IdentityModel.JsonWebTokens, 8.17.0"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Logging 7.0.2,,,,,"Microsoft.IdentityModel.Logging, 7.0.2 Recommendation: Move to latest, see https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.Logging, and replace with new package Microsoft.IdentityModel.Logging, 8.17.0"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Tokens 7.0.2,,,,,"Microsoft.IdentityModel.Tokens, 7.0.2 Recommendation: Move to latest Microsoft.IdentityModel.Tokens. See https://aka.ms/IdentityModel/LTS, Remove Microsoft.IdentityModel.Tokens, and replace with new package Microsoft.IdentityModel.Tokens, 8.17.0"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.Rest.ClientRuntime 2.3.24,,,,,"Microsoft.Rest.ClientRuntime, 2.3.24 Recommendation: Thank you for the interest in this package. The replacement package is available https://www.nuget.org/packages/Azure.Core/, you can find more information of this new package from https://learn.microsoft.com/en-us/dotnet/api/overview/azure/core-readme?view=azure-dotnet. This package is no longer maintained. Remove Microsoft.Rest.ClientRuntime, and replace with new package Microsoft.Rest.ClientRuntime, 2.3.24"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.WindowsAzure.ConfigurationManager 3.2.3,,,,,"Microsoft.WindowsAzure.ConfigurationManager, 3.2.3 Recommendation: Please note, this package is obsolete as of 3/31/2023 and is no longer maintained or monitored. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details. Remove Microsoft.WindowsAzure.ConfigurationManager, and replace with new package Microsoft.WindowsAzure.ConfigurationManager, 3.2.3"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,RestSharp 110.2.0,,,,,"RestSharp, 110.2.0 Recommendation: RestSharp, 114.0.0"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.IdentityModel.Tokens.Jwt 7.0.2,,,,,"System.IdentityModel.Tokens.Jwt, 7.0.2 Recommendation: System.IdentityModel.Tokens.Jwt, 8.17.0"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.IdentityModel.Tokens.Jwt 7.0.2,,,,,"System.IdentityModel.Tokens.Jwt, 7.0.2 Recommendation: Move to latest https://aka.ms/IdentityModel/LTS Remove System.IdentityModel.Tokens.Jwt, and replace with new package System.IdentityModel.Tokens.Jwt, 8.17.0"
NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Json 7.0.3,,,,,"System.Text.Json, 7.0.3 Recommendation: System.Text.Json, 10.0.5"
NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,WindowsAzure.ServiceBus 6.2.2,,,,,"WindowsAzure.ServiceBus, 6.2.2 Recommendation: Please note, this package is obsolete and will no longer be maintained after 9/30/2026. Microsoft encourages you to upgrade to the replacement package, Azure.Messaging.ServiceBus, to continue receiving updates. Refer to the migration guide (https://aka.ms/azsdk/net/migrate/sb) for guidance on upgrading. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details. Remove WindowsAzure.ServiceBus, and replace with new package WindowsAzure.ServiceBus, 4.1.11"
Project.0001,Project file needs to be converted to SDK-style,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,
Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0-windows"
UpgradeScenario.0040,Migrate .NET Framework WCF services to CoreWCF,Active,Optional,5,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"WCF behavior extension: name=connectionStatusBehavior, type=Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath="
UpgradeScenario.0040,Migrate .NET Framework WCF services to CoreWCF,Active,Optional,5,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"WCF behavior extension: name=transportClientEndpointBehavior, type=Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath="
UpgradeScenario.0040,Migrate .NET Framework WCF services to CoreWCF,Active,Optional,5,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"WCF behavior extension: name=serviceRegistrySettings, type=Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath="
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,88,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Me(""MFR_Password"") = value"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,85,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_Password""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,76,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Me(""MFR_UserName"") = value"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,73,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_UserName""),String)"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,64,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Me(""MFR_host"") = value"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,61,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_host""),String)"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,20,16,T:System.Uri,,,,,Me._nextlink = Nothing
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,M:System.Uri.#ctor(System.String),,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,M:System.Uri.#ctor(System.String),,,,,"Me._metadata = New Uri(O(""odata.metadata""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,4,0,T:System.Uri,,,,,Public Property nextlink As Uri
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,4,0,T:System.Uri,,,,,Public Property metadata As Uri
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,20,16,T:System.Uri,,,,,Me._nextlink = Nothing
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,M:System.Uri.#ctor(System.String),,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,M:System.Uri.#ctor(System.String),,,,,"Me._metadata = New Uri(O(""odata.metadata""))"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))"
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,126,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Diagnostics.Debug.Print(""execute rest issue: "" & message + Environment.NewLine + response.StatusDescription & vbNewLine & "" "" & request.Resource.ToString)"
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,67,20,T:System.Uri,,,,,fle = .DownloadData(New Uri(address))
Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,67,20,M:System.Uri.#ctor(System.String),,,,,fle = .DownloadData(New Uri(address))
Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,60,8,M:System.Net.WebClient.#ctor,,,,,Using WC As New System.Net.WebClient
Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj,File,P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj,,,,,,,,Current target framework: netstandard2.0;net472 Recommended target framework: netstandard2.0;net472;net10.0
1 Issue ID Description State Severity Story Points Project Path Location Kind Path Line Column Incident ID Help Link Assembly Name Assembly Version Assembly Public Key Snippet
2 NuGet.0001 NuGet package is incompatible Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj ImageProcessor 2.9.1 ImageProcessor, 2.9.1 Recommendation: No supported version found
3 NuGet.0001 NuGet package is incompatible Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj ImageProcessor.Plugins.WebP 1.3.0 ImageProcessor.Plugins.WebP, 1.3.0 Recommendation: No supported version found
4 NuGet.0001 NuGet package is incompatible Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj ImageProcessor.Web 4.12.1 ImageProcessor.Web, 4.12.1 Recommendation: No supported version found
5 NuGet.0001 NuGet package is incompatible Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj ImageProcessor.Web.Config 2.6.0 ImageProcessor.Web.Config, 2.6.0 Recommendation: No supported version found
6 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Microsoft.AspNet.Mvc 5.2.9 Microsoft.AspNet.Mvc, 5.2.9 Recommendation: Package functionality included with new framework reference
7 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Microsoft.AspNet.Razor 3.2.9 Microsoft.AspNet.Razor, 3.2.9 Recommendation: Package functionality included with new framework reference
8 NuGet.0001 NuGet package is incompatible Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Microsoft.AspNet.TelemetryCorrelation 1.0.8 Microsoft.AspNet.TelemetryCorrelation, 1.0.8 Recommendation: Microsoft.AspNet.TelemetryCorrelation, 1.0.3
9 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Microsoft.AspNet.WebPages 3.2.9 Microsoft.AspNet.WebPages, 3.2.9 Recommendation: Package functionality included with new framework reference
10 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Microsoft.CodeDom.Providers.DotNetCompilerPlatform 4.1.0 Microsoft.CodeDom.Providers.DotNetCompilerPlatform, 4.1.0 Recommendation: Package functionality included with new framework reference
11 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Microsoft.Web.Infrastructure 2.0.0 Microsoft.Web.Infrastructure, 2.0.0 Recommendation: Package functionality included with new framework reference
12 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Newtonsoft.Json 13.0.3 Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4
13 NuGet.0001 NuGet package is incompatible Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj PDFsharp 1.50.5147 PDFsharp, 1.50.5147 Recommendation: PDFsharp, 6.2.4
14 NuGet.0001 NuGet package is incompatible Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj PDFsharp-MigraDoc 1.50.5147 PDFsharp-MigraDoc, 1.50.5147 Recommendation: PDFsharp-MigraDoc, 6.2.4
15 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Buffers 4.5.1 System.Buffers, 4.5.1 Recommendation: Package functionality included with new framework reference
16 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Data.DataSetExtensions 4.5.0 System.Data.DataSetExtensions, 4.5.0 Recommendation: Package functionality included with new framework reference
17 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Diagnostics.DiagnosticSource 7.0.2 System.Diagnostics.DiagnosticSource, 7.0.2 Recommendation: Remove System.Diagnostics.DiagnosticSource, and replace with new package System.Diagnostics.DiagnosticSource 10.0.5
18 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Formats.Asn1 8.0.0 System.Formats.Asn1, 8.0.0 Recommendation: Remove System.Formats.Asn1, and replace with new package System.Formats.Asn1 10.0.5
19 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Memory 4.5.5 System.Memory, 4.5.5 Recommendation: Package functionality included with new framework reference
20 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Numerics.Vectors 4.5.0 System.Numerics.Vectors, 4.5.0 Recommendation: Package functionality included with new framework reference
21 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Runtime.CompilerServices.Unsafe 6.0.0 System.Runtime.CompilerServices.Unsafe, 6.0.0 Recommendation: Remove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2
22 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Text.Encoding.CodePages 7.0.0 System.Text.Encoding.CodePages, 7.0.0 Recommendation: Remove System.Text.Encoding.CodePages, and replace with new package System.Text.Encoding.CodePages 10.0.5
23 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Threading.Tasks.Extensions 4.5.4 System.Threading.Tasks.Extensions, 4.5.4 Recommendation: Package functionality included with new framework reference
24 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.ValueTuple 4.5.0 System.ValueTuple, 4.5.0 Recommendation: Package functionality included with new framework reference
25 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj BouncyCastle 1.8.9 BouncyCastle, 1.8.9 Recommendation: BouncyCastle, 1.8.9
26 NuGet.0005 NuGet package is deprecated Active Optional 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj BouncyCastle 1.8.9 BouncyCastle, 1.8.9 Recommendation: This package is no longer maintainted. Please, use official BouncyCastle.Cryptography package. See https://www.bouncycastle.org/csharp/ Remove BouncyCastle, and replace with new package BouncyCastle, 1.8.9
27 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj BouncyCastle.Cryptography 2.3.0 BouncyCastle.Cryptography, 2.3.0 Recommendation: BouncyCastle.Cryptography, 2.6.2
28 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj MimeKit 4.4.0 MimeKit, 4.4.0 Recommendation: MimeKit, 4.15.1
29 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj System.Formats.Asn1 8.0.0 System.Formats.Asn1, 8.0.0 Recommendation: System.Formats.Asn1, 10.0.5
30 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj TinyMCE 6.3.1 TinyMCE, 6.3.1 Recommendation: TinyMCE, 8.3.2
31 Project.0001 Project file needs to be converted to SDK-style Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj
32 Project.0002 Project's target framework(s) needs to be changed Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Fuchs.vbproj Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0
33 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb 28 24 T:System.Data.SqlClient.SqlCommand dtwa.CommandAfter = New SqlClient.SqlCommand("EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;")
34 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb 28 24 M:System.Data.SqlClient.SqlCommand.#ctor(System.String) dtwa.CommandAfter = New SqlClient.SqlCommand("EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;")
35 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb 22 24 P:System.Web.HttpPostedFileWrapper.InputStream Dim tbl As DataTable = Global.Fuchs.intranet.banking.parseToDatatable(stream:=fle.InputStream, SchemaDatatable:=SchemaDatatable)
36 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 188 8 T:System.Web.Mvc.ViewResult Protected Overrides Function IntranetView() As ViewResult Return View("intranet", New Global.OCMS.intranet.intranet_model(Me, True)) End Function
37 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 146 28 P:System.Web.Mvc.ContentResult.ContentEncoding Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> "", "/" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = "text/json", .ContentEncoding = Encoding.UTF8}
38 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 146 28 P:System.Web.Mvc.ContentResult.ContentType Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> "", "/" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = "text/json", .ContentEncoding = Encoding.UTF8}
39 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 146 28 P:System.Web.Mvc.ContentResult.Content Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> "", "/" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = "text/json", .ContentEncoding = Encoding.UTF8}
40 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 146 28 T:System.Web.Mvc.ContentResult Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> "", "/" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = "text/json", .ContentEncoding = Encoding.UTF8}
41 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 146 28 M:System.Web.Mvc.ContentResult.#ctor Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> "", "/" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = "text/json", .ContentEncoding = Encoding.UTF8}
42 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 144 28 P:System.Web.Mvc.ContentResult.ContentEncoding Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = "text/xml", .ContentEncoding = Encoding.UTF8}
43 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 144 28 P:System.Web.Mvc.ContentResult.ContentType Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = "text/xml", .ContentEncoding = Encoding.UTF8}
44 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 144 28 P:System.Web.Mvc.ContentResult.Content Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = "text/xml", .ContentEncoding = Encoding.UTF8}
45 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 144 28 T:System.Web.Mvc.ContentResult Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = "text/xml", .ContentEncoding = Encoding.UTF8}
46 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 144 28 M:System.Web.Mvc.ContentResult.#ctor Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = "text/xml", .ContentEncoding = Encoding.UTF8}
47 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 105 32 T:System.Configuration.ConfigurationManager Dim sets As String = System.Configuration.ConfigurationManager.AppSettings("ocms_serviceemail")
48 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb 105 32 P:System.Configuration.ConfigurationManager.AppSettings Dim sets As String = System.Configuration.ConfigurationManager.AppSettings("ocms_serviceemail")
49 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet_invoices.vb 37 24 T:System.Data.SqlClient.SqlParameter Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() { SQL_BigInt("@id", Me.Form("id")), SQL_VarChar("@entitytype", "report"), New SqlClient.SqlParameter("@vat", val), SQL_VarChar("@userid", Me.UserAccountID) })
50 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_ocms_intranet_invoices.vb 37 24 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() { SQL_BigInt("@id", Me.Form("id")), SQL_VarChar("@entitytype", "report"), New SqlClient.SqlParameter("@vat", val), SQL_VarChar("@userid", Me.UserAccountID) })
51 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 1028 24 M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color) singlelineimage.SetPixel(x, y, System.Drawing.Color.Black)
52 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 1027 20 P:System.Drawing.Image.Height For y As Integer = 0 To singlelineimage.Height - 1
53 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 1026 16 P:System.Drawing.Image.Width For x As Integer = 0 To singlelineimage.Width - 1
54 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 1025 16 T:System.Drawing.Bitmap Dim singlelineimage As New System.Drawing.Bitmap(20, 1)
55 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 1025 16 M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32) Dim singlelineimage As New System.Drawing.Bitmap(20, 1)
56 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 723 8 T:System.Drawing.Bitmap Public Function getPaycode(iban As String, bic As String, name As String, amount As Decimal, purpose As String) As System.Drawing.Bitmap Try 'Dim totp As New OtpNet.Totp(rfcKey) Dim generator As New QRCoder.PayloadGenerator.Girocode(iban:=iban, bic:=bic, name:=name, amount:=amount, typeOfRemittance:=QRCoder.PayloadGenerator.Girocode.TypeOfRemittance.Unstructured, remittanceInformation:=purpose) Dim payload As String = generator.ToString() Dim qrGenerator As New QRCoder.QRCodeGenerator() Dim qrCodeData As QRCoder.QRCodeData = qrGenerator.CreateQrCode(payload, QRCoder.QRCodeGenerator.ECCLevel.Q) Dim qrCode As New QRCoder.QRCode(qrCodeData) Return qrCode.GetGraphic(20) Catch ex As Exception Return Nothing End Try End Function
57 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 734 16 T:System.Drawing.Bitmap Return qrCode.GetGraphic(20)
58 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 687 20 F:Microsoft.VisualBasic.Constants.vbNewLine Debug.Print(ex.Message & vbNewLine & ex.StackTrace)
59 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 634 24 F:Microsoft.VisualBasic.Constants.vbNewLine Debug.Print(gcex.Message & vbNewLine & gcex.StackTrace)
60 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 629 24 T:System.Drawing.Bitmap Dim girocode As Drawing.Bitmap = getPaycode(iban:="DE52301502000002091478", bic:="WELADED1KSD", name:="Sebastian Fuchs Bad und Heizung", amount:=payamount, purpose:="Rechnung " & Rm.InvoiceId)
61 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb 483 20 F:Microsoft.VisualBasic.Constants.vbNewLine Debug.Print(ex.Message & vbNewLine & ex.StackTrace)
62 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_intranet.vb 435 16 P:System.Data.SqlClient.SqlParameter.Value pl.Add(New SqlClient.SqlParameter("@file", dbType:=SqlDbType.VarBinary) With {.Value = ba})
63 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_intranet.vb 435 16 T:System.Data.SqlClient.SqlParameter pl.Add(New SqlClient.SqlParameter("@file", dbType:=SqlDbType.VarBinary) With {.Value = ba})
64 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_intranet.vb 435 16 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType) pl.Add(New SqlClient.SqlParameter("@file", dbType:=SqlDbType.VarBinary) With {.Value = ba})
65 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_intranet.vb 221 16 P:System.Data.SqlClient.SqlParameter.Value pl.Add(New SqlClient.SqlParameter("@file", dbType:=SqlDbType.VarBinary) With {.Value = ba})
66 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_intranet.vb 221 16 T:System.Data.SqlClient.SqlParameter pl.Add(New SqlClient.SqlParameter("@file", dbType:=SqlDbType.VarBinary) With {.Value = ba})
67 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_intranet.vb 221 16 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType) pl.Add(New SqlClient.SqlParameter("@file", dbType:=SqlDbType.VarBinary) With {.Value = ba})
68 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb 318 24 M:System.Net.WebRequest.Create(System.String) Dim wqrequest As Net.HttpWebRequest = Net.WebRequest.Create(turib.ToString)
69 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb 43 28 T:System.Drawing.Imaging.ImageFormat Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf("/") & "intranet/", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & ".png")
70 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb 43 28 T:System.Drawing.Imaging.ImageFormat Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf("/") & "intranet/", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & ".png")
71 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb 43 28 P:System.Drawing.Imaging.ImageFormat.Png Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf("/") & "intranet/", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & ".png")
72 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 286 16 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
73 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 286 16 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
74 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 278 28 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
75 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 278 28 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
76 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 274 32 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
77 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 274 32 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
78 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 271 36 P:System.Web.Mvc.ContentResult.ContentEncoding Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
79 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 271 36 P:System.Web.Mvc.ContentResult.ContentType Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
80 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 271 36 P:System.Web.Mvc.ContentResult.Content Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
81 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 271 36 T:System.Web.Mvc.ContentResult Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
82 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 271 36 M:System.Web.Mvc.ContentResult.#ctor Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
83 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 253 36 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
84 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 253 36 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
85 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 221 28 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
86 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 221 28 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
87 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 219 28 P:System.Web.Mvc.FileResult.FileDownloadName Return New Mvc.FileContentResult(chart, "image/png") With {.FileDownloadName = report.Replace(" ", "_") & "_" & Now().ToString("yyyyMMdd_HHmm") & ".png"}
88 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 219 28 T:System.Web.Mvc.FileContentResult Return New Mvc.FileContentResult(chart, "image/png") With {.FileDownloadName = report.Replace(" ", "_") & "_" & Now().ToString("yyyyMMdd_HHmm") & ".png"}
89 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 219 28 M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String) Return New Mvc.FileContentResult(chart, "image/png") With {.FileDownloadName = report.Replace(" ", "_") & "_" & Now().ToString("yyyyMMdd_HHmm") & ".png"}
90 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 214 28 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
91 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 214 28 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
92 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 210 32 P:System.Web.Mvc.ContentResult.ContentEncoding Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
93 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 210 32 P:System.Web.Mvc.ContentResult.ContentType Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
94 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 210 32 P:System.Web.Mvc.ContentResult.Content Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
95 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 210 32 T:System.Web.Mvc.ContentResult Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
96 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 210 32 M:System.Web.Mvc.ContentResult.#ctor Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
97 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 187 32 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
98 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 187 32 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
99 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 171 28 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
100 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 171 28 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, "Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.")
101 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 167 32 P:System.Web.Mvc.ContentResult.ContentEncoding Return New Mvc.ContentResult() With {.Content = hp, .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
102 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 167 32 P:System.Web.Mvc.ContentResult.ContentType Return New Mvc.ContentResult() With {.Content = hp, .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
103 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 167 32 P:System.Web.Mvc.ContentResult.Content Return New Mvc.ContentResult() With {.Content = hp, .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
104 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 167 32 T:System.Web.Mvc.ContentResult Return New Mvc.ContentResult() With {.Content = hp, .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
105 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 167 32 M:System.Web.Mvc.ContentResult.#ctor Return New Mvc.ContentResult() With {.Content = hp, .ContentType = "text/html", .ContentEncoding = Encoding.UTF8}
106 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 160 32 T:System.Web.Mvc.HttpStatusCodeResult Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
107 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 160 32 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, "No report defined")
108 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 142 12 T:System.Data.SqlClient.SqlParameter Dim Catalog As SQLDataTable = Await getSQLDatatable_async("EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;", ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@report_name", report), New SqlClient.SqlParameter("@authuser", ctrl.UserAccountID)})
109 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Areas\Intranet\code\fuchs_reports.vb 142 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim Catalog As SQLDataTable = Await getSQLDatatable_async("EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;", ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@report_name", report), New SqlClient.SqlParameter("@authuser", ctrl.UserAccountID)})
110 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\My Project\Settings.Designer.vb 105 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("OCMS_EmailSettings"),String)
111 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\My Project\Settings.Designer.vb 94 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("FDS_Intranet_DebugState"),Boolean)
112 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\My Project\Settings.Designer.vb 85 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("FDS_EmailSettings"),String)
113 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\My Project\Settings.Designer.vb 73 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("EmailTestAddresses"),String)
114 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\My Project\Settings.Designer.vb 64 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("EmailSettings"),String)
115 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 433 12 M:System.TimeSpan.FromMilliseconds(System.Double) Return Regex.IsMatch(email, "^(?("")("".+?(?<!\\)""@)|(([0-9a-z]((\.(?!\.))|[-!#\$%&'\*\+/=\?\^`\{\}\|~\w])*)(?<=[0-9a-z])@))" + "(?(\[)(\[(\d{1,3}\.){3}\d{1,3}\])|(([0-9a-z][-0-9a-z]*[0-9a-z]*\.)+[a-z0-9][\-a-z0-9]{0,22}[a-z0-9]))$", RegexOptions.IgnoreCase, TimeSpan.FromMilliseconds(250))
116 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 426 12 M:System.TimeSpan.FromMilliseconds(System.Double) email = Regex.Replace(email, "(@)(.+)$", DomainMapper, RegexOptions.None, TimeSpan.FromMilliseconds(200))
117 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 295 12 F:Microsoft.VisualBasic.Constants.vbNewLine Result = New OCMS.ExceptionResult("Die Email konnte nicht gesendet werden." & vbNewLine & ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)
118 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 295 12 F:Microsoft.VisualBasic.Constants.vbNewLine Result = New OCMS.ExceptionResult("Die Email konnte nicht gesendet werden." & vbNewLine & ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)
119 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 183 12 F:Microsoft.VisualBasic.Constants.vbNewLine Result = New ExceptionResult(statusDescription:="Die Email konnte nicht gesendet werden." & If(ErrorMessage.Count > 0, vbNewLine & ErrorMessage.ToArray.join(vbNewLine), ""), InternalCode:=OCMS_StatusCodes.exception)
120 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 183 12 F:Microsoft.VisualBasic.Constants.vbNewLine Result = New ExceptionResult(statusDescription:="Die Email konnte nicht gesendet werden." & If(ErrorMessage.Count > 0, vbNewLine & ErrorMessage.ToArray.join(vbNewLine), ""), InternalCode:=OCMS_StatusCodes.exception)
121 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 178 12 F:Microsoft.VisualBasic.Constants.vbNewLine Console.WriteLine("Errors: " & ErrorMessage.ToArray.join(vbNewLine))
122 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 169 20 T:System.Web.Mvc.HttpStatusCodeResult Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)
123 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 169 20 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode) Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)
124 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 166 20 T:System.Web.Mvc.HttpStatusCodeResult Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)
125 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 166 20 M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode) Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)
126 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 65 8 F:Microsoft.VisualBasic.Constants.vbNewLine body.append(New SOC("p").rwText("Hallo Sebastian!" & vbNewLine & Name & " hat Interesse Teil des Teams zu werden." & vbNewLine & "Hier sind die Infos:"))
127 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 65 8 F:Microsoft.VisualBasic.Constants.vbNewLine body.append(New SOC("p").rwText("Hallo Sebastian!" & vbNewLine & Name & " hat Interesse Teil des Teams zu werden." & vbNewLine & "Hier sind die Infos:"))
128 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 24 4 T:System.Web.HttpPostedFileWrapper Public Sub New(fle As HttpPostedFileWrapper) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
129 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 31 8 P:System.Web.HttpPostedFileWrapper.FileName Me.filename = fle.FileName
130 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 27 12 P:System.Web.HttpPostedFileWrapper.InputStream fle.InputStream.CopyTo(memoryStream)
131 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 26 12 P:System.Web.HttpPostedFileWrapper.InputStream fle.InputStream.Position = 0
132 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 14 4 T:System.Web.HttpPostedFile Public Sub New(fle As HttpPostedFile) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
133 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 21 8 P:System.Web.HttpPostedFile.FileName Me.filename = fle.FileName
134 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 17 12 P:System.Web.HttpPostedFile.InputStream fle.InputStream.CopyTo(memoryStream)
135 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 16 12 P:System.Web.HttpPostedFile.InputStream fle.InputStream.Position = 0
136 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 24 4 T:System.Web.HttpPostedFileWrapper Public Sub New(fle As HttpPostedFileWrapper) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
137 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 31 8 P:System.Web.HttpPostedFileWrapper.FileName Me.filename = fle.FileName
138 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 27 12 P:System.Web.HttpPostedFileWrapper.InputStream fle.InputStream.CopyTo(memoryStream)
139 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 26 12 P:System.Web.HttpPostedFileWrapper.InputStream fle.InputStream.Position = 0
140 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 14 4 T:System.Web.HttpPostedFile Public Sub New(fle As HttpPostedFile) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub
141 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 21 8 P:System.Web.HttpPostedFile.FileName Me.filename = fle.FileName
142 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 17 12 P:System.Web.HttpPostedFile.InputStream fle.InputStream.CopyTo(memoryStream)
143 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_email.vb 16 12 P:System.Web.HttpPostedFile.InputStream fle.InputStream.Position = 0
144 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 84 8 T:System.Data.SqlClient.SqlParameter Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async("EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session))}, tablenames:=New String() {"groups", "options"})
145 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 84 8 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async("EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session))}, tablenames:=New String() {"groups", "options"})
146 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 84 8 T:System.Data.SqlClient.SqlParameter Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async("EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session))}, tablenames:=New String() {"groups", "options"})
147 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 84 8 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async("EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session))}, tablenames:=New String() {"groups", "options"})
148 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 60 4 T:System.Web.HttpFileCollectionBase Public Async Function sendSummary(ByVal Controller As Global.OCMS.ocms_ClientController, planner As String, session As String, files As HttpFileCollectionBase) As Threading.Tasks.Task(Of Boolean) Dim summary As PlannerSummary = Await getSummary(planner, session) Dim emailfiles As New List(Of EmailFile) For fli As Integer = 0 To files.Count - 1 emailfiles.Add(New EmailFile(files(fli))) Next Return Await fuchs_email.SendEmail(Controller, summary.SummaryHtml, summary.cformdictionary("c_email"), summary.cformdictionary("c_name"), files:=emailfiles.ToArray) End Function
149 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 65 12 T:System.Web.HttpPostedFileBase emailfiles.Add(New EmailFile(files(fli)))
150 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 65 12 P:System.Web.HttpFileCollectionBase.Item(System.Int32) emailfiles.Add(New EmailFile(files(fli)))
151 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 64 8 P:System.Web.HttpFileCollectionBase.Count For fli As Integer = 0 To files.Count - 1
152 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 T:System.Data.SqlClient.SqlParameter OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
153 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
154 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 T:System.Data.SqlClient.SqlParameter OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
155 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
156 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 T:System.Data.SqlClient.SqlParameter OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
157 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
158 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 T:System.Data.SqlClient.SqlParameter OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
159 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 54 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) OCMS.SQLHandling.setSQLValue("EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)})
160 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 53 8 T:System.Data.SqlClient.SqlConnection Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
161 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 53 8 M:System.Data.SqlClient.SqlConnection.#ctor(System.String) Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
162 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
163 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
164 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
165 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
166 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
167 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
168 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
169 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 43 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
170 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 42 8 T:System.Data.SqlClient.SqlConnection Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
171 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 42 8 M:System.Data.SqlClient.SqlConnection.#ctor(System.String) Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
172 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
173 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
174 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
175 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
176 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
177 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
178 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 T:System.Data.SqlClient.SqlParameter Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
179 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 32 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet("EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter("@planner", planner), New SqlClient.SqlParameter("@session", If(session = "", DBNull.Value, session)), New SqlClient.SqlParameter("@group_code", group_code), New SqlClient.SqlParameter("@values", values_string)}, tablenames:=New String() {"group", "options"})
180 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 31 8 T:System.Data.SqlClient.SqlConnection Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
181 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 31 8 M:System.Data.SqlClient.SqlConnection.#ctor(System.String) Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
182 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 7 4 T:System.Data.SqlClient.SqlConnection Friend Function SqlCon() As SqlClient.SqlConnection Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString) End Function
183 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 T:System.Configuration.ConfigurationManager Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
184 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 T:System.Configuration.ConnectionStringSettingsCollection Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
185 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 P:System.Configuration.ConfigurationManager.ConnectionStrings Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
186 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 T:System.Configuration.ConnectionStringSettings Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
187 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String) Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
188 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 P:System.Configuration.ConnectionStringSettings.ConnectionString Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
189 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 T:System.Data.SqlClient.SqlConnection Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
190 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 8 8 M:System.Data.SqlClient.SqlConnection.#ctor(System.String) Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString)
191 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 5 8 T:System.Configuration.ConfigurationManager Return ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString
192 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 5 8 T:System.Configuration.ConnectionStringSettingsCollection Return ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString
193 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 5 8 P:System.Configuration.ConfigurationManager.ConnectionStrings Return ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString
194 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 5 8 T:System.Configuration.ConnectionStringSettings Return ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString
195 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 5 8 P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String) Return ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString
196 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\code\fuchs_planner.vb 5 8 P:System.Configuration.ConnectionStringSettings.ConnectionString Return ConfigurationManager.ConnectionStrings("ocms_ConnectionString").ConnectionString
197 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 8 4 T:System.Web.Routing.RouteCollection Public Sub RegisterRoutes(ByVal routes As RouteCollection) routes.IgnoreRoute("{resource}.axd/{*pathInfo}") routes.MapRoute( name:="Sitemap", url:="sitemap.xml", defaults:=New With {.controller = "Fuchs", .action = "SiteMap"} ) routes.MapRoute( name:="html", url:="*.html", defaults:=New With {.controller = "Fuchs", .action = "html"} ) routes.MapRoute( name:="FuchsDo", url:="do/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Do", .link = "", .ident = UrlParameter.Optional} ) routes.MapRoute( name:="FuchsPlannerSvg", url:="psvg/{ident}", defaults:=New With {.controller = "Fuchs", .action = "psvg", .ident = UrlParameter.Optional} ) 'routes.MapRoute( ' name:="FuchsImg", ' url:="img/{ident}", ' defaults:=New With {.controller = "Fuchs", .action = "Img", .ident = UrlParameter.Optional} ') routes.MapRoute( name:="Default", url:="{link}/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Index", .link = "", .ident = UrlParameter.Optional} ) End Sub
198 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 36 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="Default", url:="{link}/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Index", .link = "", .ident = UrlParameter.Optional} )
199 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 36 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="Default", url:="{link}/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Index", .link = "", .ident = UrlParameter.Optional} )
200 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 36 8 F:System.Web.Mvc.UrlParameter.Optional routes.MapRoute( name:="Default", url:="{link}/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Index", .link = "", .ident = UrlParameter.Optional} )
201 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 36 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="Default", url:="{link}/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Index", .link = "", .ident = UrlParameter.Optional} )
202 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 36 8 T:System.Web.Routing.Route routes.MapRoute( name:="Default", url:="{link}/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Index", .link = "", .ident = UrlParameter.Optional} )
203 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 26 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="FuchsPlannerSvg", url:="psvg/{ident}", defaults:=New With {.controller = "Fuchs", .action = "psvg", .ident = UrlParameter.Optional} )
204 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 26 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="FuchsPlannerSvg", url:="psvg/{ident}", defaults:=New With {.controller = "Fuchs", .action = "psvg", .ident = UrlParameter.Optional} )
205 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 26 8 F:System.Web.Mvc.UrlParameter.Optional routes.MapRoute( name:="FuchsPlannerSvg", url:="psvg/{ident}", defaults:=New With {.controller = "Fuchs", .action = "psvg", .ident = UrlParameter.Optional} )
206 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 26 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="FuchsPlannerSvg", url:="psvg/{ident}", defaults:=New With {.controller = "Fuchs", .action = "psvg", .ident = UrlParameter.Optional} )
207 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 26 8 T:System.Web.Routing.Route routes.MapRoute( name:="FuchsPlannerSvg", url:="psvg/{ident}", defaults:=New With {.controller = "Fuchs", .action = "psvg", .ident = UrlParameter.Optional} )
208 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 21 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="FuchsDo", url:="do/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Do", .link = "", .ident = UrlParameter.Optional} )
209 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 21 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="FuchsDo", url:="do/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Do", .link = "", .ident = UrlParameter.Optional} )
210 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 21 8 F:System.Web.Mvc.UrlParameter.Optional routes.MapRoute( name:="FuchsDo", url:="do/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Do", .link = "", .ident = UrlParameter.Optional} )
211 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 21 8 T:System.Web.Mvc.UrlParameter routes.MapRoute( name:="FuchsDo", url:="do/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Do", .link = "", .ident = UrlParameter.Optional} )
212 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 21 8 T:System.Web.Routing.Route routes.MapRoute( name:="FuchsDo", url:="do/{ident}", defaults:=New With {.controller = "Fuchs", .action = "Do", .link = "", .ident = UrlParameter.Optional} )
213 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 16 8 T:System.Web.Routing.Route routes.MapRoute( name:="html", url:="*.html", defaults:=New With {.controller = "Fuchs", .action = "html"} )
214 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\RouteConfig.vb 11 8 T:System.Web.Routing.Route routes.MapRoute( name:="Sitemap", url:="sitemap.xml", defaults:=New With {.controller = "Fuchs", .action = "SiteMap"} )
215 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 245 20 P:System.Web.Mvc.ContentResult.ContentEncoding Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
216 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 245 20 P:System.Web.Mvc.ContentResult.Content Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
217 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 245 20 P:System.Web.Mvc.ContentResult.ContentType Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
218 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 245 20 T:System.Web.Mvc.ContentResult Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
219 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 245 20 M:System.Web.Mvc.ContentResult.#ctor Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
220 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 243 20 P:System.Web.Mvc.ContentResult.ContentEncoding Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
221 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 243 20 P:System.Web.Mvc.ContentResult.Content Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
222 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 243 20 P:System.Web.Mvc.ContentResult.ContentType Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
223 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 243 20 T:System.Web.Mvc.ContentResult Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
224 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 243 20 M:System.Web.Mvc.ContentResult.#ctor Action = New ContentResult() With {.ContentType = "image/svg+xml", .Content = fc, .ContentEncoding = Encoding.UTF8}
225 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 192 24 P:System.Web.Mvc.ContentResult.Content html.Content = summary.SummaryHtml
226 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 187 24 P:System.Web.Mvc.ContentResult.ContentType Dim html As New ContentResult With { .ContentType = "text/html" }
227 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 187 24 T:System.Web.Mvc.ContentResult Dim html As New ContentResult With { .ContentType = "text/html" }
228 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 187 24 M:System.Web.Mvc.ContentResult.#ctor Dim html As New ContentResult With { .ContentType = "text/html" }
229 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 152 24 T:System.Drawing.Imaging.ImageFormat Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:="captcha.png")
230 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 152 24 T:System.Drawing.Imaging.ImageFormat Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:="captcha.png")
231 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 152 24 P:System.Drawing.Imaging.ImageFormat.Png Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:="captcha.png")
232 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 146 28 T:System.Data.SqlClient.SqlConnection Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
233 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 146 28 M:System.Data.SqlClient.SqlConnection.#ctor(System.String) Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())
234 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 84 24 P:System.Web.Mvc.ContentResult.Content Return New ContentResult() With {.ContentType = "text/html", .ContentEncoding = Encoding.UTF8, .Content = itc}
235 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 84 24 P:System.Web.Mvc.ContentResult.ContentEncoding Return New ContentResult() With {.ContentType = "text/html", .ContentEncoding = Encoding.UTF8, .Content = itc}
236 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 84 24 P:System.Web.Mvc.ContentResult.ContentType Return New ContentResult() With {.ContentType = "text/html", .ContentEncoding = Encoding.UTF8, .Content = itc}
237 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 84 24 T:System.Web.Mvc.ContentResult Return New ContentResult() With {.ContentType = "text/html", .ContentEncoding = Encoding.UTF8, .Content = itc}
238 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 84 24 M:System.Web.Mvc.ContentResult.#ctor Return New ContentResult() With {.ContentType = "text/html", .ContentEncoding = Encoding.UTF8, .Content = itc}
239 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 80 24 T:System.Uri Return Redirect(ub.Uri.ToString)
240 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 77 24 T:System.Uri Return Redirect(ub.Uri.ToString)
241 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 74 24 T:System.Uri Return Redirect(ub.Uri.ToString)
242 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 71 24 T:System.Uri Return Redirect(ub.Uri.ToString)
243 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 68 24 T:System.Uri Return Redirect(ub.Uri.ToString)
244 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs\Fuchs.vbproj File Fuchs\Controllers\FuchsController.vb 58 16 T:System.Uri Return Redirect(ub.Uri.ToString)
245 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\FilterConfig.vb 4 4 T:System.Web.Mvc.GlobalFilterCollection Public Sub RegisterGlobalFilters(ByVal filters As GlobalFilterCollection) filters.Add(New HandleErrorAttribute()) filters.Add(New OCMS.OCMS_ActionFilterAttribute()) filters.Add(New OCMS.CompressAttribute()) End Sub
246 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\FilterConfig.vb 5 8 T:System.Web.Mvc.HandleErrorAttribute filters.Add(New HandleErrorAttribute())
247 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\FilterConfig.vb 5 8 M:System.Web.Mvc.HandleErrorAttribute.#ctor filters.Add(New HandleErrorAttribute())
248 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\App_Start\FilterConfig.vb 5 8 M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object) filters.Add(New HandleErrorAttribute())
249 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 12 8 T:System.Web.Routing.RouteTable RouteConfig.RegisterRoutes(RouteTable.Routes)
250 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 12 8 T:System.Web.Routing.RouteCollection RouteConfig.RegisterRoutes(RouteTable.Routes)
251 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 12 8 P:System.Web.Routing.RouteTable.Routes RouteConfig.RegisterRoutes(RouteTable.Routes)
252 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 11 8 T:System.Web.Mvc.GlobalFilters FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)
253 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 11 8 T:System.Web.Mvc.GlobalFilterCollection FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)
254 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 11 8 P:System.Web.Mvc.GlobalFilters.Filters FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)
255 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 10 8 T:System.Web.Mvc.AreaRegistration AreaRegistration.RegisterAllAreas()
256 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs\Fuchs.vbproj File Fuchs\Global.asax.vb 10 8 M:System.Web.Mvc.AreaRegistration.RegisterAllAreas AreaRegistration.RegisterAllAreas()
257 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\Fuchs_DataService.vbproj Microsoft.AspNet.Razor 3.2.9 Microsoft.AspNet.Razor, 3.2.9 Recommendation: Package functionality included with new framework reference
258 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\Fuchs_DataService.vbproj Microsoft.Web.Infrastructure 2.0.0 Microsoft.Web.Infrastructure, 2.0.0 Recommendation: Package functionality included with new framework reference
259 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\Fuchs_DataService.vbproj Newtonsoft.Json 13.0.3 Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4
260 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\Fuchs_DataService.vbproj System.Runtime.InteropServices.RuntimeInformation 4.3.0 System.Runtime.InteropServices.RuntimeInformation, 4.3.0 Recommendation: Package functionality included with new framework reference
261 Project.0001 Project file needs to be converted to SDK-style Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\Fuchs_DataService.vbproj
262 Project.0002 Project's target framework(s) needs to be changed Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\Fuchs_DataService.vbproj Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0
263 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\My Project\Settings.Designer.vb 97 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("MFR_host"),String)
264 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\My Project\Settings.Designer.vb 88 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("MFR_Password"),String)
265 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\My Project\Settings.Designer.vb 79 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("MFR_UserName"),String)
266 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\My Project\Settings.Designer.vb 70 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("DebugDetails"),Boolean)
267 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\My Project\Settings.Designer.vb 61 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("ExecutionFrequency_Minutes"),String)
268 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 T:System.Data.SqlClient.SqlParameter params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
269 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
270 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 T:System.Data.SqlClient.SqlParameter params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
271 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
272 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 T:System.Data.SqlClient.SqlParameter params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
273 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
274 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 T:System.Data.SqlClient.SqlParameter params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
275 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 810 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", False), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
276 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 T:System.Data.SqlClient.SqlParameter dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
277 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
278 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 T:System.Data.SqlClient.SqlParameter dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
279 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
280 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 T:System.Data.SqlClient.SqlParameter dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
281 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
282 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 T:System.Data.SqlClient.SqlParameter dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
283 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
284 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 T:System.Data.SqlClient.SqlParameter dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
285 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
286 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 T:System.Data.SqlClient.SqlParameter dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
287 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 785 40 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter("@tblname", dtwa.DestinationTableName), New SqlClient.SqlParameter("@table", tbl.TableName), New SqlClient.SqlParameter("@action", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, "update_", "imdu_") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter("@setid", SetID.ToLower), New SqlClient.SqlParameter("@entityname", Schema.ThisEntityName), New SqlClient.SqlParameter("@info", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, ","), Nothing)})), New SqlClient.SqlParameter("@referencetable", Schema.Entitytablename), New SqlClient.SqlParameter("@tgtid", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })
288 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 782 40 T:System.Data.SqlClient.SqlCommand dtwa.CommandAfter = New SqlClient.SqlCommand('"SELECT * INTO [t_" & SetID.ToLower & "_" & tbl.TableName & "] FROM " & dtwa.DestinationTableName & ";" & "EXECUTE [dbo].[" & (tbl.TableName).Replace("__", "__updt__") & "] @tblname, @referencetable, @tgtid;" & "EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;" & If(AdditionalCommandAfter, ""))
289 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 782 40 M:System.Data.SqlClient.SqlCommand.#ctor(System.String) dtwa.CommandAfter = New SqlClient.SqlCommand('"SELECT * INTO [t_" & SetID.ToLower & "_" & tbl.TableName & "] FROM " & dtwa.DestinationTableName & ";" & "EXECUTE [dbo].[" & (tbl.TableName).Replace("__", "__updt__") & "] @tblname, @referencetable, @tgtid;" & "EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;" & If(AdditionalCommandAfter, ""))
290 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 763 40 T:System.Uri MFR_Response = Await ReadOData(MFR_Response.nextlink.ToString)
291 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 762 36 T:System.Uri If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString <> "" Then
292 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 762 36 T:System.Uri If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString <> "" Then
293 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 T:System.Data.SqlClient.SqlParameter Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
294 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
295 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 T:System.Data.SqlClient.SqlParameter Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
296 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
297 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 T:System.Data.SqlClient.SqlParameter Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
298 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
299 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 T:System.Data.SqlClient.SqlParameter Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
300 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 661 12 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@tbl", ThisEntityName), New SqlClient.SqlParameter("@state", True), New SqlClient.SqlParameter("@override", False), New SqlClient.SqlParameter("@setid", SetID) }
301 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 90 40 P:System.Data.SqlClient.SqlParameter.SqlDbType Await setSQLValue_async("EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar("@Id", id), SQL_VarChar("@filename", DocumentName), New SqlClient.SqlParameter("@file", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())
302 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 90 40 T:System.Data.SqlClient.SqlParameter Await setSQLValue_async("EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar("@Id", id), SQL_VarChar("@filename", DocumentName), New SqlClient.SqlParameter("@file", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())
303 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_mfr.vb 90 40 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Await setSQLValue_async("EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar("@Id", id), SQL_VarChar("@filename", DocumentName), New SqlClient.SqlParameter("@file", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())
304 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 223 8 T:System.Web.MimeMapping Return System.Web.MimeMapping.GetMimeMapping(FI.Name)
305 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 223 8 M:System.Web.MimeMapping.GetMimeMapping(System.String) Return System.Web.MimeMapping.GetMimeMapping(FI.Name)
306 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 174 64 T:Microsoft.VisualBasic.MyServices.FileSystemProxy My.Computer.FileSystem.DeleteFile(FilePath)
307 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 174 64 P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem My.Computer.FileSystem.DeleteFile(FilePath)
308 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 174 64 M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String) My.Computer.FileSystem.DeleteFile(FilePath)
309 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 174 12 T:Microsoft.VisualBasic.MyServices.FileSystemProxy If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)
310 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 174 12 P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)
311 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 174 12 M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FileExists(System.String) If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)
312 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 10 4 T:System.Data.SqlClient.SqlConnection Friend Function SqlCon() As SqlClient.SqlConnection Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString) End Function
313 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 T:System.Configuration.ConfigurationManager Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
314 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 T:System.Configuration.ConnectionStringSettingsCollection Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
315 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 P:System.Configuration.ConfigurationManager.ConnectionStrings Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
316 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 T:System.Configuration.ConnectionStringSettings Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
317 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String) Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
318 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 P:System.Configuration.ConnectionStringSettings.ConnectionString Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
319 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 T:System.Data.SqlClient.SqlConnection Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
320 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 11 8 M:System.Data.SqlClient.SqlConnection.#ctor(System.String) Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString)
321 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 8 8 T:System.Configuration.ConfigurationManager Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_fds_ConnectionString").ConnectionString
322 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 8 8 T:System.Configuration.ConnectionStringSettingsCollection Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_fds_ConnectionString").ConnectionString
323 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 8 8 P:System.Configuration.ConfigurationManager.ConnectionStrings Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_fds_ConnectionString").ConnectionString
324 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 8 8 T:System.Configuration.ConnectionStringSettings Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_fds_ConnectionString").ConnectionString
325 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 8 8 P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String) Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_fds_ConnectionString").ConnectionString
326 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 8 8 P:System.Configuration.ConnectionStringSettings.ConnectionString Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_fds_ConnectionString").ConnectionString
327 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 5 8 T:System.Configuration.ConfigurationManager Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString
328 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 5 8 T:System.Configuration.ConnectionStringSettingsCollection Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString
329 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 5 8 P:System.Configuration.ConfigurationManager.ConnectionStrings Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString
330 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 5 8 T:System.Configuration.ConnectionStringSettings Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString
331 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 5 8 P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String) Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString
332 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_shared.vb 5 8 P:System.Configuration.ConnectionStringSettings.ConnectionString Return Configuration.ConfigurationManager.ConnectionStrings("fuchs_ConnectionString").ConnectionString
333 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_zip.vb 444 12 P:System.IO.DirectoryInfo.FullName Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName & If(Strings.Right(TgtArchiveDirectory.FullName, 1) = "\", "", "\") & ArchiveName)
334 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_zip.vb 444 12 P:System.IO.DirectoryInfo.FullName Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName & If(Strings.Right(TgtArchiveDirectory.FullName, 1) = "\", "", "\") & ArchiveName)
335 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_zip.vb 119 20 P:System.IO.DirectoryInfo.FullName Me.ZipOut.ExtractArchive(TgtDirectory.FullName)
336 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_zip.vb 114 20 P:System.IO.DirectoryInfo.FullName OCMS.debug_log("DDA.intranet.Zipping Archive InitZipIn", ex:=ex, data:=New With {.DataArchiveFilePath = DataArchiveFilePath.FullName, .TgtDirectory = TgtDirectory.FullName})
337 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_zip.vb 48 20 P:System.Reflection.AssemblyName.CodeBase assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)
338 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_zip.vb 48 20 T:System.Uri assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)
339 Api.0003 Behavioral change in selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_zip.vb 48 20 M:System.Uri.#ctor(System.String) assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)
340 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 45 4 T:System.Data.SqlClient.SqlConnection <Diagnostics.DebuggerStepThrough> Public Sub DebugLog(CodeReference As String, SQLConnection As SqlClient.SqlConnection, Optional exc As Exception = Nothing, Optional data As String = "", Optional context As Object = Nothing) If CodeReference = "" OrElse IsNothing(SQLConnection) = True Then Exit Sub Dim note As String = Now.ToString("yyyy.MM.dd HH:mm:ss") & " - " & CodeReference Try Try If IsNothing(SQLConnection) = False Then Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) } Try Dim w As Integer = 0 If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close() If SQLConnection.State = ConnectionState.Connecting Then w = 0 While SQLConnection.State = ConnectionState.Connecting And w < 10 System.Threading.Thread.Sleep(100) w += 1 End While ElseIf Not SQLConnection.State = ConnectionState.Open Then SQLConnection.Open() End If w = 0 While Not SQLConnection.State = ConnectionState.Open And w < 10 System.Threading.Thread.Sleep(100) w += 1 End While Dim cmd As New SqlClient.SqlCommand("EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;", SQLConnection) cmd.Parameters.AddRange(pl.ToArray) Call cmd.ExecuteNonQuery() 'SQLConnection.Close() cmd.Parameters.Clear() Catch sqlex As Exception End Try End If Catch dbex As Exception End Try If IsNothing(exc) = False Then note &= (vbCrLf & "Exception:" & exc.Message & vbCrLf & "Stack:" & exc.StackTrace.ToString).Replace(vbLf, vbLf & " ") End If If data <> "" Then note &= (vbCrLf & "Data:" & data).Replace(vbLf, vbLf & " ") End If note &= vbCrLf Dim DebugLogfile As IO.FileInfo = LogFile("DebugLog.txt") If DebugLogfile.Directory.Exists = True Then IO.File.AppendAllText(DebugLogfile.FullName, note) End If Catch logex As Exception Finally Console.Write(note) Debug.Print(note) End Try End Sub
341 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 79 24 T:System.Data.SqlClient.SqlParameterCollection cmd.Parameters.Clear()
342 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 79 24 P:System.Data.SqlClient.SqlCommand.Parameters cmd.Parameters.Clear()
343 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 79 24 M:System.Data.SqlClient.SqlParameterCollection.Clear cmd.Parameters.Clear()
344 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 77 24 M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery Call cmd.ExecuteNonQuery()
345 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 76 24 T:System.Data.SqlClient.SqlParameterCollection cmd.Parameters.AddRange(pl.ToArray)
346 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 76 24 P:System.Data.SqlClient.SqlCommand.Parameters cmd.Parameters.AddRange(pl.ToArray)
347 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 76 24 M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Data.SqlClient.SqlParameter[]) cmd.Parameters.AddRange(pl.ToArray)
348 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 75 24 T:System.Data.SqlClient.SqlCommand Dim cmd As New SqlClient.SqlCommand("EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;", SQLConnection)
349 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 75 24 M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection) Dim cmd As New SqlClient.SqlCommand("EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;", SQLConnection)
350 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 71 24 P:System.Data.SqlClient.SqlConnection.State While Not SQLConnection.State = ConnectionState.Open And w < 10
351 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 68 28 M:System.Data.SqlClient.SqlConnection.Open SQLConnection.Open()
352 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 67 24 P:System.Data.SqlClient.SqlConnection.State ElseIf Not SQLConnection.State = ConnectionState.Open Then
353 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 63 28 P:System.Data.SqlClient.SqlConnection.State While SQLConnection.State = ConnectionState.Connecting And w < 10
354 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 61 24 P:System.Data.SqlClient.SqlConnection.State If SQLConnection.State = ConnectionState.Connecting Then
355 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 60 77 M:System.Data.SqlClient.SqlConnection.Close SQLConnection.Close()
356 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 60 24 P:System.Data.SqlClient.SqlConnection.State If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close()
357 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 T:System.Data.SqlClient.SqlParameter Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
358 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
359 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 T:System.Data.SqlClient.SqlParameter Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
360 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
361 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 T:System.Data.SqlClient.SqlParameter Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
362 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
363 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 T:System.Data.SqlClient.SqlParameter Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
364 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 52 20 M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter("@CodeReference", CodeReference), New SqlClient.SqlParameter("@ExceptionMessage", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter("@StackTrace", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter("@data", If(data, DBNull.Value)) }
365 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 39 8 T:System.Data.SqlClient.SqlConnection Using con As New SqlClient.SqlConnection(SQLConnectionString)
366 Api.0002 Source incompatible for selected .NET version Active Potential 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 39 8 M:System.Data.SqlClient.SqlConnection.#ctor(System.String) Using con As New SqlClient.SqlConnection(SQLConnectionString)
367 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 19 8 T:Microsoft.VisualBasic.MyServices.FileSystemProxy ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then
368 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 19 8 P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then
369 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 19 8 M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DirectoryExists(System.String) ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then
370 Api.0001 Binary incompatible for selected .NET version Active Mandatory 1 Fuchs_DataService\Fuchs_DataService.vbproj File Fuchs_DataService\fds_debug.vb 9 8 P:System.IO.DirectoryInfo.FullName Return New IO.FileInfo(AppBaseDirectory().FullName & FileName)
371 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.AspNet.WebApi 5.2.9 Microsoft.AspNet.WebApi, 5.2.9 Recommendation: Package functionality included with new framework reference
372 NuGet.0001 NuGet package is incompatible Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.AspNet.WebApi.Core 5.2.9 Microsoft.AspNet.WebApi.Core, 5.2.9 Recommendation: No supported version found
373 NuGet.0001 NuGet package is incompatible Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.AspNet.WebApi.WebHost 5.2.9 Microsoft.AspNet.WebApi.WebHost, 5.2.9 Recommendation: No supported version found
374 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.Bcl.AsyncInterfaces 7.0.0 Microsoft.Bcl.AsyncInterfaces, 7.0.0 Recommendation: Remove Microsoft.Bcl.AsyncInterfaces, and replace with new package Microsoft.Bcl.AsyncInterfaces 10.0.5
375 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.NETCore.Platforms 7.0.4 Microsoft.NETCore.Platforms, 7.0.4 Recommendation: Package functionality included with new framework reference
376 NuGet.0001 NuGet package is incompatible Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.WindowsAzure.ConfigurationManager 3.2.3 Microsoft.WindowsAzure.ConfigurationManager, 3.2.3 Recommendation: No supported version found
377 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Newtonsoft.Json 13.0.3 Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4
378 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Buffers 4.5.1 System.Buffers, 4.5.1 Recommendation: Package functionality included with new framework reference
379 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.IO 4.3.0 System.IO, 4.3.0 Recommendation: Package functionality included with new framework reference
380 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Memory 4.5.5 System.Memory, 4.5.5 Recommendation: Package functionality included with new framework reference
381 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Net.Http 4.3.4 System.Net.Http, 4.3.4 Recommendation: Package functionality included with new framework reference
382 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Numerics.Vectors 4.5.0 System.Numerics.Vectors, 4.5.0 Recommendation: Package functionality included with new framework reference
383 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Runtime 4.3.1 System.Runtime, 4.3.1 Recommendation: Package functionality included with new framework reference
384 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Runtime.CompilerServices.Unsafe 6.0.0 System.Runtime.CompilerServices.Unsafe, 6.0.0 Recommendation: Remove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2
385 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Security.Cryptography.Algorithms 4.3.1 System.Security.Cryptography.Algorithms, 4.3.1 Recommendation: Package functionality included with new framework reference
386 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Security.Cryptography.Encoding 4.3.0 System.Security.Cryptography.Encoding, 4.3.0 Recommendation: Package functionality included with new framework reference
387 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Security.Cryptography.Primitives 4.3.0 System.Security.Cryptography.Primitives, 4.3.0 Recommendation: Package functionality included with new framework reference
388 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Security.Cryptography.X509Certificates 4.3.2 System.Security.Cryptography.X509Certificates, 4.3.2 Recommendation: Package functionality included with new framework reference
389 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Text.Encoding 4.3.0 System.Text.Encoding, 4.3.0 Recommendation: Package functionality included with new framework reference
390 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Text.Encodings.Web 7.0.0 System.Text.Encodings.Web, 7.0.0 Recommendation: Remove System.Text.Encodings.Web, and replace with new package System.Text.Encodings.Web 10.0.5
391 NuGet.0002 NuGet package upgrade is recommended Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Text.Json 7.0.3 System.Text.Json, 7.0.3 Recommendation: Remove System.Text.Json, and replace with new package System.Text.Json 10.0.5
392 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Threading.Tasks.Extensions 4.5.4 System.Threading.Tasks.Extensions, 4.5.4 Recommendation: Package functionality included with new framework reference
393 NuGet.0003 NuGet package functionality is included with framework reference Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.ValueTuple 4.5.0 System.ValueTuple, 4.5.0 Recommendation: Package functionality included with new framework reference
394 NuGet.0001 NuGet package is incompatible Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj WindowsAzure.ServiceBus 6.2.2 WindowsAzure.ServiceBus, 6.2.2 Recommendation: No supported version found
395 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.Data.OData 5.8.5 Microsoft.Data.OData, 5.8.5 Recommendation: Broken thread safe. See https://github.com/OData/odata.net/issues/2452 Remove Microsoft.Data.OData, and replace with new package Microsoft.Data.OData, 5.8.5
396 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.IdentityModel.Abstractions 7.0.2 Microsoft.IdentityModel.Abstractions, 7.0.2 Recommendation: Update to latest https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.Abstractions, and replace with new package Microsoft.IdentityModel.Abstractions, 8.17.0
397 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.IdentityModel.Clients.ActiveDirectory 5.3.0 Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0 Recommendation: Please note, a newer package is available Microsoft.Identity.Client. This package will continue to receive critical bug fixes until December 2022, we strongly encourage you to upgrade. See https://docs.microsoft.com/azure/active-directory/develop/msal-net-migration for Migration guide and more details. Remove Microsoft.IdentityModel.Clients.ActiveDirectory, and replace with new package Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0
398 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.IdentityModel.JsonWebTokens 7.0.2 Microsoft.IdentityModel.JsonWebTokens, 7.0.2 Recommendation: Microsoft.IdentityModel.JsonWebTokens, 8.17.0
399 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.IdentityModel.JsonWebTokens 7.0.2 Microsoft.IdentityModel.JsonWebTokens, 7.0.2 Recommendation: Move to latest https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.JsonWebTokens, and replace with new package Microsoft.IdentityModel.JsonWebTokens, 8.17.0
400 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.IdentityModel.Logging 7.0.2 Microsoft.IdentityModel.Logging, 7.0.2 Recommendation: Move to latest, see https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.Logging, and replace with new package Microsoft.IdentityModel.Logging, 8.17.0
401 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.IdentityModel.Tokens 7.0.2 Microsoft.IdentityModel.Tokens, 7.0.2 Recommendation: Move to latest Microsoft.IdentityModel.Tokens. See https://aka.ms/IdentityModel/LTS, Remove Microsoft.IdentityModel.Tokens, and replace with new package Microsoft.IdentityModel.Tokens, 8.17.0
402 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.Rest.ClientRuntime 2.3.24 Microsoft.Rest.ClientRuntime, 2.3.24 Recommendation: Thank you for the interest in this package. The replacement package is available https://www.nuget.org/packages/Azure.Core/, you can find more information of this new package from https://learn.microsoft.com/en-us/dotnet/api/overview/azure/core-readme?view=azure-dotnet. This package is no longer maintained. Remove Microsoft.Rest.ClientRuntime, and replace with new package Microsoft.Rest.ClientRuntime, 2.3.24
403 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Microsoft.WindowsAzure.ConfigurationManager 3.2.3 Microsoft.WindowsAzure.ConfigurationManager, 3.2.3 Recommendation: Please note, this package is obsolete as of 3/31/2023 and is no longer maintained or monitored. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details. Remove Microsoft.WindowsAzure.ConfigurationManager, and replace with new package Microsoft.WindowsAzure.ConfigurationManager, 3.2.3
404 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj RestSharp 110.2.0 RestSharp, 110.2.0 Recommendation: RestSharp, 114.0.0
405 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.IdentityModel.Tokens.Jwt 7.0.2 System.IdentityModel.Tokens.Jwt, 7.0.2 Recommendation: System.IdentityModel.Tokens.Jwt, 8.17.0
406 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.IdentityModel.Tokens.Jwt 7.0.2 System.IdentityModel.Tokens.Jwt, 7.0.2 Recommendation: Move to latest https://aka.ms/IdentityModel/LTS Remove System.IdentityModel.Tokens.Jwt, and replace with new package System.IdentityModel.Tokens.Jwt, 8.17.0
407 NuGet.0004 NuGet package contains security vulnerability Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj System.Text.Json 7.0.3 System.Text.Json, 7.0.3 Recommendation: System.Text.Json, 10.0.5
408 NuGet.0005 NuGet package is deprecated Active Optional 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj WindowsAzure.ServiceBus 6.2.2 WindowsAzure.ServiceBus, 6.2.2 Recommendation: Please note, this package is obsolete and will no longer be maintained after 9/30/2026. Microsoft encourages you to upgrade to the replacement package, Azure.Messaging.ServiceBus, to continue receiving updates. Refer to the migration guide (https://aka.ms/azsdk/net/migrate/sb) for guidance on upgrading. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details. Remove WindowsAzure.ServiceBus, and replace with new package WindowsAzure.ServiceBus, 4.1.11
409 Project.0001 Project file needs to be converted to SDK-style Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj
410 Project.0002 Project's target framework(s) needs to be changed Active Mandatory 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0-windows
411 UpgradeScenario.0040 Migrate .NET Framework WCF services to CoreWCF Active Optional 5 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj WCF behavior extension: name=connectionStatusBehavior, type=Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=
412 UpgradeScenario.0040 Migrate .NET Framework WCF services to CoreWCF Active Optional 5 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj WCF behavior extension: name=transportClientEndpointBehavior, type=Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=
413 UpgradeScenario.0040 Migrate .NET Framework WCF services to CoreWCF Active Optional 5 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFR_RESTClient.vbproj WCF behavior extension: name=serviceRegistrySettings, type=Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=
414 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\My Project\Settings.Designer.vb 88 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Me("MFR_Password") = value
415 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\My Project\Settings.Designer.vb 85 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("MFR_Password"),String)
416 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\My Project\Settings.Designer.vb 76 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Me("MFR_UserName") = value
417 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\My Project\Settings.Designer.vb 73 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("MFR_UserName"),String)
418 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\My Project\Settings.Designer.vb 64 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Me("MFR_host") = value
419 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\My Project\Settings.Designer.vb 61 16 P:System.Configuration.ApplicationSettingsBase.Item(System.String) Return CType(Me("MFR_host"),String)
420 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 20 16 T:System.Uri Me._nextlink = Nothing
421 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 18 16 T:System.Uri Me._nextlink = New Uri(O("odata.nextLink"))
422 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 18 16 M:System.Uri.#ctor(System.String) Me._nextlink = New Uri(O("odata.nextLink"))
423 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 18 16 T:System.Uri Me._nextlink = New Uri(O("odata.nextLink"))
424 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 16 115 T:System.Uri Me._metadata = New Uri(O("odata.metadata"))
425 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 16 115 M:System.Uri.#ctor(System.String) Me._metadata = New Uri(O("odata.metadata"))
426 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 16 115 T:System.Uri Me._metadata = New Uri(O("odata.metadata"))
427 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 4 0 T:System.Uri Public Property nextlink As Uri
428 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 4 0 T:System.Uri Public Property metadata As Uri
429 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 20 16 T:System.Uri Me._nextlink = Nothing
430 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 18 16 T:System.Uri Me._nextlink = New Uri(O("odata.nextLink"))
431 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 18 16 M:System.Uri.#ctor(System.String) Me._nextlink = New Uri(O("odata.nextLink"))
432 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 18 16 T:System.Uri Me._nextlink = New Uri(O("odata.nextLink"))
433 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 16 115 T:System.Uri Me._metadata = New Uri(O("odata.metadata"))
434 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 16 115 M:System.Uri.#ctor(System.String) Me._metadata = New Uri(O("odata.metadata"))
435 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClientClasses.vb 16 115 T:System.Uri Me._metadata = New Uri(O("odata.metadata"))
436 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClient.vb 126 12 F:Microsoft.VisualBasic.Constants.vbNewLine Diagnostics.Debug.Print("execute rest issue: " & message + Environment.NewLine + response.StatusDescription & vbNewLine & " " & request.Resource.ToString)
437 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClient.vb 67 20 T:System.Uri fle = .DownloadData(New Uri(address))
438 Api.0003 Behavioral change in selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClient.vb 67 20 M:System.Uri.#ctor(System.String) fle = .DownloadData(New Uri(address))
439 Api.0002 Source incompatible for selected .NET version Active Potential 1 MFR_RESTClient\MFR_RESTClient.vbproj File MFR_RESTClient\MFRClient.vb 60 8 M:System.Net.WebClient.#ctor Using WC As New System.Net.WebClient
440 Project.0002 Project's target framework(s) needs to be changed Active Mandatory 1 P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj File P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj Current target framework: netstandard2.0;net472 Recommended target framework: netstandard2.0;net472;net10.0
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,461 @@
# Projects and dependencies analysis
This document provides a comprehensive overview of the projects and their dependencies in the context of upgrading to .NETCoreApp,Version=v10.0.
## Table of Contents
- [Executive Summary](#executive-Summary)
- [Highlevel Metrics](#highlevel-metrics)
- [Projects Compatibility](#projects-compatibility)
- [Package Compatibility](#package-compatibility)
- [API Compatibility](#api-compatibility)
- [Aggregate NuGet packages details](#aggregate-nuget-packages-details)
- [Top API Migration Challenges](#top-api-migration-challenges)
- [Technologies and Features](#technologies-and-features)
- [Most Frequent API Issues](#most-frequent-api-issues)
- [Projects Relationship Graph](#projects-relationship-graph)
- [Project Details](#project-details)
- [Fuchs\Fuchs.vbproj](#fuchsfuchsvbproj)
- [Fuchs_DataService\Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj)
- [MFR_RESTClient\MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj)
- [P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj](#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj)
## Executive Summary
### Highlevel Metrics
| Metric | Count | Status |
| :--- | :---: | :--- |
| Total Projects | 4 | All require upgrade |
| Total NuGet Packages | 75 | 32 need upgrade |
| Total Code Files | 69 | |
| Total Code Files with Incidents | 26 | |
| Total Lines of Code | 10521 | |
| Total Number of Issues | 439 | |
| Estimated LOC to modify | 358+ | at least 3,4% of codebase |
### Projects Compatibility
| Project | Target Framework | Difficulty | Package Issues | API Issues | Est. LOC Impact | Description |
| :--- | :---: | :---: | :---: | :---: | :---: | :--- |
| [Fuchs\Fuchs.vbproj](#fuchsfuchsvbproj) | net48 | 🔴 High | 29 | 224 | 224+ | Wap, Sdk Style = False |
| [Fuchs_DataService\Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | net48 | 🔴 High | 4 | 108 | 108+ | ClassicDotNetApp, Sdk Style = False |
| [MFR_RESTClient\MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | net48 | 🟢 Low | 38 | 26 | 26+ | ClassicWinForms, Sdk Style = False |
| [P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj](#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj) | netstandard2.0;net472 | 🟢 Low | 0 | 0 | | ClassLibrary, Sdk Style = True |
### Package Compatibility
| Status | Count | Percentage |
| :--- | :---: | :---: |
| ✅ Compatible | 43 | 57,3% |
| ⚠️ Incompatible | 17 | 22,7% |
| 🔄 Upgrade Recommended | 15 | 20,0% |
| ***Total NuGet Packages*** | ***75*** | ***100%*** |
### API Compatibility
| Category | Count | Impact |
| :--- | :---: | :--- |
| 🔴 Binary Incompatible | 117 | High - Require code changes |
| 🟡 Source Incompatible | 212 | Medium - Needs re-compilation and potential conflicting API error fixing |
| 🔵 Behavioral change | 29 | Low - Behavioral changes that may require testing at runtime |
| ✅ Compatible | 11865 | |
| ***Total APIs Analyzed*** | ***12223*** | |
## Aggregate NuGet packages details
| Package | Current Version | Suggested Version | Projects | Description |
| :--- | :---: | :---: | :--- | :--- |
| BouncyCastle | 1.8.9 | 1.8.9 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability |
| BouncyCastle.Cryptography | 2.3.0 | 2.6.2 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability |
| HtmlAgilityPack | 1.11.54 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| ImageProcessor | 2.9.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible |
| ImageProcessor.Plugins.WebP | 1.3.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible |
| ImageProcessor.Web | 4.12.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible |
| ImageProcessor.Web.Config | 2.6.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible |
| jQuery | 3.7.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| jQuery.Validation | 1.19.5 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| MailKit | 4.4.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| Microsoft.AspNet.Mvc | 5.2.9 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference |
| Microsoft.AspNet.Razor | 3.2.9 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | NuGet package functionality is included with framework reference |
| Microsoft.AspNet.SignalR.Client | 2.4.3 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| Microsoft.AspNet.TelemetryCorrelation | 1.0.8 | 1.0.3 | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible |
| Microsoft.AspNet.WebApi | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| Microsoft.AspNet.WebApi.Client | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| Microsoft.AspNet.WebApi.Core | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible |
| Microsoft.AspNet.WebApi.WebHost | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible |
| Microsoft.AspNet.WebPages | 3.2.9 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference |
| Microsoft.Azure.Services.AppAuthentication | 1.6.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| Microsoft.Bcl.AsyncInterfaces | 7.0.0 | 10.0.5 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended |
| Microsoft.CodeDom.Providers.DotNetCompilerPlatform | 4.1.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference |
| Microsoft.Data.Edm | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| Microsoft.Data.OData | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated |
| Microsoft.Data.Services.Client | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| Microsoft.IdentityModel.Abstractions | 7.0.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated |
| Microsoft.IdentityModel.Clients.ActiveDirectory | 5.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated |
| Microsoft.IdentityModel.JsonWebTokens | 7.0.2 | 8.17.0 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package contains security vulnerability |
| Microsoft.IdentityModel.Logging | 7.0.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated |
| Microsoft.IdentityModel.Tokens | 7.0.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated |
| Microsoft.IO.RecyclableMemoryStream | 2.3.2 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| Microsoft.jQuery.Unobtrusive.Validation | 4.0.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| Microsoft.NETCore.Platforms | 7.0.4 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| Microsoft.NETCore.Targets | 5.0.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| Microsoft.Rest.ClientRuntime | 2.3.24 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated |
| Microsoft.Web.Infrastructure | 2.0.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | NuGet package functionality is included with framework reference |
| Microsoft.WindowsAzure.ConfigurationManager | 3.2.3 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible |
| MimeKit | 4.4.0 | 4.15.1 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability |
| Modernizr | 2.8.3 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| NETStandard.Library | 2.0.3 | | [MT940Parser.csproj](#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj) | ✅Compatible |
| Newtonsoft.Json | 13.0.3 | 13.0.4 | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj)<br/>[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended |
| PDFsharp | 1.50.5147 | 6.2.4 | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible |
| PDFsharp-MigraDoc | 1.50.5147 | 6.2.4 | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible |
| Portable.BouncyCastle | 1.9.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| QRCoder | 1.4.3 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| RestSharp | 110.2.0 | 114.0.0 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package contains security vulnerability |
| Spire.PDF | 8.10.5 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible |
| Squid-Box.SevenZipSharp | 1.6.1.23 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | ✅Compatible |
| System.Buffers | 4.5.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Data.DataSetExtensions | 4.5.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference |
| System.Diagnostics.DiagnosticSource | 7.0.2 | 10.0.5 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package upgrade is recommended |
| System.Formats.Asn1 | 8.0.0 | 10.0.5 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package upgrade is recommended |
| System.IdentityModel.Tokens.Jwt | 7.0.2 | 8.17.0 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package contains security vulnerability |
| System.IO | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Memory | 4.5.5 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Net.Http | 4.3.4 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Numerics.Vectors | 4.5.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Private.Uri | 4.3.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| System.Runtime | 4.3.1 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Runtime.CompilerServices.Unsafe | 6.0.0 | 6.1.2 | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended |
| System.Runtime.InteropServices.RuntimeInformation | 4.3.0 | | [Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | NuGet package functionality is included with framework reference |
| System.Security.Cryptography.Algorithms | 4.3.1 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Security.Cryptography.Encoding | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Security.Cryptography.Primitives | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Security.Cryptography.X509Certificates | 4.3.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Spatial | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible |
| System.Text.Encoding | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.Text.Encoding.CodePages | 7.0.0 | 10.0.5 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package upgrade is recommended |
| System.Text.Encodings.Web | 7.0.0 | 10.0.5 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended |
| System.Text.Json | 7.0.3 | 10.0.5 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended |
| System.Threading.Tasks.Extensions | 4.5.4 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| System.ValueTuple | 4.5.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj)<br/>[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference |
| TinyMCE | 6.3.1 | 8.3.2 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability |
| Topshelf | 4.3.0 | | [Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | ✅Compatible |
| WindowsAzure.ServiceBus | 6.2.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible |
## Top API Migration Challenges
### Technologies and Features
| Technology | Issues | Percentage | Migration Path |
| :--- | :---: | :---: | :--- |
| ASP.NET Framework (System.Web) | 123 | 34,4% | Legacy ASP.NET Framework APIs for web applications (System.Web.*) that don't exist in ASP.NET Core due to architectural differences. ASP.NET Core represents a complete redesign of the web framework. Migrate to ASP.NET Core equivalents or consider System.Web.Adapters package for compatibility. |
| Legacy Configuration System | 48 | 13,4% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. |
| GDI+ / System.Drawing | 14 | 3,9% | System.Drawing APIs for 2D graphics, imaging, and printing that are available via NuGet package System.Drawing.Common. Note: Not recommended for server scenarios due to Windows dependencies; consider cross-platform alternatives like SkiaSharp or ImageSharp for new code. |
### Most Frequent API Issues
| API | Count | Percentage | Category |
| :--- | :---: | :---: | :--- |
| T:System.Data.SqlClient.SqlParameter | 37 | 10,3% | Source Incompatible |
| M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) | 35 | 9,8% | Source Incompatible |
| T:System.Uri | 23 | 6,4% | Behavioral Change |
| P:System.Configuration.ApplicationSettingsBase.Item(System.String) | 16 | 4,5% | Source Incompatible |
| F:Microsoft.VisualBasic.Constants.vbNewLine | 11 | 3,1% | Source Incompatible |
| T:System.Web.Mvc.HttpStatusCodeResult | 11 | 3,1% | Binary Incompatible |
| T:System.Data.SqlClient.SqlConnection | 10 | 2,8% | Source Incompatible |
| P:System.Web.Mvc.ContentResult.ContentType | 9 | 2,5% | Binary Incompatible |
| P:System.Web.Mvc.ContentResult.Content | 9 | 2,5% | Binary Incompatible |
| T:System.Web.Mvc.ContentResult | 9 | 2,5% | Binary Incompatible |
| M:System.Web.Mvc.ContentResult.#ctor | 9 | 2,5% | Binary Incompatible |
| M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) | 9 | 2,5% | Binary Incompatible |
| T:System.Web.Mvc.UrlParameter | 9 | 2,5% | Binary Incompatible |
| P:System.Web.Mvc.ContentResult.ContentEncoding | 8 | 2,2% | Binary Incompatible |
| M:System.Data.SqlClient.SqlConnection.#ctor(System.String) | 7 | 2,0% | Source Incompatible |
| T:System.Configuration.ConfigurationManager | 6 | 1,7% | Source Incompatible |
| M:System.Uri.#ctor(System.String) | 6 | 1,7% | Behavioral Change |
| P:System.Web.HttpPostedFileWrapper.InputStream | 5 | 1,4% | Source Incompatible |
| T:System.Configuration.ConnectionStringSettingsCollection | 5 | 1,4% | Source Incompatible |
| P:System.Configuration.ConfigurationManager.ConnectionStrings | 5 | 1,4% | Source Incompatible |
| T:System.Configuration.ConnectionStringSettings | 5 | 1,4% | Source Incompatible |
| P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String) | 5 | 1,4% | Source Incompatible |
| P:System.Configuration.ConnectionStringSettings.ConnectionString | 5 | 1,4% | Source Incompatible |
| T:System.Web.Routing.Route | 5 | 1,4% | Binary Incompatible |
| P:System.IO.DirectoryInfo.FullName | 5 | 1,4% | Binary Incompatible |
| P:System.Data.SqlClient.SqlConnection.State | 5 | 1,4% | Source Incompatible |
| T:System.Drawing.Bitmap | 4 | 1,1% | Source Incompatible |
| T:System.Drawing.Imaging.ImageFormat | 4 | 1,1% | Source Incompatible |
| P:System.Web.HttpPostedFile.InputStream | 4 | 1,1% | Source Incompatible |
| T:System.Data.SqlClient.SqlCommand | 3 | 0,8% | Source Incompatible |
| F:System.Web.Mvc.UrlParameter.Optional | 3 | 0,8% | Binary Incompatible |
| T:Microsoft.VisualBasic.MyServices.FileSystemProxy | 3 | 0,8% | Binary Incompatible |
| P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem | 3 | 0,8% | Binary Incompatible |
| M:System.Data.SqlClient.SqlCommand.#ctor(System.String) | 2 | 0,6% | Source Incompatible |
| P:System.Data.SqlClient.SqlParameter.Value | 2 | 0,6% | Source Incompatible |
| M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType) | 2 | 0,6% | Source Incompatible |
| P:System.Drawing.Imaging.ImageFormat.Png | 2 | 0,6% | Source Incompatible |
| M:System.TimeSpan.FromMilliseconds(System.Double) | 2 | 0,6% | Source Incompatible |
| M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode) | 2 | 0,6% | Binary Incompatible |
| T:System.Web.HttpPostedFileWrapper | 2 | 0,6% | Source Incompatible |
| P:System.Web.HttpPostedFileWrapper.FileName | 2 | 0,6% | Source Incompatible |
| T:System.Web.HttpPostedFile | 2 | 0,6% | Source Incompatible |
| P:System.Web.HttpPostedFile.FileName | 2 | 0,6% | Source Incompatible |
| T:System.Web.Routing.RouteCollection | 2 | 0,6% | Binary Incompatible |
| T:System.Web.Mvc.GlobalFilterCollection | 2 | 0,6% | Binary Incompatible |
| T:System.Data.SqlClient.SqlParameterCollection | 2 | 0,6% | Source Incompatible |
| P:System.Data.SqlClient.SqlCommand.Parameters | 2 | 0,6% | Source Incompatible |
| T:System.Web.Mvc.ViewResult | 1 | 0,3% | Binary Incompatible |
| P:System.Configuration.ConfigurationManager.AppSettings | 1 | 0,3% | Source Incompatible |
| M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color) | 1 | 0,3% | Source Incompatible |
## Projects Relationship Graph
Legend:
📦 SDK-style project
⚙️ Classic project
```mermaid
flowchart LR
P1["<b>⚙️&nbsp;Fuchs.vbproj</b><br/><small>net48</small>"]
P2["<b>⚙️&nbsp;Fuchs_DataService.vbproj</b><br/><small>net48</small>"]
P3["<b>⚙️&nbsp;MFR_RESTClient.vbproj</b><br/><small>net48</small>"]
P4["<b>📦&nbsp;MT940Parser.csproj</b><br/><small>netstandard2.0;net472</small>"]
P1 --> P4
P1 --> P2
P1 --> P3
P2 --> P3
click P1 "#fuchsfuchsvbproj"
click P2 "#fuchs_dataservicefuchs_dataservicevbproj"
click P3 "#mfr_restclientmfr_restclientvbproj"
click P4 "#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj"
```
## Project Details
<a id="fuchsfuchsvbproj"></a>
### Fuchs\Fuchs.vbproj
#### Project Info
- **Current Target Framework:** net48
- **Proposed Target Framework:** net10.0
- **SDK-style**: False
- **Project Kind:** Wap
- **Dependencies**: 3
- **Dependants**: 0
- **Number of Files**: 485
- **Number of Files with Incidents**: 15
- **Lines of Code**: 6277
- **Estimated LOC to modify**: 224+ (at least 3,6% of the project)
#### Dependency Graph
Legend:
📦 SDK-style project
⚙️ Classic project
```mermaid
flowchart TB
subgraph current["Fuchs.vbproj"]
MAIN["<b>⚙️&nbsp;Fuchs.vbproj</b><br/><small>net48</small>"]
click MAIN "#fuchsfuchsvbproj"
end
subgraph downstream["Dependencies (3"]
P4["<b>📦&nbsp;MT940Parser.csproj</b><br/><small>netstandard2.0;net472</small>"]
P2["<b>⚙️&nbsp;Fuchs_DataService.vbproj</b><br/><small>net48</small>"]
P3["<b>⚙️&nbsp;MFR_RESTClient.vbproj</b><br/><small>net48</small>"]
click P4 "#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj"
click P2 "#fuchs_dataservicefuchs_dataservicevbproj"
click P3 "#mfr_restclientmfr_restclientvbproj"
end
MAIN --> P4
MAIN --> P2
MAIN --> P3
```
### API Compatibility
| Category | Count | Impact |
| :--- | :---: | :--- |
| 🔴 Binary Incompatible | 101 | High - Require code changes |
| 🟡 Source Incompatible | 117 | Medium - Needs re-compilation and potential conflicting API error fixing |
| 🔵 Behavioral change | 6 | Low - Behavioral changes that may require testing at runtime |
| ✅ Compatible | 7080 | |
| ***Total APIs Analyzed*** | ***7304*** | |
#### Project Technologies and Features
| Technology | Issues | Percentage | Migration Path |
| :--- | :---: | :---: | :--- |
| Legacy Configuration System | 19 | 8,5% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. |
| GDI+ / System.Drawing | 14 | 6,3% | System.Drawing APIs for 2D graphics, imaging, and printing that are available via NuGet package System.Drawing.Common. Note: Not recommended for server scenarios due to Windows dependencies; consider cross-platform alternatives like SkiaSharp or ImageSharp for new code. |
| ASP.NET Framework (System.Web) | 121 | 54,0% | Legacy ASP.NET Framework APIs for web applications (System.Web.*) that don't exist in ASP.NET Core due to architectural differences. ASP.NET Core represents a complete redesign of the web framework. Migrate to ASP.NET Core equivalents or consider System.Web.Adapters package for compatibility. |
<a id="fuchs_dataservicefuchs_dataservicevbproj"></a>
### Fuchs_DataService\Fuchs_DataService.vbproj
#### Project Info
- **Current Target Framework:** net48
- **Proposed Target Framework:** net10.0
- **SDK-style**: False
- **Project Kind:** ClassicDotNetApp
- **Dependencies**: 1
- **Dependants**: 1
- **Number of Files**: 13
- **Number of Files with Incidents**: 6
- **Lines of Code**: 2281
- **Estimated LOC to modify**: 108+ (at least 4,7% of the project)
#### Dependency Graph
Legend:
📦 SDK-style project
⚙️ Classic project
```mermaid
flowchart TB
subgraph upstream["Dependants (1)"]
P1["<b>⚙️&nbsp;Fuchs.vbproj</b><br/><small>net48</small>"]
click P1 "#fuchsfuchsvbproj"
end
subgraph current["Fuchs_DataService.vbproj"]
MAIN["<b>⚙️&nbsp;Fuchs_DataService.vbproj</b><br/><small>net48</small>"]
click MAIN "#fuchs_dataservicefuchs_dataservicevbproj"
end
subgraph downstream["Dependencies (1"]
P3["<b>⚙️&nbsp;MFR_RESTClient.vbproj</b><br/><small>net48</small>"]
click P3 "#mfr_restclientmfr_restclientvbproj"
end
P1 --> MAIN
MAIN --> P3
```
### API Compatibility
| Category | Count | Impact |
| :--- | :---: | :--- |
| 🔴 Binary Incompatible | 16 | High - Require code changes |
| 🟡 Source Incompatible | 87 | Medium - Needs re-compilation and potential conflicting API error fixing |
| 🔵 Behavioral change | 5 | Low - Behavioral changes that may require testing at runtime |
| ✅ Compatible | 2684 | |
| ***Total APIs Analyzed*** | ***2792*** | |
#### Project Technologies and Features
| Technology | Issues | Percentage | Migration Path |
| :--- | :---: | :---: | :--- |
| ASP.NET Framework (System.Web) | 2 | 1,9% | Legacy ASP.NET Framework APIs for web applications (System.Web.*) that don't exist in ASP.NET Core due to architectural differences. ASP.NET Core represents a complete redesign of the web framework. Migrate to ASP.NET Core equivalents or consider System.Web.Adapters package for compatibility. |
| Legacy Configuration System | 23 | 21,3% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. |
<a id="mfr_restclientmfr_restclientvbproj"></a>
### MFR_RESTClient\MFR_RESTClient.vbproj
#### Project Info
- **Current Target Framework:** net48
- **Proposed Target Framework:** net10.0-windows
- **SDK-style**: False
- **Project Kind:** ClassicWinForms
- **Dependencies**: 0
- **Dependants**: 2
- **Number of Files**: 13
- **Number of Files with Incidents**: 4
- **Lines of Code**: 621
- **Estimated LOC to modify**: 26+ (at least 4,2% of the project)
#### Dependency Graph
Legend:
📦 SDK-style project
⚙️ Classic project
```mermaid
flowchart TB
subgraph upstream["Dependants (2)"]
P1["<b>⚙️&nbsp;Fuchs.vbproj</b><br/><small>net48</small>"]
P2["<b>⚙️&nbsp;Fuchs_DataService.vbproj</b><br/><small>net48</small>"]
click P1 "#fuchsfuchsvbproj"
click P2 "#fuchs_dataservicefuchs_dataservicevbproj"
end
subgraph current["MFR_RESTClient.vbproj"]
MAIN["<b>⚙️&nbsp;MFR_RESTClient.vbproj</b><br/><small>net48</small>"]
click MAIN "#mfr_restclientmfr_restclientvbproj"
end
P1 --> MAIN
P2 --> MAIN
```
### API Compatibility
| Category | Count | Impact |
| :--- | :---: | :--- |
| 🔴 Binary Incompatible | 0 | High - Require code changes |
| 🟡 Source Incompatible | 8 | Medium - Needs re-compilation and potential conflicting API error fixing |
| 🔵 Behavioral change | 18 | Low - Behavioral changes that may require testing at runtime |
| ✅ Compatible | 519 | |
| ***Total APIs Analyzed*** | ***545*** | |
#### Project Technologies and Features
| Technology | Issues | Percentage | Migration Path |
| :--- | :---: | :---: | :--- |
| Legacy Configuration System | 6 | 23,1% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. |
<a id="p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj"></a>
### P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj
#### Project Info
- **Current Target Framework:** netstandard2.0;net472
- **Proposed Target Framework:** netstandard2.0;net472;net10.0
- **SDK-style**: True
- **Project Kind:** ClassLibrary
- **Dependencies**: 0
- **Dependants**: 1
- **Number of Files**: 15
- **Number of Files with Incidents**: 1
- **Lines of Code**: 1342
- **Estimated LOC to modify**: 0+ (at least 0,0% of the project)
#### Dependency Graph
Legend:
📦 SDK-style project
⚙️ Classic project
```mermaid
flowchart TB
subgraph upstream["Dependants (1)"]
P1["<b>⚙️&nbsp;Fuchs.vbproj</b><br/><small>net48</small>"]
click P1 "#fuchsfuchsvbproj"
end
subgraph current["MT940Parser.csproj"]
MAIN["<b>📦&nbsp;MT940Parser.csproj</b><br/><small>netstandard2.0;net472</small>"]
click MAIN "#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj"
end
P1 --> MAIN
```
### API Compatibility
| Category | Count | Impact |
| :--- | :---: | :--- |
| 🔴 Binary Incompatible | 0 | High - Require code changes |
| 🟡 Source Incompatible | 0 | Medium - Needs re-compilation and potential conflicting API error fixing |
| 🔵 Behavioral change | 0 | Low - Behavioral changes that may require testing at runtime |
| ✅ Compatible | 1582 | |
| ***Total APIs Analyzed*** | ***1582*** | |
#### Project Package References
| Package | Type | Current Version | Suggested Version | Description |
| :--- | :---: | :---: | :---: | :--- |
| NETStandard.Library | 🔗*Transitive* | 2.0.3 | | ✅Compatible |
@@ -0,0 +1,42 @@
## [2026-03-29 23:21] TASK-001: Atomic framework and dependency upgrade with compilation fixes
Status: Paused. Scope change requested by user.
- **Verified**: SDK-style conversion done for 3 projects, target frameworks updated, packages updated, dependencies restored
- **Files Modified**: MFR_RESTClient.vbproj, Fuchs_DataService.vbproj, Fuchs.vbproj, MT940Parser.csproj, fds_mfr.vb, fds_debug.vb
- **Code Changes**: SDK-style conversion, TFM updates to net10.0, package updates per plan, added OCORE/OCMSsharp project references, fixed MyType=Empty, added System.Data/Microsoft.Data imports, replaced My.Computer.FileSystem with System.IO, updated OCMS.SQLHandling→OCORE.SQL imports
- **Build Status**: MFR_RESTClient builds successfully. Fuchs_DataService has 4 remaining IO namespace errors. Fuchs not yet built.
### Outcome
Paused - User changed scope: (1) Convert all VB.NET to C#, (2) Keep only Intranet area in Fuchs. This fundamentally changes the remaining work.
## [2026-04-16 23:06] TASK-001: Atomic framework and dependency upgrade with compilation fixes
Status: Complete. Solution builds successfully with 0 errors.
- **Verified**: dotnet build on Fuchs.slnx — 0 errors, 201 warnings (nullable and CA1416 platform warnings only, no blockers)
- **Build Status**: Successful: 0 errors, 201 warnings
## [2026-04-16 23:11] TASK-002: Create and validate test project
Status: Complete. Fuchs.Tests xUnit project created and all 28 tests pass.
- **Files Created**: Fuchs.Tests/Fuchs.Tests.csproj, Fuchs.Tests/MT940ParserTests.cs, Fuchs.Tests/MFRClientTests.cs, Fuchs.Tests/FuchsPdfTests.cs
- **Code Changes**: Created xUnit test project targeting net10.0 with references to all 4 projects and 28 tests covering MT940 parsing (9 tests), MFR REST client models (9 tests), and FuchsPdf.ParseDec (10 tests)
- **Tests**: Passed: 28, Failed: 0, Skipped: 0
- **Build Status**: Successful: 0 errors, 35 warnings (pre-existing)
## [2026-04-16 23:39] TASK-003: Final commit
Status: Paused. Commit cannot be made from terminal — P:\ is a network share and Git fsync fails on it.
- **Verified**: P:\PWProjects\Fuchs_Intranet resolves to //localhost/d$/My Programming/PWProjects/Fuchs_Intranet (network share); all Git terminal clients fail with fsync errors
- **Code Changes**: None — no uncommitted damage; broken .git folder cleaned up
- **Build Status**: Solution builds 0 errors (verified in TASK-001); 28 tests pass (verified in TASK-002)
Paused - Commit must be performed manually via Visual Studio Git panel or Windows Explorer Git client. Commit message: "Complete .NET 10.0 upgrade for Fuchs Intranet solution"
@@ -0,0 +1,905 @@
# .NET 10.0 Upgrade Plan — Fuchs Intranet Solution
## Table of Contents
- [1. Executive Summary](#1-executive-summary)
- [2. Migration Strategy](#2-migration-strategy)
- [3. Detailed Dependency Analysis](#3-detailed-dependency-analysis)
- [4. Project-by-Project Migration Plans](#4-project-by-project-migration-plans)
- [4.1 MT940Parser.csproj](#41-mt940parsercsproj)
- [4.2 MFR_RESTClient.vbproj](#42-mfr_restclientvbproj)
- [4.3 Fuchs_DataService.vbproj](#43-fuchs_dataservicevbproj)
- [4.4 Fuchs.vbproj](#44-fuchsvbproj)
- [4.5 Fuchs.Tests (New)](#45-fuchstests-new)
- [5. Package Update Reference](#5-package-update-reference)
- [6. Breaking Changes Catalog](#6-breaking-changes-catalog)
- [7. Risk Management](#7-risk-management)
- [8. Testing & Validation Strategy](#8-testing--validation-strategy)
- [9. Complexity & Effort Assessment](#9-complexity--effort-assessment)
- [10. Source Control Strategy](#10-source-control-strategy)
- [11. Success Criteria](#11-success-criteria)
---
## 1. Executive Summary
### Scenario
Upgrade the Fuchs Intranet solution from **.NET Framework 4.8** to **.NET 10.0 (LTS)**. The solution contains 4 existing projects (3 VB.NET + 1 C#), all currently targeting .NET Framework 4.8 except MT940Parser which multi-targets netstandard2.0 and net472. As part of the upgrade, a new **C# unit test project** (`Fuchs.Tests`) will be created to provide automated validation coverage.
### Scope
| Metric | Value |
| :--- | :--- |
| Total Projects | 4 (+1 new test project) |
| Total NuGet Packages | 75 (32 require action) |
| Total Lines of Code | 10,521 |
| Total Issues | 439 (164 mandatory, 252 potential, 23 optional) |
| Estimated LOC to Modify | 358+ (3.4% of codebase) |
| Security Vulnerabilities | 5 packages with known CVEs |
| Projects Needing SDK-style Conversion | 3 of 4 |
### Selected Strategy
**All-At-Once Strategy** — All projects upgraded simultaneously in a single atomic operation.
**Rationale**:
- 4 projects (small solution, well under 30-project threshold)
- All currently on .NET Framework 4.8 (homogeneous)
- Clean dependency structure with no circular dependencies
- Dependency depth of only 3 levels
- All packages have known target versions, clear replacements, or are framework-included
### Complexity Classification
**Simple** — 4 projects, dependency depth ≤ 2, clean dependency graph, no circular dependencies. This enables a fast-batch approach with 23 detail iterations.
### Critical Issues
1. **SDK-style conversion required**: 3 of 4 projects must be converted from classic to SDK-style project format before framework upgrade
2. **ASP.NET Framework → ASP.NET Core**: Fuchs.vbproj is a WAP (Web Application Project) using System.Web, requiring migration to ASP.NET Core patterns
3. **Incompatible packages**: 17 packages have no compatible version for .NET 10.0 — require replacement or removal
4. **Security vulnerabilities**: BouncyCastle.Cryptography, Microsoft.IdentityModel.JsonWebTokens, MimeKit, RestSharp, System.IdentityModel.Tokens.Jwt, and TinyMCE have known CVEs
5. **Deprecated packages**: Microsoft.Data.OData, Microsoft.IdentityModel.Abstractions/Logging/Tokens, Microsoft.IdentityModel.Clients.ActiveDirectory, Microsoft.Rest.ClientRuntime — require replacement strategies
6. **WCF usage**: MFR_RESTClient uses WCF services that may need CoreWCF migration
7. **GDI+/System.Drawing**: Fuchs.vbproj uses System.Drawing which has limited cross-platform support on .NET 10.0
### Iteration Strategy
Phase 1 (Foundation): Skeleton, classification, strategy — 3 iterations
Phase 2 (Foundation): Dependency analysis, strategy detail, project stubs — 3 iterations
Phase 3 (Details): All project details batched in 23 iterations (simple classification)
---
## 2. Migration Strategy
### Approach: All-At-Once
All 4 projects are upgraded simultaneously in a single coordinated operation. There are no intermediate states — the solution moves atomically from .NET Framework 4.8 to .NET 10.0.
### Justification
| Factor | Assessment | Supports All-At-Once |
| :--- | :--- | :---: |
| Project count | 4 projects | ✅ Well under 30-project threshold |
| Framework uniformity | All net48 (except MT940Parser multi-target) | ✅ Homogeneous |
| Dependency structure | Clean 3-level DAG, no cycles | ✅ Simple |
| Total LOC | 10,521 | ✅ Small codebase |
| Package compatibility | All packages have known paths | ✅ Clear |
| Test projects | New Fuchs.Tests project to be created | ✅ Automated validation via xUnit |
### All-At-Once Strategy Rationale
- **Fastest completion**: No multi-targeting complexity or intermediate build states
- **Clean dependency resolution**: All projects move together, avoiding version conflicts between upgraded and non-upgraded projects
- **No intermediate states**: The solution is either fully on .NET Framework 4.8 or fully on .NET 10.0
- **Unified upgrade**: All package references updated atomically, preventing dependency conflicts
### Execution Sequence (Within Single Atomic Operation)
1. **Convert all 3 classic projects to SDK-style** (MT940Parser is already SDK-style)
2. **Update TargetFramework** in all 4 project files simultaneously
3. **Update all package references** across all projects
4. **Remove packages now included in framework** (System.Buffers, System.Memory, etc.)
5. **Restore dependencies** (`dotnet restore`)
6. **Build solution and fix all compilation errors** — address breaking changes from ASP.NET Framework → ASP.NET Core, System.Drawing, Configuration, SqlClient namespace changes
7. **Verify solution builds with 0 errors**
8. **Create Fuchs.Tests project** — new xUnit test project targeting net10.0, add to solution
9. **Write initial test suite** — cover MT940 parsing, data models, business logic
10. **Run all tests**`dotnet test`, verify all pass
### Parallel vs. Sequential
Within the atomic operation, project file edits can happen in parallel (they are independent file modifications). Build and fix cycles are inherently sequential since compilation errors must be identified before they can be fixed.
---
## 3. Detailed Dependency Analysis
### Dependency Graph
```
Level 0 (Foundation — no project dependencies):
├── MT940Parser.csproj [netstandard2.0;net472] — ClassLibrary, SDK-style
└── MFR_RESTClient.vbproj [net48] — ClassicWinForms, Classic-style
Level 1 (depends on Level 0 only):
└── Fuchs_DataService.vbproj [net48] — ClassicDotNetApp, Classic-style
└── depends on: MFR_RESTClient
Level 2 (depends on Levels 01):
└── Fuchs.vbproj [net48] — WAP (ASP.NET MVC), Classic-style
└── depends on: MT940Parser, Fuchs_DataService, MFR_RESTClient
Level 3 (test — depends on all):
└── Fuchs.Tests.csproj [NEW → net10.0] — xUnit test project, C#
└── depends on: MT940Parser, MFR_RESTClient, Fuchs_DataService, Fuchs
```
### Project Groupings (All-At-Once — Single Atomic Operation)
Since all 4 projects are upgraded simultaneously, the dependency levels serve as **context for understanding impact**, not as separate phases:
| Level | Projects | Role |
| :---: | :--- | :--- |
| 0 | MT940Parser.csproj, MFR_RESTClient.vbproj | Foundation libraries — no downstream dependencies |
| 1 | Fuchs_DataService.vbproj | Middle layer — data service consuming MFR_RESTClient |
| 2 | Fuchs.vbproj | Top-level web application — consumes all other projects |
### Critical Path
The critical path runs through: **MFR_RESTClient → Fuchs_DataService → Fuchs**
- MFR_RESTClient is referenced by both Fuchs_DataService and Fuchs directly
- MT940Parser is only referenced by Fuchs and is already SDK-style with minimal changes needed
- Breaking changes in MFR_RESTClient (WCF, RestSharp, deprecated packages) will cascade to its dependants
### Circular Dependencies
**None detected.** The dependency graph is a clean DAG (Directed Acyclic Graph).
---
## 4. Project-by-Project Migration Plans
### 4.1 MT940Parser.csproj
**Current State**: netstandard2.0;net472 | SDK-style | ClassLibrary | 1,342 LOC | 15 files | 0 API issues | 1 package (NETStandard.Library transitive)
**Target State**: netstandard2.0;net472;net10.0 (append new target framework)
**Risk Level**: 🟢 Low
**Complexity**: Low
#### Prerequisites
- None — project is already SDK-style
#### Framework Update
- Append `net10.0` to the existing `<TargetFrameworks>` element:
- **Before**: `<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>`
- **After**: `<TargetFrameworks>netstandard2.0;net472;net10.0</TargetFrameworks>`
#### Package Updates
- No package changes required — NETStandard.Library is a transitive dependency and compatible
#### Expected Breaking Changes
- None — 0 API issues detected, fully compatible
#### Code Modifications
- None expected
#### Validation Checklist
- [ ] `net10.0` target added to TargetFrameworks
- [ ] Builds without errors for all 3 target frameworks
- [ ] Builds without warnings
- [ ] No new dependency conflicts
### 4.2 MFR_RESTClient.vbproj
**Current State**: net48 | Classic-style | ClassicWinForms | 621 LOC | 13 files | 26 API issues | 38 package issues
**Target State**: net10.0-windows | SDK-style
**Risk Level**: 🟡 Medium
**Complexity**: Medium
#### Prerequisites
- Convert from classic to SDK-style project format (Project.0001)
- Project is classified as ClassicWinForms — use `Microsoft.NET.Sdk.WindowsDesktop` or `Microsoft.NET.Sdk` with `<UseWindowsForms>true</UseWindowsForms>` if WinForms references are needed, otherwise use `Microsoft.NET.Sdk`
#### Framework Update
- **Before**: `<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>` (classic format)
- **After**: `<TargetFramework>net10.0-windows</TargetFramework>` (SDK-style)
#### Package Updates
**Remove (included in framework):**
- Microsoft.AspNet.WebApi (5.2.9)
- Microsoft.NETCore.Platforms (7.0.4)
- System.Buffers (4.5.1)
- System.IO (4.3.0)
- System.Memory (4.5.5)
- System.Net.Http (4.3.4)
- System.Numerics.Vectors (4.5.0)
- System.Runtime (4.3.1)
- System.Security.Cryptography.Algorithms (4.3.1)
- System.Security.Cryptography.Encoding (4.3.0)
- System.Security.Cryptography.Primitives (4.3.0)
- System.Security.Cryptography.X509Certificates (4.3.2)
- System.Text.Encoding (4.3.0)
- System.Threading.Tasks.Extensions (4.5.4)
- System.ValueTuple (4.5.0)
**Update:**
- Microsoft.Bcl.AsyncInterfaces: 7.0.0 → 10.0.5
- Microsoft.IdentityModel.JsonWebTokens: 7.0.2 → 8.17.0 (🔒 security)
- Newtonsoft.Json: 13.0.3 → 13.0.4
- RestSharp: 110.2.0 → 114.0.0 (🔒 security)
- System.IdentityModel.Tokens.Jwt: 7.0.2 → 8.17.0 (🔒 security)
- System.Runtime.CompilerServices.Unsafe: 6.0.0 → 6.1.2
- System.Text.Encodings.Web: 7.0.0 → 10.0.5
- System.Text.Json: 7.0.3 → 10.0.5
**Remove/Replace (incompatible):**
- Microsoft.AspNet.WebApi.Core (5.2.9) — no supported version; remove if not directly used, or replace with ASP.NET Core Web API
- Microsoft.AspNet.WebApi.WebHost (5.2.9) — no supported version; remove
- Microsoft.WindowsAzure.ConfigurationManager (3.2.3) — replace with `Microsoft.Extensions.Configuration`
- WindowsAzure.ServiceBus (6.2.2) — replace with `Azure.Messaging.ServiceBus`
**Review (deprecated):**
- Microsoft.Data.OData (5.8.5) — deprecated; evaluate if still needed
- Microsoft.IdentityModel.Abstractions (7.0.2) — deprecated
- Microsoft.IdentityModel.Clients.ActiveDirectory (5.3.0) — deprecated; replace with `Microsoft.Identity.Client` (MSAL)
- Microsoft.IdentityModel.Logging (7.0.2) — deprecated
- Microsoft.IdentityModel.Tokens (7.0.2) — deprecated
- Microsoft.Rest.ClientRuntime (2.3.24) — deprecated
**Keep (compatible):**
- Microsoft.AspNet.SignalR.Client (2.4.3)
- Microsoft.AspNet.WebApi.Client (5.2.9)
- Microsoft.Azure.Services.AppAuthentication (1.6.2)
- Microsoft.Data.Edm (5.8.5)
- Microsoft.Data.Services.Client (5.8.5)
- Microsoft.NETCore.Targets (5.0.0)
- Portable.BouncyCastle — if used transitively
- System.Private.Uri (4.3.2)
- System.Spatial (5.8.5)
#### Expected Breaking Changes
- **Legacy Configuration** (6 issues): `ConfigurationManager` usage needs `System.Configuration.ConfigurationManager` NuGet or migration to `Microsoft.Extensions.Configuration`
- **System.Uri behavioral change** (18 issues): URI parsing behavior may differ — test URL handling code
- **Source incompatible APIs** (8 issues): SqlClient types, vbNewLine deprecation
- **WCF services** (UpgradeScenario.0040): Evaluate if WCF references are used; migrate to CoreWCF if needed
#### Code Modifications
- Replace `Imports System.Data.SqlClient` with `Imports Microsoft.Data.SqlClient`
- Replace `vbNewLine` with `Environment.NewLine` where flagged
- Update RestSharp API calls for v114 compatibility
- Update ConfigurationManager references
- ⚠️ Review WCF service references and determine if CoreWCF migration is needed
#### Validation Checklist
- [ ] Converted to SDK-style project
- [ ] TargetFramework set to net10.0-windows
- [ ] All incompatible packages removed/replaced
- [ ] All security vulnerability packages updated
- [ ] Builds without errors
- [ ] Builds without warnings
- [ ] No dependency conflicts
### 4.3 Fuchs_DataService.vbproj
**Current State**: net48 | Classic-style | ClassicDotNetApp | 2,281 LOC | 13 files | 108 API issues | 4 package issues
**Target State**: net10.0 | SDK-style
**Risk Level**: 🔴 High
**Complexity**: Medium
#### Prerequisites
- Convert from classic to SDK-style project format (Project.0001)
- Depends on MFR_RESTClient — must be updated as part of the same atomic operation
#### Framework Update
- **Before**: `<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>` (classic format)
- **After**: `<TargetFramework>net10.0</TargetFramework>` (SDK-style)
#### Package Updates
**Remove (included in framework):**
- Microsoft.AspNet.Razor (3.2.9)
- Microsoft.Web.Infrastructure (2.0.0)
- System.Runtime.InteropServices.RuntimeInformation (4.3.0)
**Update:**
- Newtonsoft.Json: 13.0.3 → 13.0.4
**Keep (compatible):**
- Squid-Box.SevenZipSharp (1.6.1.23)
- Topshelf (4.3.0)
#### Expected Breaking Changes
- **Legacy Configuration System** (23 issues): Heavy use of `ConfigurationManager`, `ApplicationSettingsBase`, `ConnectionStringSettingsCollection`, `ConnectionStringSettings` — the most impacted area. Requires `System.Configuration.ConfigurationManager` NuGet package or migration to `Microsoft.Extensions.Configuration`.
- **SqlClient namespace** (87+ source incompatible): `System.Data.SqlClient``Microsoft.Data.SqlClient` across 6 affected files
- **Binary incompatible APIs** (16 issues): `DirectoryInfo.FullName`, `My.Computer.FileSystem` (FileSystemProxy) — may need alternative implementations
- **ASP.NET references** (2 issues): Minor System.Web usage — remove or replace
- **System.Uri behavioral change** (5 issues): URI parsing differences
#### Code Modifications
- Add NuGet reference to `Microsoft.Data.SqlClient`
- Replace `Imports System.Data.SqlClient` with `Imports Microsoft.Data.SqlClient` across all files
- Add NuGet reference to `System.Configuration.ConfigurationManager` (bridge package) or migrate to `Microsoft.Extensions.Configuration`
- Replace `My.Computer.FileSystem` calls with `System.IO.File` / `System.IO.Directory` equivalents
- Remove any `System.Web` references — replace with modern equivalents
- Replace `vbNewLine` with `Environment.NewLine` where flagged
#### Validation Checklist
- [ ] Converted to SDK-style project
- [ ] TargetFramework set to net10.0
- [ ] All packages updated/removed per package update table
- [ ] SqlClient namespace migrated
- [ ] Configuration system bridged or migrated
- [ ] My.Computer.FileSystem replaced
- [ ] Builds without errors
- [ ] Builds without warnings
- [ ] No dependency conflicts
### 4.4 Fuchs.vbproj
**Current State**: net48 | Classic-style | WAP (ASP.NET MVC) | 6,277 LOC | 485 files | 224 API issues | 29 package issues
**Target State**: net10.0 | SDK-style
**Risk Level**: 🔴 High
**Complexity**: High
#### Prerequisites
- Convert from classic WAP to SDK-style project format (Project.0001)
- This is the top-level application — depends on all other projects (MT940Parser, Fuchs_DataService, MFR_RESTClient)
- WAP → ASP.NET Core conversion is the most complex part of the entire upgrade
#### Framework Update
- **Before**: `<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>` (classic WAP format)
- **After**: `<TargetFramework>net10.0</TargetFramework>` (SDK-style with `Microsoft.NET.Sdk.Web`)
#### Package Updates
**Remove (included in framework / ASP.NET Core):**
- Microsoft.AspNet.Mvc (5.2.9) — replaced by `Microsoft.AspNetCore.Mvc`
- Microsoft.AspNet.Razor (3.2.9)
- Microsoft.AspNet.TelemetryCorrelation (1.0.8)
- Microsoft.AspNet.WebPages (3.2.9)
- Microsoft.CodeDom.Providers.DotNetCompilerPlatform (4.1.0)
- Microsoft.Web.Infrastructure (2.0.0)
- System.Buffers (4.5.1)
- System.Data.DataSetExtensions (4.5.0)
- System.Memory (4.5.5)
- System.Numerics.Vectors (4.5.0)
- System.Threading.Tasks.Extensions (4.5.4)
- System.ValueTuple (4.5.0)
**Update:**
- BouncyCastle.Cryptography: 2.3.0 → 2.6.2 (🔒 security)
- MimeKit: 4.4.0 → 4.15.1 (🔒 security)
- Newtonsoft.Json: 13.0.3 → 13.0.4
- PDFsharp: 1.50.5147 → 6.2.4 (incompatible — major upgrade)
- PDFsharp-MigraDoc: 1.50.5147 → 6.2.4 (incompatible — major upgrade)
- System.Diagnostics.DiagnosticSource: 7.0.2 → 10.0.5
- System.Formats.Asn1: 8.0.0 → 10.0.5
- System.Runtime.CompilerServices.Unsafe: 6.0.0 → 6.1.2
- System.Text.Encoding.CodePages: 7.0.0 → 10.0.5
- TinyMCE: 6.3.1 → 8.3.2 (🔒 security)
**Remove/Replace (incompatible):**
- ImageProcessor (2.9.1) — **Replace with SixLabors.ImageSharp** or SkiaSharp
- ImageProcessor.Plugins.WebP (1.3.0) — **Replace** (ImageSharp supports WebP natively)
- ImageProcessor.Web (4.12.1) — **Replace** with custom middleware or ImageSharp.Web
- ImageProcessor.Web.Config (2.6.0) — **Replace**
**Keep (compatible):**
- BouncyCastle (1.8.9)
- HtmlAgilityPack (1.11.54)
- jQuery (3.7.1)
- jQuery.Validation (1.19.5)
- MailKit (4.4.0)
- Microsoft.IO.RecyclableMemoryStream (2.3.2)
- Microsoft.jQuery.Unobtrusive.Validation (4.0.0)
- Modernizr (2.8.3)
- Portable.BouncyCastle (1.9.0)
- QRCoder (1.4.3)
- Spire.PDF (8.10.5)
- Squid-Box.SevenZipSharp (1.6.1.23)
**New packages to add:**
- `Microsoft.Data.SqlClient` — replacement for System.Data.SqlClient
- `System.Drawing.Common` — for GDI+ compatibility on .NET 10.0 (Windows only)
- `SixLabors.ImageSharp` (or `SkiaSharp`) — replacement for ImageProcessor
#### Expected Breaking Changes
**ASP.NET Framework → ASP.NET Core (123 issues — 54% of this project's issues):**
- `System.Web.Mvc.ContentResult``Microsoft.AspNetCore.Mvc.ContentResult` (9 constructor + property changes)
- `System.Web.Mvc.HttpStatusCodeResult``Microsoft.AspNetCore.Mvc.StatusCodeResult` (11 issues)
- `System.Web.Mvc.ViewResult``Microsoft.AspNetCore.Mvc.ViewResult` (1 issue)
- `System.Web.Mvc.UrlParameter` → ASP.NET Core routing equivalents (9 issues)
- `System.Web.Mvc.GlobalFilterCollection``IServiceCollection` filter registration (2 issues)
- `System.Web.Routing.Route` / `RouteCollection` → ASP.NET Core endpoint routing (7 issues)
- `System.Web.HttpPostedFile` / `HttpPostedFileWrapper``IFormFile` (9 issues)
- Application startup: `Global.asax``Program.cs` / `Startup.cs`
- Route configuration: `RouteConfig.cs` → Endpoint routing in `Program.cs`
- Filter registration: `FilterConfig.cs` → Service collection configuration
**Legacy Configuration (19 issues):**
- `ConfigurationManager.ConnectionStrings``IConfiguration` / `appsettings.json`
- `ConfigurationManager.AppSettings``IConfiguration` / `appsettings.json`
**GDI+ / System.Drawing (14 issues):**
- `System.Drawing.Bitmap`, `System.Drawing.Imaging.ImageFormat` — require `System.Drawing.Common` NuGet
- `Bitmap.SetPixel` — compatible via System.Drawing.Common but Windows-only
**SqlClient (37+ issues):**
- `System.Data.SqlClient.SqlParameter` constructors (37 occurrences)
- `System.Data.SqlClient.SqlConnection` (10 occurrences)
- `System.Data.SqlClient.SqlCommand` (3 occurrences)
**PDFsharp/MigraDoc 1.50 → 6.2.4:**
- `MigraDoc.DocumentObjectModel.Document` API may have changed
- `MigraDoc.Rendering.PdfDocumentRenderer` — rendering pipeline restructured
- `PdfDocument.Save()` method signature may differ
- All PDF generation code in `fuchs_fds_pdf.vb` and `fuchs_intranet.vb` needs review
**Other:**
- `vbNewLine` deprecated (11 issues) → use `Environment.NewLine`
- `My.Computer.FileSystem` (3 issues) → use `System.IO` directly
#### Code Modifications
**High Priority — Structural Changes:**
1. Create `Program.cs` (or `Program.vb`) with ASP.NET Core host builder
2. Migrate `Global.asax` application startup to `Program.cs`/`Startup.cs`
3. Migrate `RouteConfig` to ASP.NET Core endpoint routing
4. Migrate `FilterConfig` to service collection registration
5. Convert `web.config` settings to `appsettings.json`
**High Priority — Namespace Changes:**
6. Replace all `Imports System.Web.Mvc` with `Imports Microsoft.AspNetCore.Mvc`
7. Replace all `Imports System.Data.SqlClient` with `Imports Microsoft.Data.SqlClient`
8. Replace `HttpPostedFile`/`HttpPostedFileWrapper` with `IFormFile`
9. Replace `System.Web.Routing` with ASP.NET Core routing
**Medium Priority — Package Migration:**
10. Replace ImageProcessor usage with SixLabors.ImageSharp (or SkiaSharp)
11. Update PDFsharp/MigraDoc code to v6.2.4 API
12. Add `System.Drawing.Common` NuGet for remaining GDI+ usage
**Low Priority — Code Cleanup:**
13. Replace `vbNewLine` with `Environment.NewLine`
14. Replace `My.Computer.FileSystem` with `System.IO` equivalents
15. Update `ConfigurationManager` references to use `IConfiguration`
#### Validation Checklist
- [ ] Converted to SDK-style project (Microsoft.NET.Sdk.Web)
- [ ] TargetFramework set to net10.0
- [ ] Program.cs/Startup.cs created with ASP.NET Core host
- [ ] All ASP.NET MVC controllers migrated to ASP.NET Core MVC
- [ ] Route configuration migrated to endpoint routing
- [ ] All incompatible packages removed/replaced
- [ ] All security vulnerability packages updated
- [ ] ImageProcessor replaced with alternative
- [ ] PDFsharp/MigraDoc code updated for v6.x
- [ ] SqlClient namespace migrated
- [ ] System.Drawing.Common added for GDI+ usage
- [ ] web.config settings migrated to appsettings.json
- [ ] Builds without errors
- [ ] Builds without warnings
- [ ] No dependency conflicts
### 4.5 Fuchs.Tests (New)
**Current State**: Does not exist — no automated test coverage in the solution
**Target State**: net10.0 | SDK-style | xUnit test project | C#
**Risk Level**: 🟢 Low
**Complexity**: Low
#### Purpose
Create a new C# xUnit test project to provide automated validation of critical business logic after the .NET 10.0 upgrade. This project bridges the gap identified in the assessment: **zero existing test coverage**.
#### Project Setup
- **Project Name**: `Fuchs.Tests`
- **Location**: `Fuchs.Tests\Fuchs.Tests.csproj` (in solution root)
- **SDK**: `Microsoft.NET.Sdk`
- **Target Framework**: `net10.0`
- **Test Framework**: xUnit (latest stable)
- **Language**: C# (aligns with modern .NET ecosystem; can reference VB.NET projects)
#### Package References
| Package | Version | Purpose |
| :--- | :---: | :--- |
| Microsoft.NET.Test.Sdk | latest | Test host infrastructure |
| xunit | latest | Test framework |
| xunit.runner.visualstudio | latest | Visual Studio test runner |
| Moq | latest | Mocking framework for isolating dependencies |
| coverlet.collector | latest | Code coverage collection |
#### Project References
- `Fuchs.vbproj` — test the main web application logic
- `Fuchs_DataService.vbproj` — test data service business logic
- `MFR_RESTClient.vbproj` — test REST client utilities
- `MT940Parser.csproj` — test MT940 parsing logic
#### Test Coverage Strategy
**Priority 1 — MT940Parser (highest testability):**
- MT940 statement parsing correctness
- Edge cases: empty files, malformed records, multi-statement files
- Currency/amount parsing across cultures
**Priority 2 — Data Service Logic (Fuchs_DataService):**
- SQL parameter construction helpers
- Configuration value resolution
- Business logic that can be tested without database
**Priority 3 — REST Client (MFR_RESTClient):**
- Request construction and parameter serialization
- Response deserialization
- Error handling paths
**Priority 4 — Web Application (Fuchs):**
- Invoice data model properties and calculations
- Reminder data model properties
- PDF text block construction
- Address parsing and HTML-decode logic (e.g., `raw_InvoiceAddress`, `raw_ProvisionLocation`)
#### Validation Checklist
- [ ] Fuchs.Tests.csproj created with xUnit, net10.0
- [ ] Project added to solution
- [ ] References to all 4 projects added
- [ ] Initial test suite passes
- [ ] Tests execute via `dotnet test`
---
## 5. Package Update Reference
### Common Package Updates (affecting multiple projects)
| Package | Current | Target | Projects Affected | Action | Reason |
| :--- | :---: | :---: | :---: | :--- | :--- |
| Newtonsoft.Json | 13.0.3 | 13.0.4 | 3 (Fuchs, Fuchs_DataService, MFR_RESTClient) | Update | Recommended upgrade |
| System.Runtime.CompilerServices.Unsafe | 6.0.0 | 6.1.2 | 2 (Fuchs, MFR_RESTClient) | Update | Recommended upgrade |
| System.Buffers | 4.5.1 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework |
| System.Memory | 4.5.5 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework |
| System.Numerics.Vectors | 4.5.0 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework |
| System.Threading.Tasks.Extensions | 4.5.4 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework |
| System.ValueTuple | 4.5.0 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework |
| Squid-Box.SevenZipSharp | 1.6.1.23 | — | 2 (Fuchs, Fuchs_DataService) | Keep | Compatible |
| Microsoft.Web.Infrastructure | 2.0.0 | — | 2 (Fuchs, Fuchs_DataService) | **Remove** | Included in framework |
| Microsoft.AspNet.Razor | 3.2.9 | — | 2 (Fuchs, Fuchs_DataService) | **Remove** | Included in framework |
### Security Vulnerability Updates (Critical)
| Package | Current | Target | Project | Action | Reason |
| :--- | :---: | :---: | :--- | :--- | :--- |
| BouncyCastle.Cryptography | 2.3.0 | 2.6.2 | Fuchs | Update | 🔒 Security vulnerability |
| Microsoft.IdentityModel.JsonWebTokens | 7.0.2 | 8.17.0 | MFR_RESTClient | Update | 🔒 Security vulnerability |
| MimeKit | 4.4.0 | 4.15.1 | Fuchs | Update | 🔒 Security vulnerability |
| RestSharp | 110.2.0 | 114.0.0 | MFR_RESTClient | Update | 🔒 Security vulnerability |
| System.IdentityModel.Tokens.Jwt | 7.0.2 | 8.17.0 | MFR_RESTClient | Update | 🔒 Security vulnerability |
| TinyMCE | 6.3.1 | 8.3.2 | Fuchs | Update | 🔒 Security vulnerability |
### Fuchs.vbproj Package Updates
| Package | Current | Target | Action | Reason |
| :--- | :---: | :---: | :--- | :--- |
| BouncyCastle | 1.8.9 | 1.8.9 | Keep/Update | Security vulnerability (same version flagged) |
| BouncyCastle.Cryptography | 2.3.0 | 2.6.2 | Update | Security vulnerability |
| HtmlAgilityPack | 1.11.54 | — | Keep | Compatible |
| ImageProcessor | 2.9.1 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp |
| ImageProcessor.Plugins.WebP | 1.3.0 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp |
| ImageProcessor.Web | 4.12.1 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp |
| ImageProcessor.Web.Config | 2.6.0 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp |
| jQuery | 3.7.1 | — | Keep | Compatible |
| jQuery.Validation | 1.19.5 | — | Keep | Compatible |
| MailKit | 4.4.0 | — | Keep | Compatible |
| Microsoft.AspNet.Mvc | 5.2.9 | — | **Remove** | Included in framework (ASP.NET Core) |
| Microsoft.AspNet.TelemetryCorrelation | 1.0.8 | — | **Remove** | Incompatible; functionality in ASP.NET Core |
| Microsoft.AspNet.WebPages | 3.2.9 | — | **Remove** | Included in framework |
| Microsoft.CodeDom.Providers.DotNetCompilerPlatform | 4.1.0 | — | **Remove** | Included in framework |
| Microsoft.IO.RecyclableMemoryStream | 2.3.2 | — | Keep | Compatible |
| Microsoft.jQuery.Unobtrusive.Validation | 4.0.0 | — | Keep | Compatible |
| MimeKit | 4.4.0 | 4.15.1 | Update | Security vulnerability |
| Modernizr | 2.8.3 | — | Keep | Compatible |
| PDFsharp | 1.50.5147 | 6.2.4 | Update | Incompatible — major version upgrade |
| PDFsharp-MigraDoc | 1.50.5147 | 6.2.4 | Update | Incompatible — major version upgrade |
| Portable.BouncyCastle | 1.9.0 | — | Keep | Compatible |
| QRCoder | 1.4.3 | — | Keep | Compatible |
| Spire.PDF | 8.10.5 | — | Keep | Compatible |
| System.Data.DataSetExtensions | 4.5.0 | — | **Remove** | Included in framework |
| System.Diagnostics.DiagnosticSource | 7.0.2 | 10.0.5 | Update | Recommended upgrade |
| System.Formats.Asn1 | 8.0.0 | 10.0.5 | Update | Recommended upgrade |
| System.Text.Encoding.CodePages | 7.0.0 | 10.0.5 | Update | Recommended upgrade |
| TinyMCE | 6.3.1 | 8.3.2 | Update | Security vulnerability |
### MFR_RESTClient.vbproj Package Updates
| Package | Current | Target | Action | Reason |
| :--- | :---: | :---: | :--- | :--- |
| Microsoft.AspNet.SignalR.Client | 2.4.3 | — | Keep | Compatible |
| Microsoft.AspNet.WebApi | 5.2.9 | — | **Remove** | Included in framework |
| Microsoft.AspNet.WebApi.Client | 5.2.9 | — | Keep | Compatible |
| Microsoft.AspNet.WebApi.Core | 5.2.9 | — | **Remove/Replace** | Incompatible — no supported version |
| Microsoft.AspNet.WebApi.WebHost | 5.2.9 | — | **Remove/Replace** | Incompatible — no supported version |
| Microsoft.Azure.Services.AppAuthentication | 1.6.2 | — | Keep | Compatible |
| Microsoft.Bcl.AsyncInterfaces | 7.0.0 | 10.0.5 | Update | Recommended upgrade |
| Microsoft.Data.Edm | 5.8.5 | — | Keep | Compatible |
| Microsoft.Data.OData | 5.8.5 | — | **Review** | ⚠️ Deprecated — find replacement |
| Microsoft.Data.Services.Client | 5.8.5 | — | Keep | Compatible |
| Microsoft.IdentityModel.Abstractions | 7.0.2 | — | **Review** | ⚠️ Deprecated |
| Microsoft.IdentityModel.Clients.ActiveDirectory | 5.3.0 | — | **Replace** | ⚠️ Deprecated — use Microsoft.Identity.Client (MSAL) |
| Microsoft.IdentityModel.JsonWebTokens | 7.0.2 | 8.17.0 | Update | Security vulnerability |
| Microsoft.IdentityModel.Logging | 7.0.2 | — | **Review** | ⚠️ Deprecated |
| Microsoft.IdentityModel.Tokens | 7.0.2 | — | **Review** | ⚠️ Deprecated |
| Microsoft.NETCore.Platforms | 7.0.4 | — | **Remove** | Included in framework |
| Microsoft.NETCore.Targets | 5.0.0 | — | Keep | Compatible |
| Microsoft.Rest.ClientRuntime | 2.3.24 | — | **Review** | ⚠️ Deprecated — find replacement |
| Microsoft.WindowsAzure.ConfigurationManager | 3.2.3 | — | **Replace** | Incompatible — use Microsoft.Extensions.Configuration |
| RestSharp | 110.2.0 | 114.0.0 | Update | Security vulnerability |
| System.IdentityModel.Tokens.Jwt | 7.0.2 | 8.17.0 | Update | Security vulnerability |
| System.IO | 4.3.0 | — | **Remove** | Included in framework |
| System.Net.Http | 4.3.4 | — | **Remove** | Included in framework |
| System.Private.Uri | 4.3.2 | — | Keep | Compatible |
| System.Runtime | 4.3.1 | — | **Remove** | Included in framework |
| System.Security.Cryptography.Algorithms | 4.3.1 | — | **Remove** | Included in framework |
| System.Security.Cryptography.Encoding | 4.3.0 | — | **Remove** | Included in framework |
| System.Security.Cryptography.Primitives | 4.3.0 | — | **Remove** | Included in framework |
| System.Security.Cryptography.X509Certificates | 4.3.2 | — | **Remove** | Included in framework |
| System.Spatial | 5.8.5 | — | Keep | Compatible |
| System.Text.Encoding | 4.3.0 | — | **Remove** | Included in framework |
| System.Text.Encodings.Web | 7.0.0 | 10.0.5 | Update | Recommended upgrade |
| System.Text.Json | 7.0.3 | 10.0.5 | Update | Recommended upgrade |
| WindowsAzure.ServiceBus | 6.2.2 | — | **Replace** | Incompatible — use Azure.Messaging.ServiceBus |
### Fuchs_DataService.vbproj Package Updates
| Package | Current | Target | Action | Reason |
| :--- | :---: | :---: | :--- | :--- |
| Microsoft.AspNet.Razor | 3.2.9 | — | **Remove** | Included in framework |
| Microsoft.Web.Infrastructure | 2.0.0 | — | **Remove** | Included in framework |
| Newtonsoft.Json | 13.0.3 | 13.0.4 | Update | Recommended upgrade |
| Squid-Box.SevenZipSharp | 1.6.1.23 | — | Keep | Compatible |
| System.Runtime.InteropServices.RuntimeInformation | 4.3.0 | — | **Remove** | Included in framework |
| Topshelf | 4.3.0 | — | Keep | Compatible |
### MT940Parser.csproj Package Updates
| Package | Current | Target | Action | Reason |
| :--- | :---: | :---: | :--- | :--- |
| NETStandard.Library | 2.0.3 (transitive) | — | Keep | Compatible |
---
## 6. Breaking Changes Catalog
### Framework Breaking Changes
| Category | Issue Count | Impact | Description |
| :--- | :---: | :--- | :--- |
| System.Data.SqlClient → Microsoft.Data.SqlClient | 72+ | Source Incompatible | SqlParameter, SqlConnection, SqlCommand constructors and types moved to Microsoft.Data.SqlClient namespace. All `Imports System.Data.SqlClient` / `using System.Data.SqlClient` must change. |
| System.Web.Mvc → Microsoft.AspNetCore.Mvc | 101+ | Binary Incompatible | ContentResult, HttpStatusCodeResult, ViewResult, UrlParameter, GlobalFilterCollection, RouteCollection — all ASP.NET MVC types replaced by ASP.NET Core equivalents |
| System.Configuration.ConfigurationManager | 48 | Source Incompatible | ApplicationSettingsBase, ConnectionStringSettingsCollection, ConfigurationManager.AppSettings/ConnectionStrings — available via NuGet `System.Configuration.ConfigurationManager` or migrate to `Microsoft.Extensions.Configuration` |
| Microsoft.VisualBasic.Constants | 11 | Source Incompatible | `vbNewLine` — deprecated in modern .NET; replace with `Environment.NewLine` or `vbCrLf` |
| System.Uri | 23 | Behavioral Change | URI parsing behavior changes in .NET 10.0 — may affect URL construction/comparison |
| System.Drawing / GDI+ | 14 | Source Incompatible | Bitmap, ImageFormat types — require `System.Drawing.Common` NuGet on .NET 10.0; Windows-only |
| System.Web.HttpPostedFile / HttpPostedFileWrapper | 9 | Source Incompatible | File upload types replaced by `IFormFile` in ASP.NET Core |
| System.Web.Routing | 5 | Binary Incompatible | Route, RouteCollection — replaced by ASP.NET Core routing |
| Microsoft.VisualBasic.MyServices.FileSystemProxy | 3 | Binary Incompatible | `My.Computer.FileSystem` — may have limited support; use `System.IO` directly |
| System.TimeSpan.FromMilliseconds | 2 | Source Incompatible | Overload resolution may change |
### Package Breaking Changes
| Package | Change | Impact |
| :--- | :--- | :--- |
| PDFsharp 1.50 → 6.2.4 | Major version upgrade. API restructured; namespace changes; `PdfDocument`, `PdfPage` APIs may differ. MigraDoc rendering API changed. | High — review PDFsharp 6.x migration guide |
| RestSharp 110.2 → 114.0 | API changes in request/response handling | Medium — review changelog |
| ImageProcessor → (replacement) | Package removed entirely; no .NET 10 version | High — must replace with alternative (ImageSharp, SkiaSharp) |
| WindowsAzure.ServiceBus → Azure.Messaging.ServiceBus | Completely different API surface | High — full rewrite of ServiceBus integration |
| Microsoft.IdentityModel.Clients.ActiveDirectory → Microsoft.Identity.Client | ADAL deprecated; migrate to MSAL | Medium -
---
## 7. Risk Management
### Risk Identification
| Risk ID | Category | Description | Impact | Likelihood | Level |
| :--- | :--- | :--- | :---: | :---: | :---: |
| 01 | Technical | Issues during SDK-style conversion | High | Medium | 🔴 High |
| 02 | Technical | Inability to upgrade WCF services to CoreWCF | High | Medium | 🔴 High |
| 03 | Technical | GDI+ / System.Drawing compatibility issues | High | Medium | 🔴 High |
| 04 | Technical | Breakage due to ASP.NET Framework → ASP.NET Core migration | High | High | 🔴 High |
| 05 | Technical | SQL Client namespace changes not fully resolved | Medium | Medium | 🟡 Medium |
| 06 | Technical | PDFsharp/MigraDoc API changes not addressed | Medium | Medium | 🟡 Medium |
| 07 | Technical | RestSharp API changes not compatible | Medium | Medium | 🟡 Medium |
| 08 | Technical | Legacy configuration system issues | Medium | High | 🟡 Medium |
| 09 | Technical | Incomplete or flawed all-at-once migration | High | Medium | 🔴 High |
| 10 | Process | Insufficient testing due to lack of automated tests | High | High | 🔴 High |
### Risk Assessment
- **High Level Risks (🔴)**:
- 01: Technical issues during SDK-style conversion could block the migration.
- 02: WCF services that cannot be upgraded to CoreWCF may require significant rearchitecture.
- 03: GDI+ / System.Drawing issues could lead to runtime failures on .NET 10.0.
- 04: ASP.NET Framework to ASP.NET Core migration causing critical application failures.
- 09: An incomplete all-at-once migration could leave the solution in an unstable state.
- 10: Lack of automated tests increases the likelihood of undetected issues.
- **Medium Level Risks (🟡)**:
- 05: Changes in the SQL Client namespace not being fully resolved may cause runtime errors.
- 06: PDFsharp/MigraDoc API changes that are not addressed could lead to PDF generation failures.
- 07: RestSharp API changes not being compatible with existing code may disrupt external service integrations.
- 08: Issues arising from the legacy configuration system might be overlooked in the migration.
### Risk Response Strategies
1. **Mitigation**:
- **Extensive backup and restore strategy**: Complete backups of all projects and solution states will be created before starting the migration. This allows reverting to the original state in case of critical issues.
- **Incremental migration approach**: Where possible, migrate projects or components incrementally rather than all-at-once. This reduces the impact of unforeseen issues.
- **Feature flags / toggles**: Implement feature flags for critical path changes (e.g., SDK-style conversion, WCF to CoreWCF migration) to enable quick disabling if severe issues are encountered.
- **Automated tests**: Where feasible, develop automated tests for critical functionality before migration. This will help in validating the success of the migration and catching issues early.
2. **Contingency**:
- **Rollback plan**: If the all-at-once migration fails, revert to the backuped state and reassess the migration strategy.
- **Staged upgrade**: Consider a staged upgrade approach, where projects are upgraded in phases rather than a single atomic operation, allowing for easier pinpointing of issues.
3. **Acceptance**:
- Some low probability, high impact risks (e.g., undocumented breaking changes in third-party packages) may be accepted if mitigation strategies are not feasible, with a plan to address issues as they arise post-migration.
---
## 8. Testing & Validation Strategy
### Automated Testing (Fuchs.Tests)
A new xUnit test project (`Fuchs.Tests`) targeting net10.0 will be created as part of this upgrade to provide automated validation. See [§4.5 Fuchs.Tests](#45-fuchstests-new) for full project details.
**Test projects to run:**
- `Fuchs.Tests.csproj` — xUnit tests covering MT940 parsing, data models, REST client utilities, and business logic
**Execution:**
- Run via `dotnet test` on the entire solution after the atomic upgrade completes
- Expected outcome: All tests pass
### Build Verification (Automated)
After the atomic upgrade operation:
1. **Restore dependencies**: `dotnet restore` on entire solution
2. **Build solution**: `dotnet build` — target: 0 errors, 0 warnings
3. **Run tests**: `dotnet test` — target: all tests pass
4. **Verify no dependency conflicts**: Check for package downgrade warnings or version conflicts
### Testing Approaches
1. **Automated Unit Testing**: Where feasible, develop and run automated unit tests for critical components and functionality. These tests should cover:
- Key business logic
- Public APIs
- Critical integrations (e.g., database, external services)
2. **Manual Testing**: Perform manual testing for areas not covered by automated tests, including:
- UI/UX validation
- Exploratory testing to find edge cases or issues not anticipated
3. **Performance Testing**: Validate that the application meets performance benchmarks, especially for critical paths such as:
- Application startup time
- Response times for key APIs
- PDF generation time (post-migration to PDFsharp 6.x)
4. **Security Testing**: Perform security testing to ensure that known vulnerabilities are addressed and no new vulnerabilities are introduced during the migration.
5. **Regression Testing**: Conduct regression testing to ensure that existing functionality is not broken by the migration. This includes:
- Running the full suite of automated tests
- Manual verification of critical paths
### Success Criteria for Testing
- [ ] All critical and high-priority automated tests pass
- [ ] Manual testing sign-off for all key scenarios
- [ ] Performance benchmarks met or exceeded
- [ ] No new security vulnerabilities introduced
- [ ] Successful migration of all projects to .NET 10.0 with no critical issues
---
## 9. Complexity & Effort Assessment
### Complexity Factors
1. **Project Count**: 4 projects, which is relatively small and manageable.
2. **Dependency Depth**: Shallow dependency depth (≤ 2), with no circular dependencies detected. This simplifies the migration as inter-project dependencies are minimal.
3. **Codebase Size**: Total of 10,521 lines of code, with an estimated 358+ lines affected by the migration (3.4% of codebase). This is a small codebase, reducing the potential impact of migration issues.
4. **Package Compatibility**: All packages have known target versions, clear replacements, or are framework-included. This reduces uncertainty during the migration process.
### Effort Estimation
| Task | Estimated Effort (Person-Days) |
| :--- | ---: |
| 1. Project Setup and Initial Analysis | 2 |
| 2. SDK-style Conversion (3 projects) | 6 |
| 3. Framework Update | 2 |
| 4. Package Updates and Dependency Resolution | 3 |
| 5. Code Modifications for Breaking Changes | 5 |
| 6. Testing and Validation | 4 |
| 7. Documentation and Cleanup | 2 |
| **Total Estimated Effort** | **24 Person-Days** |
> Note: This is a high-level estimate and actual effort may vary based on detailed analysis and unforeseen issues during the migration.
---
## 10. Source Control Strategy
### Branching Strategy
1. **Main Branch**: `main` or `master` branch contains the production-ready code.
2. **Development Branch**: `develop` branch is used for integrating all feature branches and is the primary branch for development work.
3. **Feature Branches**: Each feature or migration task is done on a separate branch off of `develop`, named descriptively (e.g., `feature/sdk-style-conversion`).
4. **Release Branch**: A release branch (e.g., `release/10.0-upgrade`) is created from `develop` when preparing for a new release, allowing for final testing and bug fixing.
### Commit Messages
Adhere to the following conventions for commit messages:
- **Feature**: `feat(<scope>): <short description>` - Example: `feat(migration): add .NET 10.0 upgrade plan`
- **Fix**: `fix(<scope>): <short description>` - Example: `fix(migration): resolve RestSharp API changes`
- **Docs**: `docs(<scope>): <short description>` - Example: `docs(migration): update breaking changes catalog`
- **Chore**: `chore(<scope>): <short description>` - Example: `chore(deps): update Newtonsoft.Json to 13.0.4`
### Pull Requests
- All changes are to be merged via pull requests (PRs) to ensure code review and automated testing.
- PRs should be **small and focused**, addressing one migration task or feature at a time.
- Require at least one **reviewer approval** before merging.
- Ensure the PR description includes:
- **What**: A brief description of the changes made.
- **Why**: The reason for the change, including any relevant issue or task links.
- **Testing**: Any specific testing that was done or needs to be done.
---
## 11. Success Criteria
### Technical Criteria
- [ ] All 4 existing projects target their proposed framework:
- MT940Parser.csproj → netstandard2.0;net472;net10.0
- MFR_RESTClient.vbproj → net10.0-windows
- Fuchs_DataService.vbproj → net10.0
- Fuchs.vbproj → net10.0
- [ ] New test project created: Fuchs.Tests.csproj → net10.0
- [ ] All 3 classic projects converted to SDK-style format
- [ ] All package updates from assessment applied (32 packages requiring action)
- [ ] All 5 security vulnerability packages updated to secure versions
- [ ] Solution builds with 0 errors
- [ ] Solution builds with 0 warnings (or only pre-existing warnings)
- [ ] All unit tests pass (`dotnet test`)
- [ ] No package dependency conflicts
- [ ] No `TypeLoadException` or `MissingMethodException` at runtime
### Quality Criteria
- [ ] Code quality maintained — no hacks or workarounds without documentation
- [ ] All deprecated package replacements documented
- [ ] Breaking change resolutions follow recommended patterns
- [ ] Configuration migration follows modern .NET patterns
### Process Criteria
- [ ] All-At-Once strategy followed — single atomic upgrade operation
- [ ] All projects upgraded simultaneously — no intermediate states
- [ ] Backup created before upgrade started
- [ ] All changes can be committed as a single atomic unit
### Definition of Done
The migration is **complete** when:
1. All technical criteria above are met
2. The solution builds successfully on .NET 10.0
3. All security vulnerabilities are resolved
4. All unit tests in Fuchs.Tests pass
5. The application can start and serve requests (manual verification)
@@ -0,0 +1,10 @@
{
"scenarioId": "New-DotNet-Version",
"operationId": "16123aaa-4e23-42c5-b34a-cb69de77906a",
"description": "Upgrade solution or project to new version of .NET",
"startTime": "2026-03-29T20:17:19.7980781Z",
"lastUpdateTime": "2026-04-16T21:39:55.013522Z",
"stage": "Execution",
"properties": {},
"folderPath": ""
}
@@ -0,0 +1,56 @@
# Fuchs Intranet .NET 10.0 Upgrade Tasks
## Overview
This document tracks the execution of the Fuchs Intranet solution upgrade from .NET Framework 4.8 to .NET 10.0. All projects will be upgraded simultaneously in a single atomic operation, followed by test project creation and validation.
**Progress**: 2/3 tasks complete (67%) ![0%](https://progress-bar.xyz/67)
---
## Tasks
### [✓] TASK-001: Atomic framework and dependency upgrade with compilation fixes *(Completed: 2026-04-16 21:06)*
**References**: Plan §2, Plan §4, Plan §5 Package Update Reference, Plan §6 Breaking Changes Catalog
- [✓] (1) Convert MFR_RESTClient.vbproj, Fuchs_DataService.vbproj, and Fuchs.vbproj from classic to SDK-style project format per Plan §4 (MT940Parser is already SDK-style)
- [✓] (2) All 3 projects converted to SDK-style (**Verify**)
- [✓] (3) Update target frameworks: MT940Parser append `net10.0` to existing multi-target; MFR_RESTClient to `net10.0-windows`; Fuchs_DataService to `net10.0`; Fuchs to `net10.0` with `Microsoft.NET.Sdk.Web`
- [✓] (4) All target frameworks updated (**Verify**)
- [✓] (5) Update all package references across all projects per Plan §5 (remove framework-included packages, update security packages, replace incompatible packages)
- [✓] (6) All package references updated (**Verify**)
- [✓] (7) Restore all dependencies
- [✓] (8) All dependencies restored successfully (**Verify**)
- [✓] (9) Build solution and fix all compilation errors per Plan §6 Breaking Changes Catalog (focus areas: ASP.NET Framework → ASP.NET Core migration in Fuchs.vbproj, SqlClient namespace changes, configuration system, GDI+/System.Drawing, PDFsharp/MigraDoc API updates, ImageProcessor replacement, vbNewLine deprecation)
- [✓] (10) Solution builds with 0 errors (**Verify**)
---
### [✓] TASK-002: Create and validate test project *(Completed: 2026-04-16 21:11)*
**References**: Plan §4.5, Plan §8 Testing & Validation Strategy
- [✓] (1) Create Fuchs.Tests.csproj as xUnit test project targeting net10.0 per Plan §4.5
- [✓] (2) Add Fuchs.Tests project to solution
- [✓] (3) Add project references to all 4 projects (MT940Parser, MFR_RESTClient, Fuchs_DataService, Fuchs)
- [✓] (4) Add NuGet packages: Microsoft.NET.Test.Sdk, xunit, xunit.runner.visualstudio, Moq, coverlet.collector (latest stable versions)
- [✓] (5) Write initial test suite per Plan §4.5 Test Coverage Strategy (Priority 1: MT940 parsing; Priority 2: data service logic; Priority 3: REST client; Priority 4: web application data models)
- [✓] (6) Run tests via `dotnet test`
- [✓] (7) Fix any test failures
- [✓] (8) Re-run tests after fixes
- [✓] (9) All tests pass with 0 failures (**Verify**)
---
### [✗] TASK-003: Final commit
**References**: Plan §10 Source Control Strategy
- [✗] (1) Commit all changes with message: "Complete .NET 10.0 upgrade for Fuchs Intranet solution"
---
+27
View File
@@ -0,0 +1,27 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30