diff --git a/Extension/API.js b/Extension/API.js index b0d5c81..67d325d 100644 --- a/Extension/API.js +++ b/Extension/API.js @@ -1,7 +1,33 @@ const url = 'http://127.0.0.1:5180/api/'; -async function ping(){ - const data = await fetch ('http://127.0.0.1:5180/api/ping'); - console.log(data); +async function pingServer() { + try { + const response = await fetch('http://127.0.0.1:5180/api/ping'); + return response.ok; // Gibt true zurück, wenn der Server erreichbar ist + } catch (error) { + console.warn('Server ist nicht erreichbar:', error); + return false; // Gibt false zurück, wenn der Server nicht erreichbar ist + } +} +async function deleteHorseAPIAsync(id) { + try { + const apiUrl = `${url}deleteHorse/${id}`; + const response = await fetch(apiUrl, { + method: 'DELETE', // HTTP DELETE-Methode verwenden + headers: { + 'Content-Type': 'application/json' // Falls nötig, Header setzen + } + }); + + if (!response.ok) { + console.warn(`Failed to delete horse with id ${id}: ${response.statusText}`); + } + + console.log(response); + return response; // Erfolgreiche Antwort zurückgeben + } catch (error) { + console.warn(`Error deleting horse with id ${id}:`, error); + } + return; } async function setBaseDataHorseAPI(id, basedata) { @@ -23,7 +49,36 @@ async function setBaseDataHorseAPI(id, basedata) { console.error("Error setting horse data: " + error.message); } } - +async function getColorsAPIAsync(id) +{ + let colors; + try { + const apiUrl = url+`getHorse/${id}/Colors`; + await fetch(apiUrl) + .then(response => response.json()) + .then(data => { + colors = data; + }); + } catch (error) { + console.log(error); + } + return colors; +} +async function getHorseNotesAPIAsync(id) +{ + let notes; + try { + const apiUrl = url+`getHorse/${id}/Notes`; + await fetch(apiUrl) + .then(response => response.text()) + .then(data => { + notes = data; + }); + } catch (error) { + console.log(error); + } + return notes; +} async function getHorseLoadStateAPIAsync(id) { let horseData; @@ -41,12 +96,12 @@ async function getHorseLoadStateAPIAsync(id) return horseData; } -async function setHorsePedigreeAPIAsync(id, pedigreeData) +async function setHorseSummaryAPIAsync(id, summaryData) { - const apiUrl = url+`updateHorse/${id}/Pedigree`; + const apiUrl = url+`updateHorse/${id}/Summary`; const response = await fetch(apiUrl, { method: 'POST', - body: JSON.stringify({RelatedIds:pedigreeData}), + body: JSON.stringify(summaryData), headers: { 'Content-Type': 'application/json' } diff --git a/Extension/background.js b/Extension/background.js index 047cebb..f79b87a 100644 --- a/Extension/background.js +++ b/Extension/background.js @@ -5,6 +5,10 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { // Kein async/await mehr in diesem Aufruf updateHorseButton(); } + else if (message.action === "deleteHorse") + { + deleteHorseButton(); + } // Kein return true erforderlich, da wir kein asynchrones sendResponse nutzen }); @@ -75,3 +79,17 @@ function updateHorseButton() { console.error("Error in updateHorseButton:", error); }); } +function deleteHorseButton() { + new Promise((resolve) => { + chrome.tabs.query({ active: true, currentWindow: true }, resolve); + }) + .then((tabs) => { + if (!tabs || tabs.length === 0) { + console.error("No active tab found."); + return; // Beende die Kette + } + + const activeTabId = tabs[0].id; + return sendMessageAsync(activeTabId, { action: "deleteHorse"}) + }) +} diff --git a/Extension/content.js b/Extension/content.js index f318f25..025f8b1 100644 --- a/Extension/content.js +++ b/Extension/content.js @@ -7,7 +7,8 @@ chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { const ageEl = document.querySelector('.right:nth-child(6)'); const genderEl = document.querySelector('img.icon16'); const breedEl = document.querySelector('.right:nth-child(4)'); - + const horseOwnerEl = document.querySelector('.right:nth-child(14)'); + const notesEl = document.querySelector('#notesTextbox'); if (!idEl || !ageEl || !genderEl || !breedEl) { console.error("Some required elements for basic horse data not found on the page."); sendResponse({ success: false, message: "Required elements not found." }); @@ -24,7 +25,9 @@ chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { gender: genderEl.alt || "Unknown", breed: breedEl.innerText || "Unknown", link: window.location.href || "", - lastDrawnDate: new Date(Date.now()).toISOString() + owner: horseOwnerEl.innerText.replaceAll(/\n.*/g, '') || "Unknown", + lastDrawnDate: new Date(Date.now()).toISOString(), + notes: notesEl ? notesEl.value : "" }; updateSingleLoadStateUI("Basic", true, false); console.log("Horse data gathered:", horseData); @@ -43,12 +46,40 @@ chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { sendResponse({ success: false, message: "No pedigree links found." }); return true; } - const relatedHorses = Array.from(pedigreeLinks).map(link => link.href); - console.log("Related horses:", relatedHorses); + const horseSummaryData = Array.from(pedigreeLinks).map(link => link.href); + let horseSummary; + console.log("Related horses:", horseSummaryData); + const conceptionEl = document.querySelector('.horse_blockimg+ .horse_blocktext p') + if (conceptionEl) { + conception = conceptionEl.innerText.split(' by')[0].split(' from')[0].replace('Due on', '').replace('Due ', '').trim(); + const fatherEl = document.querySelector('.horse_blockimg+ .horse_blocktext p a'); + const fatherName = fatherEl.innerText; + const fatherLink = fatherEl.href; + const ultrasoundGenderEl = document.querySelector('.horse_blocks+ .horse_blocks .horse_blocktitle+ .horse_blocktext p'); + let ultrasoundGender; + if (ultrasoundGenderEl) { + ultrasoundGender = document.querySelector('.horse_blocks+ .horse_blocks .horse_blocktitle+ .horse_blocktext p').innerText.split('\n')[0].trim(); + } + horseSummary = { + RelatedIds: horseSummaryData, + Conception: conception, + FatherName: fatherName, + FatherLink: fatherLink, + UltrasoundGender: ultrasoundGender + }; + } + else { + horseSummary = { + RelatedIds: horseSummaryData + }; + } + + //const ultraSonicEl = document.querySelector('.right:nth-child(10)'); + try { sendResponse({ success: true, data: "Processing..." }); - const response = await setHorsePedigreeAPIAsync(request.data.id, relatedHorses); + const response = await setHorseSummaryAPIAsync(request.data.id, horseSummary); if (!response.ok) { console.error("API returned an error:", response.statusText); sendResponse({ success: false, message: "API error: " + response.statusText }); @@ -65,9 +96,22 @@ chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { } else if (selectedTab === "Training") { const trainingEl8 = document.querySelector('.top:nth-child(8)'); const trainingEl6 = document.querySelector('.top:nth-child(6)'); - const training = (trainingEl8 && trainingEl8.innerText) - || (trainingEl6 && trainingEl6.innerText) - || "Unknown"; + + let training; + + // Überprüfen, ob `trainingEl8` existiert und nicht "Next level" enthält + if (trainingEl8 && trainingEl8.innerText !== "Next level") { + training = trainingEl8.innerText; + } else if (trainingEl6) { + // Fallback zu `trainingEl6`, wenn `trainingEl8` "Next level" ist oder nicht existiert + training = trainingEl6.innerText; + } else { + // Standardwert, wenn keiner der beiden existiert oder gültig ist + training = "Unknown"; + } + + console.log(training); + try { sendResponse({ success: true, data: "Processing..." }); @@ -85,85 +129,6 @@ chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { sendResponse({ success: false, message: error.message }); } updateSingleLoadStateUI("Training", true); - } else if (selectedTab === "Genetics") { - try { - const gpDiv = Array.from(document.querySelectorAll('.top div')).find(el => el.innerText.includes('GP')); - if (!gpDiv) { - console.error("No GP element found."); - sendResponse({ success: false, message: "No GP element found." }); - return true; - } - const totalGeneticPotentialStr = gpDiv.innerText.replace("GP total: ", "").trim(); - const totalGeneticPotential = parseInt(totalGeneticPotentialStr, 10) || 0; - - const geneticElems = Array.from(document.querySelectorAll('.genetic_name , .genetic_result')); - if (geneticElems.length === 0) { - console.error("No genetic elements found."); - sendResponse({ success: false, message: "No genetic elements found." }); - return true; - } - - const geneticDictionary = Object.fromEntries( - geneticElems.map(x => x.innerText) - .reduce((acc, cur, i, arr) => (i % 2 === 0 ? acc.push([cur, arr[i + 1]]) : null, acc), []) - ); - - const geneticsStats = Array.from(document.querySelectorAll('.genetic_stats')); - if (geneticsStats.length < 10) { - console.error("Not enough genetic stats found."); - sendResponse({ success: false, message: "Not enough genetic stats found for genetics calculation." }); - return true; - } - - const geneticPotentialList = geneticsStats - .map(x => x.innerText.trim()) - .filter(value => !isNaN(value) && value !== "") - .map(value => parseFloat(value)); - - const GeneticPotential = { - GP: totalGeneticPotential, - GeneticPotential: { - "Acceleration": geneticPotentialList[0], - "Agility": geneticPotentialList[1], - "Balance": geneticPotentialList[2], - "Bascule": geneticPotentialList[3], - "Pulling power": geneticPotentialList[4], - "Speed": geneticPotentialList[5], - "Sprint": geneticPotentialList[6], - "Stamina": geneticPotentialList[7], - "Strength": geneticPotentialList[8], - "Surefootedness": geneticPotentialList[9] - }, - Disciplines: { - "Dressage": geneticPotentialList[1] + geneticPotentialList[2] + geneticPotentialList[8], - "Driving": geneticPotentialList[1] + geneticPotentialList[4] + geneticPotentialList[5] + geneticPotentialList[7] + geneticPotentialList[8], - "Endurance": geneticPotentialList[5] + geneticPotentialList[7] + geneticPotentialList[8] + geneticPotentialList[9], - "Eventing": geneticPotentialList[2] + geneticPotentialList[3] + geneticPotentialList[5] + geneticPotentialList[8] + geneticPotentialList[9], - "Flat Racing": geneticPotentialList[5] + geneticPotentialList[0] + geneticPotentialList[7] + geneticPotentialList[6], - "Show Jumping": geneticPotentialList[0] + geneticPotentialList[1] + geneticPotentialList[3] + geneticPotentialList[6] + geneticPotentialList[8], - "Western Reining": geneticPotentialList[0] + geneticPotentialList[1] + geneticPotentialList[2] + geneticPotentialList[9] - }, - Colors: geneticDictionary - }; - - console.log("Genetic Potential:", GeneticPotential); - sendResponse({ success: true, data: "Processing..." }); - const response = await setHorseGeneticsAPIAsync(request.data.id, GeneticPotential); - if (!response.ok) { - console.error("API returned an error:", response.statusText); - sendResponse({ success: false, message: "API error: " + response.statusText }); - return true; - } - - const jsonData = await response.json(); - console.log("API Response:", jsonData); - - sendResponse({ success: true, data: jsonData }); - } catch (error) { - console.error("Error while processing Genetics tab:", error); - sendResponse({ success: false, message: error.message }); - } - updateSingleLoadStateUI("Genetics", true, false); } else if (selectedTab === "Achievements") { const geneticStatsEls = document.querySelectorAll('.genetic_stats'); if (!geneticStatsEls || geneticStatsEls.length === 0) { @@ -259,7 +224,97 @@ chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { sendResponse({ success: false, message: error.message }); } updateSingleLoadStateUI("Achievements", true, true); - } else if (selectedTab === "Health") { + } + else if (selectedTab === "Genetics") { + try { + const gpDiv = Array.from(document.querySelectorAll('.top div')).find(el => el.innerText.includes('GP')); + if (!gpDiv) { + console.error("No GP element found."); + sendResponse({ success: false, message: "No GP element found." }); + return true; + } + const totalGeneticPotentialStr = gpDiv.innerText.replace("GP total: ", "").trim(); + const totalGeneticPotential = parseInt(totalGeneticPotentialStr, 10) || 0; + + const geneticElems = Array.from(document.querySelectorAll('.genetic_name , .genetic_result')); + if (geneticElems.length === 0) { + console.error("No genetic elements found."); + sendResponse({ success: false, message: "No genetic elements found." }); + return true; + } + + const geneticDictionary = Object.fromEntries( + geneticElems.map(x => x.innerText) + .reduce((acc, cur, i, arr) => (i % 2 === 0 ? acc.push([cur, arr[i + 1]]) : null, acc), []) + ); + + // Werte aus Checkboxen sammeln und hinzufügen + const checkboxGenetics = getCheckboxGenetics(); + const additionalColorTextboxValue = document.querySelector('#optionalColorTextbox').value; + if (additionalColorTextboxValue.trim() !== "") + { + checkboxGenetics["Custom"] = additionalColorTextboxValue; + } + Object.assign(geneticDictionary, checkboxGenetics); + + const geneticsStats = Array.from(document.querySelectorAll('.genetic_stats')); + if (geneticsStats.length < 10) { + console.error("Not enough genetic stats found."); + sendResponse({ success: false, message: "Not enough genetic stats found for genetics calculation." }); + return true; + } + + const geneticPotentialList = geneticsStats + .map(x => x.innerText.trim()) + .filter(value => !isNaN(value) && value !== "") + .map(value => parseFloat(value)); + + const GeneticPotential = { + GP: totalGeneticPotential, + GeneticPotential: { + "Acceleration": geneticPotentialList[0], + "Agility": geneticPotentialList[1], + "Balance": geneticPotentialList[2], + "Bascule": geneticPotentialList[3], + "Pulling power": geneticPotentialList[4], + "Speed": geneticPotentialList[5], + "Sprint": geneticPotentialList[6], + "Stamina": geneticPotentialList[7], + "Strength": geneticPotentialList[8], + "Surefootedness": geneticPotentialList[9] + }, + Disciplines: { + "Dressage": geneticPotentialList[1] + geneticPotentialList[2] + geneticPotentialList[8], + "Driving": geneticPotentialList[1] + geneticPotentialList[4] + geneticPotentialList[5] + geneticPotentialList[7] + geneticPotentialList[8], + "Endurance": geneticPotentialList[5] + geneticPotentialList[7] + geneticPotentialList[8] + geneticPotentialList[9], + "Eventing": geneticPotentialList[2] + geneticPotentialList[3] + geneticPotentialList[5] + geneticPotentialList[8] + geneticPotentialList[9], + "Flat Racing": geneticPotentialList[5] + geneticPotentialList[0] + geneticPotentialList[7] + geneticPotentialList[6], + "Show Jumping": geneticPotentialList[0] + geneticPotentialList[1] + geneticPotentialList[3] + geneticPotentialList[6] + geneticPotentialList[8], + "Western Reining": geneticPotentialList[0] + geneticPotentialList[1] + geneticPotentialList[2] + geneticPotentialList[9] + }, + Colors: geneticDictionary + }; + + console.log("Genetic Potential:", GeneticPotential); + sendResponse({ success: true, data: "Processing..." }); + const response = await setHorseGeneticsAPIAsync(request.data.id, GeneticPotential); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + + const jsonData = await response.json(); + console.log("API Response:", jsonData); + + sendResponse({ success: true, data: jsonData }); + } catch (error) { + console.error("Error while processing Genetics tab:", error); + sendResponse({ success: false, message: error.message }); + } + updateSingleLoadStateUI("Genetics", true, false); + } + else if (selectedTab === "Health") { const healthEl = document.querySelector("#tab_health2 p"); if (!healthEl) { console.error("Health element not found."); @@ -287,11 +342,26 @@ chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { sendResponse({ success: false, message: error.message }); } updateSingleLoadStateUI("Health", true, false); - } else { + } + else { console.warn("Unknown or no tab selected."); sendResponse({ success: false, message: "Unknown or no tab selected." }); } - } else { + } else if (request.action === "deleteHorse") { + const idEl = document.querySelector('.right:nth-child(2)'); + const idString = idEl.innerText.replace('#', ''); + const id = BigInt(idString).toString(); + sendResponse({ success: true, data: "Processing..." }); + console.log("Deleting horse with ID:", id); + const response = await deleteHorseAPIAsync(id); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + updateLoadStateUI(id); + } + else { console.error("Unsupported action:", request.action); sendResponse({ success: false, message: "Unsupported action." }); } @@ -322,5 +392,34 @@ function cleanShowResults(results) { } // Bereinigen der Ergebnisse - return []; + return results; +} +function getCheckboxGenetics() { + return { + "RAB": getCheckboxValue('#checkboxRAB1', '#checkboxRAB2', "RAB"), + "Seal": getCheckboxValue('#checkboxSeal1', '#checkboxSeal2', "AT"), + "Flaxen": getCheckboxValue('#checkboxFlaxen1', '#checkboxFlaxen2', "f"), + "Sooty": getCheckboxValue('#checkboxSooty1', '#checkboxSooty2', "Sty"), + "Pangare": getCheckboxValue('#checkboxPangare1', '#checkboxPangare2', "P"), + "Sabino": getCheckboxValue('#checkboxSabino1', '#checkboxSabino2', "Ab"), + "WildBay": getCheckboxValue('#checkboxWildBay1', '#checkboxWildBay2', "A+"), + }; +} +// Funktion zur Bestimmung des Wertes basierend auf beiden Checkboxen +function getCheckboxValue(checkbox1Selector, checkbox2Selector, marker) { + const checkbox1 = document.querySelector(checkbox1Selector); + const checkbox2 = document.querySelector(checkbox2Selector); + + const isCheckbox1Checked = checkbox1?.checked || false; + const isCheckbox2Checked = checkbox2?.checked || false; + + if (isCheckbox1Checked && isCheckbox2Checked) { + return `${marker}/${marker}`; + } else if (isCheckbox1Checked) { + return `${marker}/n`; + } else if (isCheckbox2Checked) { + return `n/${marker}`; + } else { + return `n/n`; + } } \ No newline at end of file diff --git a/Extension/ui.js b/Extension/ui.js index 57ec322..275aac4 100644 --- a/Extension/ui.js +++ b/Extension/ui.js @@ -8,87 +8,238 @@ const rows = [ ]; // Warten, bis das DOM vollständig geladen ist document.addEventListener("DOMContentLoaded", function () { - // Suche nach dem Element mit der Klasse 'horse_banner' const banner = document.querySelector('.horse_banner'); if (banner) { - // Erstelle das container div const div = document.createElement('div'); div.className = 'collector_ui'; Object.assign(div.style, { position: 'absolute', - right: '-160px', + right: '-220px', top: '20px', zIndex: '1', padding: '10px', backgroundColor: '#FFFFFFD9', - width: '120px', + width: '180px', minHeight: '50px', display: 'flex', flexDirection: 'column', - alignItems: 'flex-start', - gap: '10px' // Abstand zwischen Button und Tabelle + gap: '10px' }); - - // Erstelle den Button - const updateHorseButton = document.createElement('updateHorseButton'); - updateHorseButton.textContent = 'Update Horse'; + const serverIsRunning = checkServerStatus(div); + // Container für die Buttons + const buttonContainer = document.createElement('div'); + Object.assign(buttonContainer.style, { + display: 'flex', + gap: '5px', + justifyContent: 'space-between', + width: '100%' + }); + // Textbox für Notizen + const notesTextbox = document.createElement('textarea'); + notesTextbox.id = 'notesTextbox'; + notesTextbox.placeholder = 'Notes...'; + notesTextbox.type = 'text'; + Object.assign(notesTextbox.style, { + width: '100%', + minHeight: '30px', + padding: '0px', + fontSize: '14px', + border: '1px solid #ccc', + borderRadius: '5px', + resize: 'vertical' + }); + // Update Horse Button + const updateHorseButton = document.createElement('button'); + updateHorseButton.textContent = 'Update'; Object.assign(updateHorseButton.style, { padding: '10px 15px', + flex: '3', backgroundColor: '#ffa200', color: '#fff', border: 'none', borderRadius: '5px', cursor: 'pointer', - alignSelf: 'stretch', // Button auf volle Breite dehnen - transition: 'background-color 0.3s ease' // Übergang für den Hover-Effekt + transition: 'background-color 0.3s ease' }); - updateHorseButton.addEventListener("click", function() { + updateHorseButton.addEventListener("click", function () { chrome.runtime.sendMessage({ action: "updateHorseData" }); }); - - // Hover-Effekt hinzufügen updateHorseButton.addEventListener('mouseenter', function () { - updateHorseButton.style.backgroundColor = '#bf8700'; // Hover-Farbe + updateHorseButton.style.backgroundColor = '#bf8700'; }); updateHorseButton.addEventListener('mouseleave', function () { - updateHorseButton.style.backgroundColor = '#ffa200'; // Originalfarbe + updateHorseButton.style.backgroundColor = '#ffa200'; }); - // Flex-Container für die Tabelle + // Delete Horse Button + const deleteHorseButton = document.createElement('button'); + deleteHorseButton.textContent = 'X'; + Object.assign(deleteHorseButton.style, { + padding: '5px', + flex: '1', + backgroundColor: '#ff0000', + color: '#fff', + border: 'none', + borderRadius: '5px', + cursor: 'pointer', + textAlign: 'center', + transition: 'background-color 0.3s ease' + }); + deleteHorseButton.addEventListener("click", function () { + chrome.runtime.sendMessage({ action: "deleteHorse" }); + }); + deleteHorseButton.addEventListener('mouseenter', function () { + deleteHorseButton.style.backgroundColor = '#bf0000'; + }); + deleteHorseButton.addEventListener('mouseleave', function () { + deleteHorseButton.style.backgroundColor = '#ff0000'; + }); + + // Buttons zum Container hinzufügen + buttonContainer.appendChild(updateHorseButton); + buttonContainer.appendChild(deleteHorseButton); + + // Buttons oben hinzufügen + div.appendChild(buttonContainer); + + // Labels mit Checkboxen hinzufügen + const labelContainer = document.createElement('div'); + Object.assign(labelContainer.style, { + display: 'flex', + flexDirection: 'column', + gap: '10px' + }); + + // Labels mit Checkboxen hinzufügen + const labels = [ + { name: "RAB", id: "RAB" }, + { name: "Seal", id: "Seal" }, + { name: "Flaxen", id: "Flaxen" }, + { name: "Sooty", id: "Sooty" }, + { name: "Pangare", id: "Pangare" }, + { name: "Sabino", id: "Sabino" }, + { name: "Wild Bay", id: "WildBay" }, + ]; + + labels.forEach(label => { + const labelRow = document.createElement('div'); + Object.assign(labelRow.style, { + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + gap: '5px' + }); + + const labelText = document.createElement('label'); + labelText.textContent = label.name; + Object.assign(labelText.style, { + flex: '1', + fontSize: '14px', + color: '#333' + }); + + const checkboxContainer = document.createElement('div'); + Object.assign(checkboxContainer.style, { + display: 'flex', + gap: '5px' + }); + + // Erste Checkbox + const checkbox1 = document.createElement('input'); + checkbox1.type = 'checkbox'; + checkbox1.id = `checkbox${label.id}1`; // ID mit Suffix 1 + + // Zweite Checkbox + const checkbox2 = document.createElement('input'); + checkbox2.type = 'checkbox'; + checkbox2.id = `checkbox${label.id}2`; // ID mit Suffix 2 + + checkboxContainer.appendChild(checkbox1); + checkboxContainer.appendChild(checkbox2); + + labelRow.appendChild(labelText); + labelRow.appendChild(checkboxContainer); + + labelContainer.appendChild(labelRow); + }); + + + // Überprüfen, ob der Tab "Genetics" gewählt ist, und Labels aktivieren/deaktivieren + function updateLabelStates() { + const isGeneticsTab = getTabselText() === "Genetics"; + Array.from(labelContainer.querySelectorAll('input')).forEach(input => { + input.disabled = !isGeneticsTab; + input.style.opacity = isGeneticsTab ? '1' : '0.5'; + }); + Array.from(labelContainer.querySelectorAll('label')).forEach(label => { + label.style.color = isGeneticsTab ? '#333' : '#aaa'; + }); + if (!isGeneticsTab) + { + document.querySelector('#optionalColorTextbox').disabled = true; + document.querySelector('#optionalColorTextbox').style.opacity = '0.5'; + } + else + { + document.querySelector('#optionalColorTextbox').disabled = false; + document.querySelector('#optionalColorTextbox').style.opacity = '1'; + } + } + + + // Tabelle erstellen const table = document.createElement('div'); Object.assign(table.style, { display: 'flex', flexDirection: 'column', width: '100%', - gap: '12px' // Abstand zwischen den Zeilen + gap: '12px' }); - // Erstelle Zeilen für jede Beschriftung + + // Zeilen für Tabelle hinzufügen (bleibt unverändert) rows.forEach(row => { const rowDiv = document.createElement('div'); Object.assign(rowDiv.style, { display: 'flex', - justifyContent: 'space-between', // Beschriftung links, Emoji rechts + justifyContent: 'space-between', width: '100%' }); - // Linkes Element für die Beschriftung const labelCell = document.createElement('div'); labelCell.textContent = row.label; - labelCell.style.flex = '1'; // Beschriftung auf der linken Seite + labelCell.style.flex = '1'; - // Rechtes Element für das Emoji const emojiCell = document.createElement('div'); const emojiSpan = document.createElement('span'); emojiSpan.id = row.emojiId; emojiSpan.textContent = row.emoji; emojiCell.appendChild(emojiSpan); - emojiCell.style.flex = '0'; // Emoji auf der rechten Seite + emojiCell.style.flex = '0'; - // Zeile zur Tabelle hinzufügen rowDiv.appendChild(labelCell); rowDiv.appendChild(emojiCell); table.appendChild(rowDiv); }); + + div.appendChild(notesTextbox); + div.appendChild(table); + // Labels und Checkboxen zum Div hinzufügen + div.appendChild(labelContainer); + // Textbox für optionale Farbe + const optionalColorTextbox = document.createElement('textarea'); + optionalColorTextbox.type = 'text'; + optionalColorTextbox.placeholder = 'Additional Color...'; + optionalColorTextbox.id = 'optionalColorTextbox'; + Object.assign(optionalColorTextbox.style, { + width: '100%', + height: '30px', + padding: '0px', + fontSize: '14px', + border: '1px solid #ccc', + borderRadius: '5px', + resize: 'vertical' + }); + div.appendChild(optionalColorTextbox); // Linie hinzufügen const line = document.createElement('hr'); @@ -100,7 +251,6 @@ document.addEventListener("DOMContentLoaded", function () { margin: '10px 0' }); - // Legend-Titel hinzufügen const legendTitle = document.createElement('div'); legendTitle.textContent = 'Legend:'; Object.assign(legendTitle.style, { @@ -109,7 +259,6 @@ document.addEventListener("DOMContentLoaded", function () { color: '#555' }); - // Info-Text für die Legende hinzufügen const legendTexts = [ { emoji: '✅', text: 'Loaded' }, { emoji: '☑️', text: 'Dynamic' }, @@ -145,18 +294,56 @@ document.addEventListener("DOMContentLoaded", function () { legend.appendChild(legendRow); }); - // Button oben hinzufügen, dann die Tabelle, Linie, und die Legende - div.appendChild(updateHorseButton); - div.appendChild(table); div.appendChild(line); div.appendChild(legendTitle); div.appendChild(legend); banner.appendChild(div); + // Tab-Wechsel überwachen + document.addEventListener("click", updateLabelStates); + updateLabelStates(); // Initialer Zustand + const horseId = document.querySelector('.right:nth-child(2)').innerText.replace('#', ''); - updateLoadStateUI(horseId); + if (serverIsRunning) + updateLoadStateUI(horseId); } }); +async function checkServerStatus(div) { + const serverIsRunning = await pingServer(); + if (!serverIsRunning){ + // Erstelle das Overlay + const overlay = document.createElement('div'); + + // Style für das Overlay + overlay.style.position = 'absolute'; + overlay.style.top = '0'; + overlay.style.left = '0'; + overlay.style.width = '100%'; + overlay.style.height = '100%'; + overlay.style.backgroundColor = 'rgba(255, 255, 255, 0.8)'; + overlay.style.display = 'flex'; + overlay.style.justifyContent = 'center'; + overlay.style.alignItems = 'center'; + overlay.style.zIndex = '9999'; + + // Erstelle den Text + const text = document.createElement('div'); + text.innerText = 'Server not running ❌'; + text.style.color = 'black'; + text.style.fontSize = '1.5em'; + text.style.fontWeight = 'bold'; + + // Text in das Overlay einfügen + overlay.appendChild(text); + div.appendChild(overlay); + return false; + } + return true; +} +// Funktion zur Ermittlung des Tabs +function getTabselText() { + return document.querySelector('div.tabsel')?.textContent?.trim() || "Unknown"; +} async function updateLoadStateUI(horseId) { const loadState = await getHorseLoadStateAPIAsync(horseId); if (!loadState) { @@ -173,7 +360,6 @@ async function updateLoadStateUI(horseId) { Achievements: loadState.achievementsLoaded ? (loadState.achievementsNeedsRefresh ? '🔄' : '☑️') : '❌', Health: loadState.healthLoaded ? (loadState.healthNeedsRefresh ? '🔄' : '✅') : '❌', }; - // Aktualisiere die Rows in der UI rows.forEach(row => { const emojiElement = document.getElementById(row.emojiId); @@ -181,8 +367,50 @@ async function updateLoadStateUI(horseId) { emojiElement.textContent = loadStateMapping[row.label]; // Setze das Emoji basierend auf dem Ladezustand } }); + const colors = await getColorsAPIAsync(horseId); + if (colors) { + // Update die Checkboxen basierend auf den Farben + updateColors(colors); + } + const notes = await getHorseNotesAPIAsync(horseId); + if (notes) { + // Update die Notizen + document.querySelector('#notesTextbox').value = notes; + } } +function updateColors(colors) { + const mappings = { + RAB: '#checkboxRAB', + Seal: '#checkboxSeal', + Flaxen: '#checkboxFlaxen', + Sooty: '#checkboxSooty', + Pangare: '#checkboxPangare', + Sabino: '#checkboxSabino', + WildBay: '#checkboxWildBay', + }; + Object.entries(mappings).forEach(([key, baseId]) => { + const checkbox1 = document.querySelector(`${baseId}1`); + const checkbox2 = document.querySelector(`${baseId}2`); + + if (colors[key]) { + // Farben in der Form "RAB/RAB", "RAB/n", "n/RAB", "n/n" + const [left, right] = colors[key].split('/'); + + // Aktualisiere Checkboxen basierend auf den Werten + if (checkbox1) checkbox1.checked = left !== 'n'; + if (checkbox2) checkbox2.checked = right !== 'n'; + } else { + // Wenn keine Farben vorhanden, Checkboxen deaktivieren + if (checkbox1) checkbox1.checked = false; + if (checkbox2) checkbox2.checked = false; + } + }); + if ("Custom" in colors) + { + document.querySelector('#optionalColorTextbox').value = colors["Custom"]; + } +} function updateSingleLoadStateUI(loadStateKey, isLoaded, needsRefresh) { // Mappe das LoadState-Schlüssel auf das Emoji const loadStateMapping = { diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/CodeChunks.db b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/CodeChunks.db index 06a5345..233bee1 100644 Binary files a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/CodeChunks.db and b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/CodeChunks.db differ diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db index 025dd0d..00f104f 100644 Binary files a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db and b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db differ diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-shm b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-shm index e1d9dee..168df0d 100644 Binary files a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-shm and b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-shm differ diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-wal b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-wal index 7c05416..b170c00 100644 Binary files a/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-wal and b/HRServer-Exporter/.vs/HRServer-Exporter/CopilotIndices/0.2.1653.9816/SemanticSymbols.db-wal differ diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/DesignTimeBuild/.dtbcache.v2 b/HRServer-Exporter/.vs/HRServer-Exporter/DesignTimeBuild/.dtbcache.v2 index 89b2451..4f228a1 100644 Binary files a/HRServer-Exporter/.vs/HRServer-Exporter/DesignTimeBuild/.dtbcache.v2 and b/HRServer-Exporter/.vs/HRServer-Exporter/DesignTimeBuild/.dtbcache.v2 differ diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/v17/.futdcache.v2 b/HRServer-Exporter/.vs/HRServer-Exporter/v17/.futdcache.v2 index 9c3468f..2bf63d1 100644 Binary files a/HRServer-Exporter/.vs/HRServer-Exporter/v17/.futdcache.v2 and b/HRServer-Exporter/.vs/HRServer-Exporter/v17/.futdcache.v2 differ diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/v17/.suo b/HRServer-Exporter/.vs/HRServer-Exporter/v17/.suo index 06592fa..9b57dbb 100644 Binary files a/HRServer-Exporter/.vs/HRServer-Exporter/v17/.suo and b/HRServer-Exporter/.vs/HRServer-Exporter/v17/.suo differ diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.backup.json b/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.backup.json index fad2913..e246897 100644 --- a/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.backup.json +++ b/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.backup.json @@ -3,32 +3,28 @@ "WorkspaceRootPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\", "Documents": [ { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\controllers\\horsecontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\controllers\\horsecontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\models\\horse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\models\\horse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\horseviewer.csproj||{04B8AB82-A572-4FEF-95CE-5222444B6B64}|", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\horseviewer.csproj||{04B8AB82-A572-4FEF-95CE-5222444B6B64}|" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewmain.designer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewmain.designer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\hrserver.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\hrserver.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\installer\\installer.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}", + "RelativeMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|solutionrelative:installer\\installer.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" - }, - { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" + "AbsoluteMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\installer\\frminstaller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", + "RelativeMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|solutionrelative:installer\\frminstaller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" } ], "DocumentGroupContainers": [ @@ -38,98 +34,87 @@ "DocumentGroups": [ { "DockedWidth": 200, - "SelectedChildIndex": 7, + "SelectedChildIndex": 4, "Children": [ { "$type": "Bookmark", "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}" }, { - "$type": "Document", - "DocumentIndex": 1, - "Title": "ViewMain.cs [Entwurf]", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewMain.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs [Entwurf]", - "RelativeToolTip": "HorseViewer\\ViewMain.cs [Entwurf]", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:28:48.344Z", - "EditorCaption": " [Entwurf]" + "$type": "Bookmark", + "Name": "ST:0:0:{aa2115a1-9712-457b-9047-dbb71ca2cdd2}" }, { "$type": "Document", "DocumentIndex": 3, - "Title": "ViewMain.Designer.cs", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.Designer.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewMain.Designer.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.Designer.cs", - "RelativeToolTip": "HorseViewer\\ViewMain.Designer.cs", - "ViewState": "AgIAACAAAAAAAAAAAAAawCcAAAAAAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:28:35.506Z", - "EditorCaption": "" + "Title": "HRServer.csproj", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "RelativeDocumentMoniker": "HRServer\\HRServer.csproj", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "RelativeToolTip": "HRServer\\HRServer.csproj", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000758|", + "WhenOpened": "2024-12-31T11:50:39.211Z" }, { "$type": "Document", "DocumentIndex": 4, - "Title": "ViewEditTable.cs", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewEditTable.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs", - "RelativeToolTip": "HorseViewer\\ViewEditTable.cs", - "ViewState": "AgIAACYAAAAAAAAAAAAEwDEAAAArAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:25:40.251Z", - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 5, - "Title": "ViewEditTable.cs [Entwurf]", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewEditTable.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs [Entwurf]", - "RelativeToolTip": "HorseViewer\\ViewEditTable.cs [Entwurf]", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:01:27.789Z", - "EditorCaption": " [Entwurf]" - }, - { - "$type": "Document", - "DocumentIndex": 6, - "Title": "ViewSettings.cs [Entwurf]", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewSettings.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewSettings.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewSettings.cs [Entwurf]", - "RelativeToolTip": "HorseViewer\\ViewSettings.cs [Entwurf]", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T20:59:50.626Z", - "EditorCaption": " [Entwurf]" - }, - { - "$type": "Document", - "DocumentIndex": 2, - "Title": "HorseViewer", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", - "RelativeDocumentMoniker": "HorseViewer\\HorseViewer.csproj", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", - "RelativeToolTip": "HorseViewer\\HorseViewer.csproj", + "Title": "Installer.csproj", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "RelativeDocumentMoniker": "Installer\\Installer.csproj", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "RelativeToolTip": "Installer\\Installer.csproj", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000758|", - "WhenOpened": "2024-12-08T20:58:28.928Z", - "EditorCaption": "" + "WhenOpened": "2024-12-31T11:50:38.796Z" }, { "$type": "Document", "DocumentIndex": 0, - "Title": "ViewMain.cs", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewMain.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs", - "RelativeToolTip": "HorseViewer\\ViewMain.cs", - "ViewState": "AgIAAE0AAAAAAAAAAAAAAFoAAAAyAAAAAAAAAA==", + "Title": "HorseController.cs", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Controllers\\HorseController.cs", + "RelativeDocumentMoniker": "HRServer\\Controllers\\HorseController.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Controllers\\HorseController.cs", + "RelativeToolTip": "HRServer\\Controllers\\HorseController.cs", + "ViewState": "AgIAALQAAAAAAAAAAAAqwMIAAABCAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T18:52:40.109Z", + "WhenOpened": "2024-12-28T15:17:01.854Z", "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "Horse.cs", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Models\\Horse.cs", + "RelativeDocumentMoniker": "HRServer\\Models\\Horse.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Models\\Horse.cs", + "RelativeToolTip": "HRServer\\Models\\Horse.cs", + "ViewState": "AgIAAKQBAAAAAAAAAAArwKsBAAArAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-12-28T15:17:36.163Z" + }, + { + "$type": "Document", + "DocumentIndex": 2, + "Title": "Program.cs", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Program.cs", + "RelativeDocumentMoniker": "HRServer\\Program.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Program.cs", + "RelativeToolTip": "HRServer\\Program.cs", + "ViewState": "AgIAACgAAAAAAAAAAAAnwDgAAAAMAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-12-28T15:17:04.846Z" + }, + { + "$type": "Document", + "DocumentIndex": 5, + "Title": "FRMInstaller.cs [Entwurf]", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\FRMInstaller.cs", + "RelativeDocumentMoniker": "Installer\\FRMInstaller.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\FRMInstaller.cs [Entwurf]", + "RelativeToolTip": "Installer\\FRMInstaller.cs [Entwurf]", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-12-28T14:38:01.819Z" } ] } diff --git a/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.json b/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.json index a106421..60aaf82 100644 --- a/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.json +++ b/HRServer-Exporter/.vs/HRServer-Exporter/v17/DocumentLayout.json @@ -3,32 +3,32 @@ "WorkspaceRootPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\", "Documents": [ { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\installer\\installer.csproj||{04B8AB82-A572-4FEF-95CE-5222444B6B64}|", + "RelativeMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|solutionrelative:installer\\installer.csproj||{04B8AB82-A572-4FEF-95CE-5222444B6B64}|" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewmain.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\controllers\\horsecontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\controllers\\horsecontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\horseviewer.csproj||{04B8AB82-A572-4FEF-95CE-5222444B6B64}|", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\horseviewer.csproj||{04B8AB82-A572-4FEF-95CE-5222444B6B64}|" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\models\\horse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\models\\horse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewmain.designer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewmain.designer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\hrserver\\hrserver.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}", + "RelativeMoniker": "D:0:0:{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}|HRServer\\HRServer.csproj|solutionrelative:hrserver\\hrserver.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewedittable.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" + "AbsoluteMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\installer\\installer.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}", + "RelativeMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|solutionrelative:installer\\installer.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}" }, { - "AbsoluteMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|z:\\[01] kribitz development\\[02] projekte\\hr-collector\\hrserver-exporter\\horseviewer\\viewsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", - "RelativeMoniker": "D:0:0:{280C08D1-5874-4E96-882B-7926464D1FA8}|HorseViewer\\HorseViewer.csproj|solutionrelative:horseviewer\\viewsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" + "AbsoluteMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\installer\\frminstaller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", + "RelativeMoniker": "D:0:0:{33777DEA-68F5-4552-9582-3F14CE9059FA}|Installer\\Installer.csproj|solutionrelative:installer\\frminstaller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" } ], "DocumentGroupContainers": [ @@ -38,98 +38,100 @@ "DocumentGroups": [ { "DockedWidth": 200, - "SelectedChildIndex": 7, + "SelectedChildIndex": 2, "Children": [ { "$type": "Bookmark", "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}" }, { - "$type": "Document", - "DocumentIndex": 1, - "Title": "ViewMain.cs [Entwurf]", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewMain.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs [Entwurf]", - "RelativeToolTip": "HorseViewer\\ViewMain.cs [Entwurf]", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:28:48.344Z", - "EditorCaption": " [Entwurf]" + "$type": "Bookmark", + "Name": "ST:0:0:{aa2115a1-9712-457b-9047-dbb71ca2cdd2}" }, { "$type": "Document", - "DocumentIndex": 3, - "Title": "ViewMain.Designer.cs", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.Designer.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewMain.Designer.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.Designer.cs", - "RelativeToolTip": "HorseViewer\\ViewMain.Designer.cs", - "ViewState": "AgIAACAAAAAAAAAAAAAawCcAAAAAAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:28:35.506Z", + "DocumentIndex": 0, + "Title": "Installer", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "RelativeDocumentMoniker": "Installer\\Installer.csproj", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "RelativeToolTip": "Installer\\Installer.csproj", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000758|", + "WhenOpened": "2024-12-31T15:32:23.68Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 4, - "Title": "ViewEditTable.cs", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewEditTable.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs", - "RelativeToolTip": "HorseViewer\\ViewEditTable.cs", - "ViewState": "AgIAACYAAAAAAAAAAAAEwDEAAAArAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:25:40.251Z", - "EditorCaption": "" + "Title": "HRServer.csproj", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "RelativeDocumentMoniker": "HRServer\\HRServer.csproj", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "RelativeToolTip": "HRServer\\HRServer.csproj", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000758|", + "WhenOpened": "2024-12-31T11:50:39.211Z" }, { "$type": "Document", "DocumentIndex": 5, - "Title": "ViewEditTable.cs [Entwurf]", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewEditTable.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewEditTable.cs [Entwurf]", - "RelativeToolTip": "HorseViewer\\ViewEditTable.cs [Entwurf]", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T21:01:27.789Z", - "EditorCaption": " [Entwurf]" + "Title": "Installer.csproj", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "RelativeDocumentMoniker": "Installer\\Installer.csproj", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "RelativeToolTip": "Installer\\Installer.csproj", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000758|", + "WhenOpened": "2024-12-31T11:50:38.796Z" }, { "$type": "Document", - "DocumentIndex": 6, - "Title": "ViewSettings.cs [Entwurf]", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewSettings.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewSettings.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewSettings.cs [Entwurf]", - "RelativeToolTip": "HorseViewer\\ViewSettings.cs [Entwurf]", + "DocumentIndex": 1, + "Title": "HorseController.cs", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Controllers\\HorseController.cs", + "RelativeDocumentMoniker": "HRServer\\Controllers\\HorseController.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Controllers\\HorseController.cs", + "RelativeToolTip": "HRServer\\Controllers\\HorseController.cs", + "ViewState": "AgIAALQAAAAAAAAAAAAqwMIAAABCAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T20:59:50.626Z", - "EditorCaption": " [Entwurf]" + "WhenOpened": "2024-12-28T15:17:01.854Z", + "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 2, - "Title": "HorseViewer", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", - "RelativeDocumentMoniker": "HorseViewer\\HorseViewer.csproj", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", - "RelativeToolTip": "HorseViewer\\HorseViewer.csproj", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000758|", - "WhenOpened": "2024-12-08T20:58:28.928Z", - "EditorCaption": "" + "Title": "Horse.cs", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Models\\Horse.cs", + "RelativeDocumentMoniker": "HRServer\\Models\\Horse.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Models\\Horse.cs", + "RelativeToolTip": "HRServer\\Models\\Horse.cs", + "ViewState": "AgIAAKQBAAAAAAAAAAArwKsBAAArAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-12-28T15:17:36.163Z" }, { "$type": "Document", - "DocumentIndex": 0, - "Title": "ViewMain.cs", - "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs", - "RelativeDocumentMoniker": "HorseViewer\\ViewMain.cs", - "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\ViewMain.cs", - "RelativeToolTip": "HorseViewer\\ViewMain.cs", - "ViewState": "AgIAAE0AAAAAAAAAAAAAAF4AAAANAAAAAAAAAA==", + "DocumentIndex": 3, + "Title": "Program.cs", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Program.cs", + "RelativeDocumentMoniker": "HRServer\\Program.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Program.cs", + "RelativeToolTip": "HRServer\\Program.cs", + "ViewState": "AgIAACgAAAAAAAAAAAAnwDgAAAAMAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2024-12-08T18:52:40.109Z", - "EditorCaption": "" + "WhenOpened": "2024-12-28T15:17:04.846Z" + }, + { + "$type": "Document", + "DocumentIndex": 6, + "Title": "FRMInstaller.cs [Entwurf]", + "DocumentMoniker": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\FRMInstaller.cs", + "RelativeDocumentMoniker": "Installer\\FRMInstaller.cs", + "ToolTip": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\FRMInstaller.cs [Entwurf]", + "RelativeToolTip": "Installer\\FRMInstaller.cs [Entwurf]", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-12-28T14:38:01.819Z", + "EditorCaption": " [Entwurf]" } ] } diff --git a/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.metadata.v9.bin b/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.metadata.v9.bin index e1438e0..70e74c0 100644 Binary files a/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.metadata.v9.bin and b/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.metadata.v9.bin differ diff --git a/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.projects.v9.bin b/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.projects.v9.bin index 897f96e..26c7074 100644 Binary files a/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.projects.v9.bin and b/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.projects.v9.bin differ diff --git a/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.strings.v9.bin b/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.strings.v9.bin index 5fbb2c0..8701f9d 100644 Binary files a/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.strings.v9.bin and b/HRServer-Exporter/.vs/ProjectEvaluation/hrserver-exporter.strings.v9.bin differ diff --git a/HRServer-Exporter/HRServer-Exporter.sln b/HRServer-Exporter/HRServer-Exporter.sln index 20fcca8..b0068ac 100644 --- a/HRServer-Exporter/HRServer-Exporter.sln +++ b/HRServer-Exporter/HRServer-Exporter.sln @@ -5,7 +5,7 @@ VisualStudioVersion = 17.11.35312.102 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HRServer", "HRServer\HRServer.csproj", "{86A245AC-2CD6-4303-97B9-8463B6B6B8D6}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HorseViewer", "HorseViewer\HorseViewer.csproj", "{280C08D1-5874-4E96-882B-7926464D1FA8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Installer", "Installer\Installer.csproj", "{33777DEA-68F5-4552-9582-3F14CE9059FA}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -17,10 +17,10 @@ Global {86A245AC-2CD6-4303-97B9-8463B6B6B8D6}.Debug|Any CPU.Build.0 = Debug|Any CPU {86A245AC-2CD6-4303-97B9-8463B6B6B8D6}.Release|Any CPU.ActiveCfg = Release|Any CPU {86A245AC-2CD6-4303-97B9-8463B6B6B8D6}.Release|Any CPU.Build.0 = Release|Any CPU - {280C08D1-5874-4E96-882B-7926464D1FA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {280C08D1-5874-4E96-882B-7926464D1FA8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {280C08D1-5874-4E96-882B-7926464D1FA8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {280C08D1-5874-4E96-882B-7926464D1FA8}.Release|Any CPU.Build.0 = Release|Any CPU + {33777DEA-68F5-4552-9582-3F14CE9059FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {33777DEA-68F5-4552-9582-3F14CE9059FA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {33777DEA-68F5-4552-9582-3F14CE9059FA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {33777DEA-68F5-4552-9582-3F14CE9059FA}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/HRServer-Exporter/HRServer/.config/dotnet-tools.json b/HRServer-Exporter/HRServer/.config/dotnet-tools.json new file mode 100644 index 0000000..4f48799 --- /dev/null +++ b/HRServer-Exporter/HRServer/.config/dotnet-tools.json @@ -0,0 +1,13 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "9.0.0", + "commands": [ + "dotnet-ef" + ], + "rollForward": false + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/Controllers/HorseController.cs b/HRServer-Exporter/HRServer/Controllers/HorseController.cs index c9b38af..d79326f 100644 --- a/HRServer-Exporter/HRServer/Controllers/HorseController.cs +++ b/HRServer-Exporter/HRServer/Controllers/HorseController.cs @@ -18,6 +18,13 @@ namespace HRServer.Controllers { return Ok("pong"); } + [HttpDelete("/api/deleteHorse/{id}")] + public IActionResult DeleteHorse(ulong id) + { + HorseFactory.DeleteHorse(id); + HorseFactory.SaveHorsesToFile(); + return Ok(); + } [HttpGet("/api/getHorse/{id}")] public IActionResult GetHorse (int id) { @@ -59,27 +66,38 @@ namespace HRServer.Controllers [HttpPost("/api/updateHorse/{id}/BasicData")] public IActionResult UpdateHorseBasicData(ulong id, [FromBody] Horse websiteHorse) { - var localHorse = HorseFactory.GetHorse((ulong)id); + var localHorse = HorseFactory.GetHorse(id); if (localHorse == null) { - localHorse = new Horse { Id = (ulong)id }; + localHorse = new Horse { Id = id }; HorseFactory.AddOrUpdateHorse(localHorse); } + if (websiteHorse.Owner == "Unknown") + { + localHorse.Breed = websiteHorse.Breed; + localHorse.HorseName = websiteHorse.HorseName; + localHorse.Link = websiteHorse.Link; + localHorse.Gender = websiteHorse.Gender; + localHorse.Notes = websiteHorse.Notes; + return Ok(localHorse); + } localHorse.Age = websiteHorse.Age; localHorse.Breed = websiteHorse.Breed; localHorse.HorseName = websiteHorse.HorseName; localHorse.Gender = websiteHorse.Gender; localHorse.Link = websiteHorse.Link; + localHorse.Owner = websiteHorse.Owner; + localHorse.Notes = websiteHorse.Notes; HorseFactory.SaveHorsesToFile(); return Ok(localHorse); } - [HttpPost("/api/updateHorse/{id}/Pedigree")] - public IActionResult UpdateHorsePedigree(ulong id, [FromBody] HorseSummary websiteHorseSummary) + [HttpPost("/api/updateHorse/{id}/Summary")] + public IActionResult UpdateHorseSummary(ulong id, [FromBody] HorseSummary websiteHorseSummary) { - var localHorse = HorseFactory.GetHorse((ulong)id); + var localHorse = HorseFactory.GetHorse(id); if (localHorse == null) { - localHorse = new Horse { Id = (ulong)id }; + localHorse = new Horse { Id = id }; HorseFactory.AddOrUpdateHorse(localHorse); } localHorse.Summary = websiteHorseSummary; @@ -112,6 +130,16 @@ namespace HRServer.Controllers HorseFactory.SaveHorsesToFile(); return Ok(localHorse); } + [HttpGet("/api/getHorse/{id}/Colors")] + public IActionResult GetHorseColors(ulong id) + { + var horse = HorseFactory.GetHorse(id); + if (horse == null) + { + return Ok(new Dictionary()); + } + return Ok(horse.Genetics.Colors); + } [HttpPost("/api/updateHorse/{id}/Genetics")] public IActionResult UpdateHorseGenetics(ulong id, [FromBody] HorseGenetics websiteHorseGenetics) { @@ -119,12 +147,38 @@ namespace HRServer.Controllers if (localHorse == null) { localHorse = new Horse { Id = (ulong)id }; + localHorse.Genetics = websiteHorseGenetics; HorseFactory.AddOrUpdateHorse(localHorse); } - localHorse.Genetics = websiteHorseGenetics; + if (websiteHorseGenetics != null) + { + localHorse.Genetics.GP = websiteHorseGenetics.GP; + localHorse.Genetics.Disciplines = websiteHorseGenetics.Disciplines; + localHorse.Genetics.GeneticPotential = websiteHorseGenetics.GeneticPotential; + foreach (var kvp in websiteHorseGenetics.Colors) + { + // Wert hinzufgen oder berschreiben + localHorse.Genetics.Colors[kvp.Key] = kvp.Value; + } + if (!websiteHorseGenetics.Colors.ContainsKey("Custom")) + { + localHorse.Genetics.Colors["Custom"] = string.Empty; + } + localHorse.LoadState.GeneticsLoaded = true; + } HorseFactory.SaveHorsesToFile(); return Ok(localHorse); } + [HttpGet("/api/getHorse/{id}/Notes")] + public IActionResult GetHorseNotes(ulong id) + { + var horse = HorseFactory.GetHorse(id); + if (horse == null) + { + return Ok(string.Empty); + } + return Ok(horse.Notes); + } [HttpPost("/api/updateHorse/{id}/Achievements")] public IActionResult UpdateHorseAchievements(ulong id, [FromBody] HorseAchievements websiteHorseAchievements) { @@ -134,25 +188,48 @@ namespace HRServer.Controllers localHorse = new Horse { Id = (ulong)id }; HorseFactory.AddOrUpdateHorse(localHorse); } + if (websiteHorseAchievements.ShowResults.Count >= 1) { - if (websiteHorseAchievements.MaxShowResult < localHorse.Achievements.MaxShowResult) + // MinShowResult sollte nicht kleiner als das momentane Maximum - 6.928 sein + websiteHorseAchievements.MinShowResult = Math.Max( + websiteHorseAchievements.MinShowResult, + websiteHorseAchievements.MaxShowResult - 6.928 + ); + // MaxShowResult aktualisieren, wenn es grer ist als der lokale Wert + websiteHorseAchievements.MaxShowResult = Math.Max( + websiteHorseAchievements.MaxShowResult, + localHorse.Achievements.MaxShowResult + ); + // MinShowResult aktualisieren, wenn ein gltiger Wert vorhanden ist und der lokale Wert kleiner ist + if (websiteHorseAchievements.MinShowResult == -1 || localHorse.Achievements.MinShowResult == -1 || localHorse.Achievements.MinShowResult == 0 /*Workaround, MinShowResult wurde mit 0 initialisiert, nicht -1*/) { - websiteHorseAchievements.MaxShowResult = localHorse.Achievements.MaxShowResult; + // MinShowResult ist automatisch der grere Wert, da -1 oder 0 nicht gltig sind + websiteHorseAchievements.MinShowResult = Math.Max(websiteHorseAchievements.MinShowResult, localHorse.Achievements.MinShowResult); } - if (websiteHorseAchievements.MinShowResult > localHorse.Achievements.MinShowResult) + else { - websiteHorseAchievements.MinShowResult = localHorse.Achievements.MinShowResult; - } - if (websiteHorseAchievements.MaxCompetitionResult < localHorse.Achievements.MaxCompetitionResult) - { - websiteHorseAchievements.MaxCompetitionResult = localHorse.Achievements.MaxCompetitionResult; - } - if (websiteHorseAchievements.MinCompetitionResult > localHorse.Achievements.MinCompetitionResult) - { - websiteHorseAchievements.MinCompetitionResult = localHorse.Achievements.MinCompetitionResult; + // Beide Werte sind gltig, also wird der kleinere Wert genommen + websiteHorseAchievements.MinShowResult = Math.Min( + websiteHorseAchievements.MinShowResult, + localHorse.Achievements.MinShowResult + ); } } + // MaxCompetitionResult aktualisieren, wenn es kleiner ist als der lokale Wert + websiteHorseAchievements.MaxCompetitionResult = Math.Max( + websiteHorseAchievements.MaxCompetitionResult, + localHorse.Achievements.MaxCompetitionResult + ); + + // MinCompetitionResult aktualisieren, wenn ein gltiger Wert vorhanden ist und der lokale Wert kleiner ist + if (websiteHorseAchievements.MinCompetitionResult != -1) + { + websiteHorseAchievements.MinCompetitionResult = Math.Min( + websiteHorseAchievements.MinCompetitionResult, + localHorse.Achievements.MinCompetitionResult + ); + } localHorse.Achievements = websiteHorseAchievements; HorseFactory.SaveHorsesToFile(); return Ok(localHorse); diff --git a/HRServer-Exporter/HorseViewer/HR-Collector_Icon.ico b/HRServer-Exporter/HRServer/HR-Collector_Icon.ico similarity index 100% rename from HRServer-Exporter/HorseViewer/HR-Collector_Icon.ico rename to HRServer-Exporter/HRServer/HR-Collector_Icon.ico diff --git a/HRServer-Exporter/HRServer/HRServer.csproj b/HRServer-Exporter/HRServer/HRServer.csproj index 9daa180..6c1385e 100644 --- a/HRServer-Exporter/HRServer/HRServer.csproj +++ b/HRServer-Exporter/HRServer/HRServer.csproj @@ -4,9 +4,16 @@ net8.0 enable enable + HorseRealityExporterIcon.ico + + + + + + diff --git a/HRServer-Exporter/HRServer/HRServer.csproj.user b/HRServer-Exporter/HRServer/HRServer.csproj.user index 983ecfc..7c8fd84 100644 --- a/HRServer-Exporter/HRServer/HRServer.csproj.user +++ b/HRServer-Exporter/HRServer/HRServer.csproj.user @@ -2,6 +2,7 @@ http + Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\Properties\PublishProfiles\FolderProfile.pubxml ProjectDebugger diff --git a/HRServer-Exporter/HRServer/HorseRealityExporterIcon.ico b/HRServer-Exporter/HRServer/HorseRealityExporterIcon.ico new file mode 100644 index 0000000..5d33a86 Binary files /dev/null and b/HRServer-Exporter/HRServer/HorseRealityExporterIcon.ico differ diff --git a/HRServer-Exporter/HRServer/Models/Horse.cs b/HRServer-Exporter/HRServer/Models/Horse.cs index a4b5572..e5e2193 100644 --- a/HRServer-Exporter/HRServer/Models/Horse.cs +++ b/HRServer-Exporter/HRServer/Models/Horse.cs @@ -1,11 +1,14 @@ -using System.Text.Json; +using CsvHelper; +using CsvHelper.Configuration; +using System.Globalization; +using System.Text.Json; using System.Text.Json.Serialization; namespace HRServer.Models { public static class HorseFactory { - public static string HorseDataPath = "horses.json"; + public static string HorseDataPath = "horses"; // Thread-safe Dictionary private static Dictionary Horses = new(); public static Horse? GetHorse(ulong id) @@ -19,21 +22,141 @@ namespace HRServer.Models Horses[horse.Id.Value] = horse; } + public static void DeleteHorse(ulong id) + { + Horses.Remove(id); + } public static IReadOnlyDictionary GetAllHorses() { return Horses; } public static void SaveHorsesToFile() { - var json = JsonSerializer.Serialize(Horses); - File.WriteAllText(HorseDataPath, json); + var options = new JsonSerializerOptions + { + WriteIndented = true // Aktiviert die formatierte Ausgabe + }; + + // JSON-Datei speichern + var json = JsonSerializer.Serialize(Horses, options); + File.WriteAllText($"{HorseDataPath}.json", json); + + // CSV-Datei speichern + if (Program.GoogleDriveFolder != string.Empty) + SaveToCsv(); } + + private static void SaveToCsv() + { + using var writer = new StreamWriter($@"{Program.GoogleDriveFolder}\HorseData.csv"); + using var csv = new CsvWriter(writer, new CsvConfiguration(CultureInfo.InvariantCulture) + { + Delimiter = ",", + Escape = '"' + }); + + var flattenedHorses = GetAllHorses().Select(horse => new + { + // Grundlegende Informationen + Id = horse.Value.Id, + Name = horse.Value.HorseName, + Age = horse.Value.Age, + Gender = horse.Value.Gender, + Breed = horse.Value.Breed, + Notes = horse.Value.Notes, + Link = horse.Value.Link, + Owner = horse.Value.Owner, + LastDrawnDate = horse.Value.LastDrawnDate, + + // HorseSummary + FatherName = horse.Value.Summary.FatherName, + FatherLink = horse.Value.Summary.FatherLink, + Conception = horse.Value.Summary.Conception, + UltrasoundGender = horse.Value.Summary.UltrasoundGender, + RelatedId1 = horse.Value.Summary.RelatedIds.ElementAtOrDefault(0), + RelatedId2 = horse.Value.Summary.RelatedIds.ElementAtOrDefault(1), + + // HorseTraining + Training = horse.Value.Training.Training, + + // HorseGenetics - Genetic Potential + GP = horse.Value.Genetics.GP, + Acceleration = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Acceleration"), + Agility = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Agility"), + Balance = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Balance"), + Bascule = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Bascule"), + PullingPower = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Pulling power"), + Speed = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Speed"), + Sprint = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Sprint"), + Stamina = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Stamina"), + Strength = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Strength"), + Surefootedness = horse.Value.Genetics.GeneticPotential.GetValueOrDefault("Surefootedness"), + + // HorseGenetics - Disciplines + Dressage = horse.Value.Genetics.Disciplines.GetValueOrDefault("Dressage"), + Driving = horse.Value.Genetics.Disciplines.GetValueOrDefault("Driving"), + Endurance = horse.Value.Genetics.Disciplines.GetValueOrDefault("Endurance"), + Eventing = horse.Value.Genetics.Disciplines.GetValueOrDefault("Eventing"), + FlatRacing = horse.Value.Genetics.Disciplines.GetValueOrDefault("Flat Racing"), + ShowJumping = horse.Value.Genetics.Disciplines.GetValueOrDefault("Show Jumping"), + WesternReining = horse.Value.Genetics.Disciplines.GetValueOrDefault("Western Reining"), + + // HorseGenetics - Colors (Farbgenetik vollständig) + Extension = horse.Value.Genetics.Colors.GetValueOrDefault("Extension"), + Agouti = horse.Value.Genetics.Colors.GetValueOrDefault("Agouti"), + Grey = horse.Value.Genetics.Colors.GetValueOrDefault("Grey"), + Creampearl = horse.Value.Genetics.Colors.GetValueOrDefault("Creampearl"), + Dun = horse.Value.Genetics.Colors.GetValueOrDefault("Dun"), + Champagne = horse.Value.Genetics.Colors.GetValueOrDefault("Champagne"), + Silver = horse.Value.Genetics.Colors.GetValueOrDefault("Silver"), + Mushroom = horse.Value.Genetics.Colors.GetValueOrDefault("Mushroom"), + Frame = horse.Value.Genetics.Colors.GetValueOrDefault("Frame"), + Appaloosa = horse.Value.Genetics.Colors.GetValueOrDefault("Appaloosa"), + PATN1 = horse.Value.Genetics.Colors.GetValueOrDefault("PATN1"), + MITF = horse.Value.Genetics.Colors.GetValueOrDefault("MITF"), + SW2 = horse.Value.Genetics.Colors.GetValueOrDefault("SW2"), + KIT = horse.Value.Genetics.Colors.GetValueOrDefault("KIT"), + RAB = horse.Value.Genetics.Colors.GetValueOrDefault("RAB"), + Seal = horse.Value.Genetics.Colors.GetValueOrDefault("Seal"), + Flaxen = horse.Value.Genetics.Colors.GetValueOrDefault("Flaxen"), + Sooty = horse.Value.Genetics.Colors.GetValueOrDefault("Sooty"), + Pangare = horse.Value.Genetics.Colors.GetValueOrDefault("Pangare"), + Sabino = horse.Value.Genetics.Colors.GetValueOrDefault("Sabino"), + CustomColor = horse.Value.Genetics.Colors.GetValueOrDefault("Custom"), + + // HorseAchievements + MaxShowResult = horse.Value.Achievements.MaxShowResult, + MinShowResult = horse.Value.Achievements.MinShowResult, + MaxCompetitionResult = horse.Value.Achievements.MaxCompetitionResult, + MinCompetitionResult = horse.Value.Achievements.MinCompetitionResult, + ShortConformation = horse.Value.Achievements.ShortConformation, + Walk = horse.Value.Achievements.Conformation.GetValueOrDefault("Walk"), + Trot = horse.Value.Achievements.Conformation.GetValueOrDefault("Trot"), + Canter = horse.Value.Achievements.Conformation.GetValueOrDefault("Canter"), + Gallop = horse.Value.Achievements.Conformation.GetValueOrDefault("Gallop"), + Posture = horse.Value.Achievements.Conformation.GetValueOrDefault("Posture"), + + // HorseHealth + Fertility = horse.Value.Health.Health.GetValueOrDefault("Fertility"), + ColicResistance = horse.Value.Health.Health.GetValueOrDefault("Colic resistance"), + HoofQuality = horse.Value.Health.Health.GetValueOrDefault("Hoof quality"), + BackProblems = horse.Value.Health.Health.GetValueOrDefault("Back problems"), + RespiratoryDisease = horse.Value.Health.Health.GetValueOrDefault("Respiratory disease"), + ResistanceToLameness = horse.Value.Health.Health.GetValueOrDefault("Resistance to lameness") + }); + + csv.WriteRecords(flattenedHorses); + } + public static void LoadHorsesFromFile() { - if (!File.Exists(HorseDataPath)) + if (!File.Exists(HorseDataPath + ".json")) + { + File.Create(HorseDataPath + ".json").Close(); return; - - var json = File.ReadAllText(HorseDataPath); + } + + var json = File.ReadAllText(HorseDataPath + ".json"); Horses = JsonSerializer.Deserialize>(json); } } @@ -47,6 +170,7 @@ namespace HRServer.Models private string _gender = string.Empty; private string _breed = string.Empty; private string _link = string.Empty; + private string _notes = string.Empty; private DateTime _lastDrawnDate = DateTime.Now; [JsonPropertyName("id")] @@ -68,6 +192,15 @@ namespace HRServer.Models _age = value; } } + [JsonPropertyName("notes")] + public string Notes + { + get => _notes; + set + { + _notes = value; + } + } [JsonPropertyName("name")] public string HorseName { @@ -104,6 +237,16 @@ namespace HRServer.Models _link = value; } } + private string _owner = string.Empty; + [JsonPropertyName("owner")] + public string Owner + { + get => _owner; + set + { + _owner = value; + } + } [JsonPropertyName("lastDrawnDate")] public DateTime LastDrawnDate { @@ -212,6 +355,14 @@ namespace HRServer.Models { [JsonPropertyName("RelatedIds")] public List RelatedIds { get; set; } = new(); + [JsonPropertyName("Conception")] + public string Conception { get; set; } = string.Empty; + [JsonPropertyName("FatherLink")] + public string FatherLink { get; set; } = string.Empty; + [JsonPropertyName("FatherName")] + public string FatherName { get; set; } = string.Empty; + [JsonPropertyName("UltrasoundGender")] + public string UltrasoundGender { get; set; } = string.Empty; } public class HorseTraining @@ -241,23 +392,28 @@ namespace HRServer.Models [JsonPropertyName("Colors")] public Dictionary Colors { get; set; } = new() { - { "Extension", string.Empty }, - { "Agouti", string.Empty }, - { "Grey", string.Empty}, - { "Creampearl", string.Empty }, - { "Dun", string.Empty }, - { "Champagne", string.Empty }, - { "Silver", string.Empty }, - { "Mushroom", string.Empty }, - { "Frame", string.Empty}, - { "Appaloosa", string.Empty }, - { "PATN1", string.Empty }, - { "MITF", string.Empty }, - { "SW2", string.Empty }, - { "KIT", string.Empty }, - { "RAB", string.Empty}, - { "Seal", string.Empty }, - { "Flaxen", string.Empty } + { "Extension", "n/n" }, + { "Agouti", "n/n" }, + { "Grey", "n/n" }, + { "Creampearl", "n/n" }, + { "Dun", "n/n" }, + { "Champagne", "n/n" }, + { "Silver", "n/n" }, + { "Mushroom", "n/n" }, + { "Frame", "n/n" }, + { "Appaloosa", "n/n" }, + { "PATN1", "n/n" }, + { "MITF", "n/n" }, + { "SW2", "n/n" }, + { "KIT", "n/n" }, + { "RAB", "n/n" }, // RAB/n + { "Seal", "n/n" }, // AT/n + { "Flaxen", "n/n" }, // f/n + { "Sooty", "n/n" }, // Sty/n + { "Pangare", "n/n" }, // P/n + { "Sabino", "n/n" }, // Sab/n + { "WildBay", "n/n" }, // A+/n + { "Custom", "" }, }; } @@ -270,13 +426,13 @@ namespace HRServer.Models [JsonPropertyName("ShortConformation")] public string ShortConformation { get; set; } = string.Empty; [JsonPropertyName("MaxShowResult")] - public double MaxShowResult { get; set; } = 0; + public double MaxShowResult { get; set; } = -1; [JsonPropertyName("MinShowResult")] - public double MinShowResult { get; set; } = 0; + public double MinShowResult { get; set; } = -1; [JsonPropertyName("MaxCompetitionResult")] - public double MaxCompetitionResult { get; set; } = 0; + public double MaxCompetitionResult { get; set; } = -1; [JsonPropertyName("MinCompetitionResult")] - public double MinCompetitionResult { get; set; } = 0; + public double MinCompetitionResult { get; set; } = -1; } public class HorseHealth diff --git a/HRServer-Exporter/HRServer/Program.cs b/HRServer-Exporter/HRServer/Program.cs index 2ad19b8..25bfe81 100644 --- a/HRServer-Exporter/HRServer/Program.cs +++ b/HRServer-Exporter/HRServer/Program.cs @@ -4,9 +4,16 @@ namespace HRServer { public class Program { + public static string GoogleDriveFolder = string.Empty; public static void Main(string[] args) { + // Arbeitsverzeichnis auf das Verzeichnis der ausfhrbaren Datei setzen + Directory.SetCurrentDirectory(AppDomain.CurrentDomain.BaseDirectory); var builder = WebApplication.CreateBuilder(args); + if (File.Exists("GoogleDrive.dat")) + GoogleDriveFolder = File.ReadAllText("GoogleDrive.dat"); + // Windows-Dienst aktivieren + builder.Host.UseWindowsService(); // Dienste hinzufgen builder.Services.AddControllers(); @@ -26,6 +33,9 @@ namespace HRServer builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); + // Port festlegen + builder.WebHost.UseUrls("http://localhost:5180"); + var app = builder.Build(); // Falls Entwicklungsumgebung, Swagger UI verwenden diff --git a/HRServer-Exporter/HRServer/Properties/PublishProfiles/FolderProfile.pubxml b/HRServer-Exporter/HRServer/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..1e8c06b --- /dev/null +++ b/HRServer-Exporter/HRServer/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,25 @@ + + + + + false + false + true + Release + Any CPU + FileSystem + C:\Users\SvenK\Desktop\Horse Reality Exporter\Server + FileSystem + <_TargetId>Folder + + net8.0 + win-x64 + 86a245ac-2cd6-4303-97b9-8463b6b6b8d6 + true + true + false + false + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/Properties/PublishProfiles/FolderProfile.pubxml.user b/HRServer-Exporter/HRServer/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..cb756ec --- /dev/null +++ b/HRServer-Exporter/HRServer/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,11 @@ + + + + + <_PublishTargetUrl>C:\Users\SvenK\Desktop\Horse Reality Exporter\Server + True|2024-12-31T15:33:18.0906023Z||;True|2024-12-28T23:01:43.4982498+01:00||;True|2024-12-28T18:55:58.8801009+01:00||;True|2024-12-28T16:21:24.4537090+01:00||;True|2024-12-28T15:24:12.7850961+01:00||;True|2024-12-28T15:15:55.5405164+01:00||;True|2024-12-28T15:01:21.8196157+01:00||;False|2024-12-28T14:59:57.9676482+01:00||;True|2024-12-28T13:27:37.2284092+01:00||;True|2024-12-11T23:03:21.5167682+01:00||;True|2024-12-11T22:19:51.0261076+01:00||;True|2024-12-11T21:38:21.0710468+01:00||;True|2024-12-11T21:37:36.4349929+01:00||;True|2024-12-09T09:54:40.9662892+01:00||;True|2024-12-09T09:54:08.3046080+01:00||;True|2024-12-09T09:45:58.5110742+01:00||;True|2024-12-09T09:45:44.0614116+01:00||; + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/appsettings.json b/HRServer-Exporter/HRServer/appsettings.json index 10f68b8..a9038e9 100644 --- a/HRServer-Exporter/HRServer/appsettings.json +++ b/HRServer-Exporter/HRServer/appsettings.json @@ -5,5 +5,12 @@ "Microsoft.AspNetCore": "Warning" } }, - "AllowedHosts": "*" + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5180" + } + } + } } diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/CsvHelper.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/CsvHelper.dll new file mode 100644 index 0000000..7a4a0fa Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/CsvHelper.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.deps.json b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.deps.json index 0f05c5f..268ff7a 100644 --- a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.deps.json +++ b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.deps.json @@ -8,13 +8,400 @@ ".NETCoreApp,Version=v8.0": { "HRServer/1.0.0": { "dependencies": { + "CsvHelper": "33.0.1", + "Microsoft.Extensions.Hosting.WindowsServices": "9.0.0", "Swashbuckle.AspNetCore": "6.4.0" }, "runtime": { "HRServer.dll": {} } }, + "CsvHelper/33.0.1": { + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "assemblyVersion": "33.0.0.0", + "fileVersion": "33.0.1.24" + } + } + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, "Microsoft.OpenApi/1.2.3": { "runtime": { "lib/netstandard2.0/Microsoft.OpenApi.dll": { @@ -60,6 +447,91 @@ "fileVersion": "6.4.0.0" } } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Json/9.0.0": { + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } } } }, @@ -69,6 +541,13 @@ "serviceable": false, "sha512": "" }, + "CsvHelper/33.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "path": "csvhelper/33.0.1", + "hashPath": "csvhelper.33.0.1.nupkg.sha512" + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": { "type": "package", "serviceable": true, @@ -76,6 +555,202 @@ "path": "microsoft.extensions.apidescription.server/6.0.5", "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "path": "microsoft.extensions.configuration.json/9.0.0", + "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "path": "microsoft.extensions.hosting/9.0.0", + "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "path": "microsoft.extensions.logging.console/9.0.0", + "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "path": "microsoft.extensions.logging.debug/9.0.0", + "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, "Microsoft.OpenApi/1.2.3": { "type": "package", "serviceable": true, @@ -110,6 +785,48 @@ "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.dll index 7cd24ff..56e5637 100644 Binary files a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.dll and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.exe b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.exe index 64947e0..5b614db 100644 Binary files a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.exe and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.exe differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.pdb b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.pdb index 39b04a4..9c1f285 100644 Binary files a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.pdb and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.staticwebassets.endpoints.json b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Debug/net8.0/HRServer.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..5de000c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..3853207 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..78764ad Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..ec8833e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..a1e0a4d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..adf0f8b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..12edc4f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..dea10fa Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..405651a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..e988469 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..9aca1e9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..b2e88ec Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..8cd930a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..408a0c8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..287fbf3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..ed0bab4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll new file mode 100644 index 0000000..c376245 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..8e0bfd3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..8d27412 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..69a9032 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..107af95 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..a9aa10e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..95c3d66 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..55b4025 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..754fabe Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..7fa08d7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..d5c55a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Options.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..8cb2645 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..bae10b1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..25f8d1f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.IO.Pipelines.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.IO.Pipelines.dll new file mode 100644 index 0000000..712f47d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.IO.Pipelines.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..9fd0e06 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..5c04169 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Text.Json.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Text.Json.dll new file mode 100644 index 0000000..f4dd021 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/System.Text.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/appsettings.json b/HRServer-Exporter/HRServer/bin/Debug/net8.0/appsettings.json index 10f68b8..a9038e9 100644 --- a/HRServer-Exporter/HRServer/bin/Debug/net8.0/appsettings.json +++ b/HRServer-Exporter/HRServer/bin/Debug/net8.0/appsettings.json @@ -5,5 +5,12 @@ "Microsoft.AspNetCore": "Warning" } }, - "AllowedHosts": "*" + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5180" + } + } + } } diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/horses.csv b/HRServer-Exporter/HRServer/bin/Debug/net8.0/horses.csv new file mode 100644 index 0000000..7eb30b8 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Debug/net8.0/horses.csv @@ -0,0 +1,131 @@ +Id,Name,Age,Gender,Breed,Notes,Link,Owner,LastDrawnDate,FatherName,FatherLink,Conception,UltrasoundGender,RelatedId1,RelatedId2,Training,GP,Acceleration,Agility,Balance,Bascule,PullingPower,Speed,Sprint,Stamina,Strength,Surefootedness,Dressage,Driving,Endurance,Eventing,FlatRacing,ShowJumping,WesternReining,Extension,Agouti,Grey,Creampearl,Dun,Champagne,Silver,Mushroom,Frame,Appaloosa,PATN1,MITF,SW2,KIT,RAB,Seal,Flaxen,Sooty,Pangare,Sabino,CustomColor,MaxShowResult,MinShowResult,MaxCompetitionResult,MinCompetitionResult,ShortConformation,Walk,Trot,Canter,Gallop,Posture,Fertility,ColicResistance,HoofQuality,BackProblems,RespiratoryDisease,ResistanceToLameness +18673015,Eternal Flame (ff),5,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18673015/eternal-flame-ff,Bacardina,12/14/2024 16:40:14,,,,,https://www.horsereality.com/horses/18170087/sephiroth-ff,https://www.horsereality.com/horses/18418732/fervor-pestilentia-f-f,Basic Training,575,52,62,71,46,55,53,46,56,69,65,202,295,243,304,207,275,250,e / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,f/f,n/n,n/n,n/n,Chestnut,71.522,64.931,-1,-1,8A 2G 2BA,Average,Good,Average,Average,Average,Good,Good,Good,Excellent,Good,Good +18651746,Dominus Pathogenus (RN),6,Stallion,Lipizzaner Horse,test,https://www.horsereality.com/horses/18651746/dominus-pathogenus-rn,Bacardina,12/14/2024 16:38:36,,,,,https://www.horsereality.com/horses/18363681/roan-591,https://www.horsereality.com/horses/18159727/vitalia-cura,Basic Training,594,59,68,70,51,52,48,51,55,72,68,210,295,243,309,213,301,265,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.147,66.982,-1,-1,5G 6A 1BA,Good,Good,Good,Average,Average,Good,Good,Good,Good,Good,Good +18967203,Flammeus Dominus (F/f?),3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18967203/flammeus-dominus-ff,Bacardina,12/14/2024 16:44:03,,,,,https://www.horsereality.com/horses/18740035/s73-046-conner,https://www.horsereality.com/horses/18811769/flamma-nocturna-f-f,Basic Training,572,53,59,71,50,55,52,45,53,71,63,201,290,239,307,203,278,246,e / e,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier?,72.29,65.807,-1,-1,9A 3G,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18967204,Flammor (F/f?),3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18967204/flammor-ff,Bacardina,12/14/2024 16:45:06,,,,,https://www.horsereality.com/horses/18740035/s73-046-conner,https://www.horsereality.com/horses/18813183/flamma-fulgida-red-f-f,Basic Training,577,54,61,70,47,61,54,47,52,68,63,199,296,237,302,207,277,248,e / e,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier?,72.493,65.74,-1,-1,7A 4G 1BA,Average,Good,Good,Average,Good,Good,Good,Good,Excellent,Good,Good +19036313,Hephaestus (g/G),3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19036313/hephaestus-gg,Bacardina,12/14/2024 16:45:44,,,,,https://www.horsereality.com/horses/18840996/74-22-cje-paradise-falls,https://www.horsereality.com/horses/18854298/gaja,Choose training,580,57,63,72,48,55,55,42,59,65,64,200,297,243,304,213,275,256,E / E,a / a,G / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,74.004,67.677,-1,-1,6G 6A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18972192,Medicus,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18972192/medicus,Bacardina,12/14/2024 16:46:48,,,,,https://www.horsereality.com/horses/18742138/meningitis-viralis,https://www.horsereality.com/horses/18090913/borrelia-sab,Basic Training,592,56,69,69,49,51,55,52,53,70,68,208,298,246,311,216,296,262,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.318,66.896,-1,-1,6G 4A 2BA,Good,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +19042376,Pandemic Whisper,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19042376/pandemic-whisper,Bacardina,12/14/2024 16:47:30,,,,,https://www.horsereality.com/horses/18742138/meningitis-viralis,https://www.horsereality.com/horses/18650349/trepona-western,Choose training,593,56,63,71,49,57,55,51,55,70,66,204,300,246,311,217,289,256,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.994,67.423,-1,-1,5G 7A,Good,Average,Average,Average,Good,Excellent,Good,Good,Good,Good,Good +18934406,Pandemius (F/f?) ⚿,4,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18934406/pandemius-ff,Bacardina,12/14/2024 17:11:23,,,,,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18453625/treponema,Basic Training,586,51,65,69,56,55,54,47,56,68,65,202,298,243,312,208,287,250,E / e,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier?,72.191,65.664,-1,-1,10A 1G 1BA,Average,Good,Average,Average,Average,Good,Good,Good,Excellent,Good,Good +18926115,Pathogenus Obscurus (g/g),4,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18926115/pathogenus-obscurus-gg,Bacardina,12/14/2024 17:12:11,,,,,https://www.horsereality.com/horses/18607724/73-456-gentleman,https://www.horsereality.com/horses/18733591/spora-g-g,Basic Training,575,50,58,69,54,52,48,49,55,73,67,200,286,243,311,202,284,244,E / E,a / a,g / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Dark Sunbleached Black,72.913,66.697,-1,-1,6A 5G 1BA,Average,Good,Good,Below average,Good,Excellent,Good,Good,Excellent,Good,Good +19088379,Plagueborn (BT:66.907%),3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19088379/plagueborn-bt67,Bacardina,12/14/2024 17:12:50,,,,,https://www.horsereality.com/horses/18742138/meningitis-viralis,https://www.horsereality.com/horses/18903024/letalis-g-g-nd1,Choose training,603,53,70,70,53,54,54,51,56,73,69,213,307,252,319,214,300,262,E / E,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.762,67.151,-1,-1,6A 5G 1BA,Average,Good,Good,Average,Good,Excellent,Good,Good,Excellent,Good,Good +18851938,Respirium (nd1) (F/f?) ⚿,4,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18851938/respirium-nd1-ff,Bacardina,12/14/2024 17:14:55,,,,,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18150081/medica-nd1,Basic Training,569,53,66,73,49,52,55,45,50,65,61,204,288,231,303,203,278,253,E / E,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier?,72.534,65.989,-1,-1,9A 2G 1BA,Average,Good,Average,Average,Average,Good,Good,Good,Excellent,Good,Good +18829120,Septicemico,4,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18829120/septicemico,Bacardina,12/14/2024 17:16:51,,,,,https://www.horsereality.com/horses/18588521/s-74-275-eis-titan,https://www.horsereality.com/horses/18541263/digitalis-alba,Basic Training,585,54,66,67,49,55,55,50,54,70,65,203,300,244,306,213,289,252,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.419,67.508,-1,-1,6G 5A 1BA,Good,Good,Average,Below average,Average,Good,Good,Good,Good,Good,Good +18978617,Typographus,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18978617/typographus,Bacardina,12/14/2024 17:18:14,,,,,https://www.horsereality.com/horses/18729058/comic-sans-74-908,https://www.horsereality.com/horses/18290539/sanitas,Basic Training,595,55,65,72,51,55,54,50,55,75,63,212,304,247,315,214,296,255,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.56,67.594,-1,-1,4G 8A,Good,Good,Average,Average,Good,Excellent,Good,Good,Excellent,Good,Good +18939248,Venenum (W20) (g/G),4,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18939248/venenum-w20-gg,Bacardina,12/14/2024 17:19:24,,,,,https://www.horsereality.com/horses/18558670/ef-39-s-gold-fox,https://www.horsereality.com/horses/18758925/lavandula-serenis,Basic Training,585,56,63,71,50,58,51,43,57,74,62,208,303,244,308,207,286,252,E / E,A / A,G / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,W20 / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.336,67.026,-1,-1,5A 5G 2BA,Average,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18900122,Virus Hispanius ⚿,4,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18900122/virus-hispanius,Bacardina,12/14/2024 17:30:00,,,,,https://www.horsereality.com/horses/18582894/74-702-draven,https://www.horsereality.com/horses/18746903/aloe-vera-rn,Basic Training,589,53,68,68,49,56,50,52,55,72,66,208,301,243,305,210,294,255,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,74.259,68.148,-1,-1,6A 5G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +19105340,Ace,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19105340/ace,Bacardina,12/14/2024 17:30:56,!73.502 Alexander,https://www.horsereality.com/horses/19083719/73502-alexander,Covered 2 days ago,,https://www.horsereality.com/horses/18915747/fr-quite-smooth,https://www.horsereality.com/horses/18453625/treponema,Choose training,586,54,70,66,54,55,55,46,56,69,61,205,305,241,305,211,293,251,E / e,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.585,67.039,-1,-1,7G 4A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18746903,Aloe Vera (RN),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18746903/aloe-vera-rn,Bacardina,12/14/2024 17:31:25,"Plagueborn (BT:66,98)",https://www.horsereality.com/horses/19088379/plagueborn-bt6698,Covered 3 days ago,,https://www.horsereality.com/horses/18402750/annapurna-73-117,https://www.horsereality.com/horses/18453625/treponema,Basic Training,599,54,67,68,50,57,54,54,55,72,68,207,305,249,312,217,297,257,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.333,65.773,-1,-1,9A 3G,Average,Good,Average,Average,Average,Good,Good,Good,Excellent,Good,Good +19093739,RN,2,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19093739/rn,Bacardina,12/14/2024 17:31:51,,,,,https://www.horsereality.com/horses/18856745/cataclysm-73-935,https://www.horsereality.com/horses/18746903/aloe-vera-rn,Choose training,584,55,61,68,46,56,51,52,55,74,66,203,297,246,305,213,288,250,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.35,65.757,-1,-1,4G 7A 1BA,Good,Good,Average,Average,Good,,Good,Excellent,Excellent,Good,Good +18817141,Arborina,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18817141/arborina,Bacardina,12/14/2024 17:32:21,Gacrux 586 73.008,https://www.horsereality.com/horses/18048192/gacrux-586-73008,"Wed, 18 Dec",Stallion,https://www.horsereality.com/horses/18417156/bacillus-anthracis,https://www.horsereality.com/horses/18099614/natura-spiritus-sell,Basic Training,579,57,65,72,51,56,47,48,55,66,62,203,289,230,298,207,287,256,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.523,66.776,-1,-1,7A 4G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Excellent +18761713,Artemisia Alba,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18761713/artemisia-alba,Bacardina,12/14/2024 17:32:42,FR Naughty Snack,https://www.horsereality.com/horses/18950671/fr-naughty-snack,tomorrow,Mare,https://www.horsereality.com/horses/18363681/roan-591,https://www.horsereality.com/horses/18581409/tetanica-rn,Basic Training,592,52,68,70,53,50,50,55,56,69,69,207,293,244,311,213,297,259,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.154,65.594,-1,-1,6G 5A 1BA,Good,Good,Good,Average,Good,Good,Good,Good,Good,Good,Good +18504133,Bordetella Majestica Red,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18504133/bordetella-majestica-red,Bacardina,12/14/2024 17:43:03,!73.502 Alexander,https://www.horsereality.com/horses/19083719/73502-alexander,Covered 2 days ago,,,,Flat Racing,570,55,60,70,45,53,50,48,58,72,59,202,293,239,296,211,280,244,e / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut,73.17,66.593,74.499,74.499,4G 7A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +19129465,Black Pearl,0,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19129465/black-pearl,Bacardina,12/14/2024 18:04:36,,,,,https://www.horsereality.com/horses/18937546/chorizo-74-350,https://www.horsereality.com/horses/18192178/therapia-sell,Choose training,585,56,58,69,51,55,58,52,52,67,67,194,290,244,312,218,284,250,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,71.955,67.02,-1,-1,8A 3G 1BA,Average,Good,Average,Average,Good,,Good,Good,Good,Excellent,Good +19031429,Flax carrier,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19031429/flax-carrier,Bacardina,12/14/2024 18:05:53,s [73.906] ᴸᴴ Alabai 67.1,https://www.horsereality.com/horses/19026118/s-73906-alabai-671,Covered 2 days ago,,https://www.horsereality.com/horses/18673015/eternal-flame-ff,https://www.horsereality.com/horses/18851937/fuscina-flamma-f-f-nd1,Basic Training,578,53,60,72,50,55,54,48,55,67,64,199,291,240,307,210,278,249,e / e,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier,71.35,65.116,-1,-1,7A 3G 2BA,Average,Good,Average,Below average,Good,Good,Good,Good,Good,Good,Excellent +19105334,Foal Doe 19105334,1,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19105334/foal-doe-19105334,Bacardina,12/14/2024 18:06:24,,,,,https://www.horsereality.com/horses/18915747/fr-quite-smooth,https://www.horsereality.com/horses/18551537/contagiosa-nd1,Choose training,584,53,67,70,48,57,56,47,55,71,60,208,306,242,305,211,286,250,E / e,A / a,G / G,n / n,nd1 / nd1,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,AT/AT,n/n,n/n,n/n,n/n,Seal Bay,72.444,65.785,-1,-1,7A 4G 1BA,Average,Good,Average,Average,Good,,Good,Good,Excellent,Good,Good +18796231,"Lavendula (CR,SAB)",4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18796231/lavendula-crsab,Bacardina,12/14/2024 18:06:46,Pathogenus Obscurus (g/g),https://www.horsereality.com/horses/18926115/pathogenus-obscurus-gg,"Mon, 16 Dec",Stallion,https://www.horsereality.com/horses/18105035/favory-hispanica-72-0,https://www.horsereality.com/horses/18221859/toxina,Basic Training,575,51,65,73,50,48,53,51,55,67,62,205,288,237,305,210,284,251,E / E,A / a,G / G,CR / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,72.68,66.189,-1,-1,9A 3G,Average,Average,Average,Average,Good,Good,Good,Good,Good,Good,Good +19083719,!73.502 Alexander,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19083719/73502-alexander,MotherofChaos,12/14/2024 18:10:07,,,,,https://www.horsereality.com/horses/18894259/loki-73-644,https://www.horsereality.com/horses/18810892/f-72-897-66-040,Discipline,584,51,65,72,47,53,56,49,58,72,61,209,304,247,308,214,284,249,E / e,a / a,g / g,CR / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,73.302,67.02,-1,-1,6G 4A 2BA,Good,Good,Average,Average,Good,Excellent,Good,Good,Excellent,Good,Good +18078140,Microbium,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18078140/microbium,Bacardina,12/14/2024 18:10:15,Hephaestus (g/G),https://www.horsereality.com/horses/19036313/hephaestus-gg,Covered 2 days ago,,,,Basic Training,585,55,60,74,49,55,56,51,55,69,61,203,295,241,309,217,284,250,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.414,67.2,-1,-1,5A 5G 2BA,Average,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18128092,Dunaria,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18128092/dunaria,Bacardina,12/14/2024 18:11:59,Typographus,https://www.horsereality.com/horses/18978617/typographus,"Wed, 18 Dec",Mare,,,Basic Training,580,55,59,70,50,51,56,49,55,72,63,201,293,246,311,215,285,247,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,72.126,65.915,-1,-1,3G 9A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18541263,Digitalis Alba,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18541263/digitalis-alba,Bacardina,12/14/2024 18:12:42,Ares | 73.921,https://www.horsereality.com/horses/18866194/ares-73921,"Sat, 21 Dec",Mare,https://www.horsereality.com/horses/18078204/dare-devil,https://www.horsereality.com/horses/18083022/vespar-vale,Basic Training,587,58,65,65,47,55,57,52,54,71,63,201,302,245,303,221,293,251,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.462,65.841,-1,-1,5G 5A 2BA,Good,Good,Average,Below average,Good,Good,Good,Good,Good,Excellent,Good +18665975,Epidemica (nd1) ! Western,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18665975/epidemica-nd1-western,Bacardina,12/14/2024 18:13:38,Ꮦ Centurio Delicia ᶜʳ,https://www.horsereality.com/horses/18793397/centurio-delicia,"Fri, 20 Dec",Mare,https://www.horsereality.com/horses/18237945/maximus-594,https://www.horsereality.com/horses/18150081/medica-nd1,Western Reining,585,58,69,73,46,50,50,49,56,71,63,213,296,240,303,213,293,263,E / E,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.733,66.915,-1,-1,7G 3A 2BA,Good,Good,Average,Below average,Good,Good,Good,Excellent,Excellent,Good,Good +19051531,Eternal Diamond,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19051531/eternal-diamond,Bacardina,12/14/2024 18:23:53,ᴴᴰ Don Giovanni,https://www.horsereality.com/horses/18976525/don-giovanni,"Mon, 23 Dec",Mare,https://www.horsereality.com/horses/18856745/cataclysm-73-935,https://www.horsereality.com/horses/18083012/diamond-day,Basic Training,594,56,61,72,49,57,57,54,50,73,65,206,298,245,316,217,293,254,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.819,66.891,-1,-1,5G 6A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18934654,Eclipsia (RN),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18934654/eclipsia-rn,Bacardina,12/14/2024 18:30:09,FR Diamond Star,https://www.horsereality.com/horses/18892293/fr-diamond-star,"Mon, 16 Dec",Stallion,https://www.horsereality.com/horses/18651746/dominus-pathogenus-rn,https://www.horsereality.com/horses/18555761/tuberculosa,Basic Training,581,53,66,69,50,54,54,46,52,70,67,205,296,243,310,205,285,255,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Roan,73.215,66.472,-1,-1,6A 5G 1BA,Average,Good,Good,Average,Good,Good,Good,Good,Good,Good,Good +18854298,Gaja,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18854298/gaja,Bacardina,12/14/2024 18:30:47,࠽ᴸᴼ El Diablo 75.171,https://www.horsereality.com/horses/18838541/el-diablo-75171,"Mon, 23 Dec",Stallion,https://www.horsereality.com/horses/18588521/s-74-275-eis-titan,https://www.horsereality.com/horses/18650349/trepona-western,Basic Training,583,54,63,72,48,55,57,46,53,70,65,205,298,245,312,210,281,254,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,74.445,68.09,-1,-1,8A 4G,Average,Good,Average,Average,Average,Excellent,Good,Good,Good,Good,Good +18090913,Borrelia (SAB),7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18090913/borrelia-sab,Bacardina,12/14/2024 21:36:34,Virus Hispanius ⚿,https://www.horsereality.com/horses/18900122/virus-hispanius,tomorrow,Mare,,,Endurance,582,55,66,71,45,49,57,48,51,74,66,211,297,248,313,211,288,258,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.166,66.494,70.012,53.108,5G 6A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18571009,Botulina (sab),6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18571009/botulina-sab,Bacardina,12/14/2024 21:36:56,FR Diamond Star,https://www.horsereality.com/horses/18892293/fr-diamond-star,tomorrow,Stallion,https://www.horsereality.com/horses/18078204/dare-devil,https://www.horsereality.com/horses/18090913/borrelia-sab,Basic Training,593,54,67,71,46,54,57,52,54,74,64,212,306,249,312,217,293,256,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.62,65.705,-1,-1,6A 4G 2BA,Average,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +19037450,Caelum,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19037450/caelum,Bacardina,12/14/2024 21:37:34,s [73.906] ᴸᴴ Alabai 67.1,https://www.horsereality.com/horses/19026118/s-73906-alabai-671,Covered 2 days ago,,https://www.horsereality.com/horses/18736502/75-034-arcano,https://www.horsereality.com/horses/18759686/helyanwe-73-4,Basic Training,578,55,63,70,51,55,53,43,52,71,65,204,294,241,310,203,283,253,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,74.142,67.975,-1,-1,4G 7A,Good,Good,Average,Average,Good+,Good,Good,Good,Excellent,Good,Good +18606712,Campyla (nd1),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18606712/campyla-nd1,Bacardina,12/14/2024 21:38:32,Virus Hispanius ⚿,https://www.horsereality.com/horses/18900122/virus-hispanius,"Tue, 17 Dec",Stallion,https://www.horsereality.com/horses/18171854/contagium-nd1-bt-66-281,https://www.horsereality.com/horses/18111749/medicina,Basic Training,582,52,66,70,49,54,53,47,57,71,63,207,301,244,306,209,285,251,E / E,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,AT/AT,n/n,n/n,n/n,n/n,Seal Bay,72.291,65.911,-1,-1,8A 3G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18530681,Cinnamora (nd1),6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18530681/cinnamora-nd1,Bacardina,12/14/2024 21:39:05,D'Artagnan,https://www.horsereality.com/horses/18221513/d39artagnan,"Sat, 21 Dec",Stallion,https://www.horsereality.com/horses/18026355/73-71-gimme-the-best-eegg,https://www.horsereality.com/horses/18115442/73-035-dun-it-again,Basic Training,580,54,61,74,42,53,55,50,55,73,63,208,297,246,307,214,280,252,E / E,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.845,66.185,-1,-1,5G 6A 1BA,Good,Good,Average,Average,Good,Excellent,Good,Good,Good,Good,Good +18263441,Contagia,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18263441/contagia,Bacardina,12/14/2024 21:39:26,Virus Hispanius ⚿,https://www.horsereality.com/horses/18900122/virus-hispanius,"Tue, 17 Dec",Mare,,,Flat Racing,582,55,65,70,47,54,55,51,54,68,63,203,296,240,303,215,286,253,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.468,66.009,74.081,66.505,6A 4G 2BA,Average,Good,Average,Below average,Good,Good,Good,Good,Good,Good,Good +18551537,Contagiosa (nd1),6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18551537/contagiosa-nd1,Bacardina,12/14/2024 21:39:58,Hephaestus (g/G),https://www.horsereality.com/horses/19036313/hephaestus-gg,Covered 2 days ago,,https://www.horsereality.com/horses/18171854/contagium-nd1-bt-66-281,https://www.horsereality.com/horses/18052201/vita-nova,Basic Training,586,55,63,72,46,54,58,47,58,70,63,205,303,249,309,218,281,253,E / E,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,AT/AT,n/n,n/n,n/n,n/n,Seal Bay,71.952,65.359,-1,-1,8A 3G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18957795,Darwina,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18957795/darwina,Bacardina,12/14/2024 21:40:55,(73.9) [67.183-74.111],https://www.horsereality.com/horses/18780189/739-67183-74111,"Thu, 19 Dec",Stallion,https://www.horsereality.com/horses/18742138/meningitis-viralis,https://www.horsereality.com/horses/18192178/therapia-sell,Basic Training,584,57,61,71,49,56,56,46,55,70,63,202,298,244,309,214,283,252,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.018,66.492,-1,-1,7A 5G,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +18083012,Diamond Day,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18083012/diamond-day,Bacardina,12/14/2024 21:41:36,ⓜ Cataclysm | 73.935,https://www.horsereality.com/horses/18856745/cataclysm-73935,"Sat, 21 Dec",Mare,,,Basic Training,578,54,62,69,49,54,55,52,51,71,61,202,293,238,305,212,288,246,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.6,67.351,-1,-1,5G 6A 1BA,Good,Good,Average,Average,Good,Good,Good,Excellent,Excellent,Good,Good +19118932,Elysia,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19118932/elysia,Bacardina,12/14/2024 21:43:34,"Plagueborn (BT:66,98)",https://www.horsereality.com/horses/19088379/plagueborn-bt6698,Covered yesterday,,https://www.horsereality.com/horses/18856745/cataclysm-73-935,https://www.horsereality.com/horses/18934656/fatalia-g-g-notiz,Choose training,596,60,65,76,46,53,55,50,52,74,65,215,299,246,316,217,295,266,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.726,67.039,-1,-1,7A 5G,Average,Good,Good,Average,Good,Good,Good,Good,Excellent,Good,Excellent +18934656,Fatalia (G/g) (Notiz),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18934656/fatalia-gg-notiz,Bacardina,12/14/2024 21:44:42,s74.4 ❅ Mystic Basil,https://www.horsereality.com/horses/19024911/s744-mystic-basil,Covered yesterday,,https://www.horsereality.com/horses/18458424/leonidas,https://www.horsereality.com/horses/18139143/pathogenia,Basic Training,584,60,61,71,46,56,54,48,54,70,64,202,295,242,305,216,285,256,E / E,A / A,G / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.834,66.274,-1,-1,4G 7A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18124090,Flora Vitalis Western,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18124090/flora-vitalis-western,Bacardina,12/14/2024 21:45:01,s75.869 | ᗯᑭ Sorrentino,https://www.horsereality.com/horses/19031993/s75869-sorrentino,Covered 2 days ago,,,,Select discipline,587,56,64,69,43,56,56,52,53,71,67,204,300,247,306,217,286,256,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.97,66.072,-1,-1,4G 7A 1BA,Good,Average,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18771044,Fructa,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18771044/fructa,Bacardina,12/14/2024 21:45:41,ღ 73.104 ʙᴜʟʙᴀsᴀᴜʀ,https://www.horsereality.com/horses/18984739/73104-s,"Thu, 19 Dec",Mare,https://www.horsereality.com/horses/18171854/contagium-nd1-bt-66-281,https://www.horsereality.com/horses/18101701/vibriona-nd1,Basic Training,584,56,62,67,52,55,54,48,55,72,63,201,298,244,308,213,290,248,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.647,66.713,-1,-1,8A 4G,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18138361,Giardia Lamblia $,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18138361/giardia-lamblia,Bacardina,12/14/2024 21:46:17,FR Quite Smooth,https://www.horsereality.com/horses/18915747/fr-quite-smooth,"Wed, 18 Dec",Mare,,,Endurance,578,54,63,72,49,50,51,44,56,74,65,209,294,246,311,205,284,254,E / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.193,65.938,65.058,50.064,6A 5G 1BA,Average,Good,Good,Average,Good,Good,Good,Good,Good,Good,Good +18192018,Helicobacter Veneris,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18192018/helicobacter-veneris,Bacardina,12/14/2024 21:46:59,Typographus,https://www.horsereality.com/horses/18978617/typographus,"Wed, 18 Dec",Mare,,,Endurance,578,51,58,74,53,52,56,48,56,72,58,204,294,242,313,211,282,241,E / e,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.468,65.67,79.415,44.573,5G 5A 2BA,Good,Average,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +19010373,ღ ᵇᵗ 66.66 ⥉ ɴɪᴅᴏʀɪɴᴏ,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19010373/gh-6666-d,Elspeth_Resplendent,12/15/2024 21:51:06,,,,,https://www.horsereality.com/horses/18809200/66-262,https://www.horsereality.com/horses/18027184/65-45,Discipline,612,58,63,73,50,57,57,57,59,71,67,207,307,254,318,231,299,261,E / E,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,72.113,65.311,-1,-1,5A 4G 3BA,Average,Good,Good,Below average,Good,Good,Good,Good,Good,Good,Good +18956318,Hispania,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18956318/hispania,Bacardina,12/14/2024 21:48:37,FR Diamond Star,https://www.horsereality.com/horses/18892293/fr-diamond-star,tomorrow,Mare,https://www.horsereality.com/horses/18729058/comic-sans-74-908,https://www.horsereality.com/horses/18571009/botulina-sab,Basic Training,582,54,61,70,49,55,54,49,57,72,61,203,299,244,306,214,285,246,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.334,66.853,-1,-1,5G 7A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18936788,Infesta ⚿,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18936788/infesta,Bacardina,12/14/2024 21:49:00,! Chorizo 74.350 ♆,https://www.horsereality.com/horses/18937546/chorizo-74350,"Tue, 17 Dec",Stallion,https://www.horsereality.com/horses/18582894/74-702-draven,https://www.horsereality.com/horses/18528811/lactobacilla-flat-racin,Basic Training,569,56,59,68,49,51,49,51,54,71,61,198,284,235,298,210,286,244,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.555,67.108,-1,-1,5G 6A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Excellent +18528811,Lactobacilla / Flat Racin,6,Mare,Lipizzaner Horse,Bay,https://www.horsereality.com/horses/18528811/lactobacilla-flat-racin,Bacardina,12/14/2024 21:49:22,! Chorizo 74.350 ♆,https://www.horsereality.com/horses/18937546/chorizo-74350,tomorrow,Mare,https://www.horsereality.com/horses/18018876/charmer,https://www.horsereality.com/horses/18108170/pseudomona,Flat Racing,573,57,65,70,44,56,53,48,53,66,61,201,293,233,294,211,280,253,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,72.342,67.085,69.099,69.099,6G 6A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Excellent +18758925,Lavandula Serenis,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18758925/lavandula-serenis,Bacardina,12/14/2024 21:49:44,S 75.975 - 69.102,https://www.horsereality.com/horses/19008209/s-75975-69102,Covered 3 days ago,,https://www.horsereality.com/horses/18034677/73-872-perseus-w20,https://www.horsereality.com/horses/18092127/m-72-763,Basic Training,593,55,61,73,46,59,57,50,56,71,65,205,304,249,312,218,283,254,E / E,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,W20 / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.491,66.26,-1,-1,4G 1BA 7A,Good,Good,Good,Below average,Good,Good,Good,Good,Good,Good,Good +18556988,Legionella Sell?,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18556988/legionella-sell,Bacardina,12/14/2024 21:50:06,᯽ Chogori | 73.869,https://www.horsereality.com/horses/18781859/chogori-73869,"Wed, 18 Dec",Stallion,https://www.horsereality.com/horses/18026355/73-71-gimme-the-best-eegg,https://www.horsereality.com/horses/18101533/71-530-chessie-jump,Basic Training,580,53,62,74,49,52,52,47,59,71,61,207,296,243,307,211,282,250,E / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,71.928,65.46,-1,-1,6A 4G 2BA,Average,Good,Average,Average,Good,Excellent,Good,Good,Excellent,Excellent,Good +18130316,Lenitas,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18130316/lenitas,Bacardina,12/14/2024 21:50:38,! Chorizo 74.350 ♆,https://www.horsereality.com/horses/18937546/chorizo-74350,"Wed, 18 Dec",Mare,,,Basic Training,601,54,68,71,54,55,52,53,55,72,67,211,302,246,316,214,301,260,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.183,65.425,-1,-1,3G 7A 2BA,Good,Good,Average,Below average,Good,Good,Good,Good,Good,Good,Good +18903024,Letalis (G/g) (nd1) ⚿,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18903024/letalis-gg-nd1,Bacardina,12/14/2024 21:51:08,s [73.906] ᴸᴴ Alabai 67.1,https://www.horsereality.com/horses/19026118/s-73906-alabai-671,"Tue, 24 Dec",Mare,https://www.horsereality.com/horses/18607724/73-456-gentleman,https://www.horsereality.com/horses/18623599/yersinia-nd1,Basic Training,589,51,66,73,51,50,57,51,57,72,61,211,302,247,314,216,291,251,E / E,A / a,G / g,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.18,65.709,-1,-1,5G 6A 1BA,Good,Good,Average,Below average,Good,Excellent,Good,Good,Excellent,Good,Good +18398584,Listeria,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18398584/listeria,Bacardina,12/14/2024 21:51:43,Virus Hispanius ⚿,https://www.horsereality.com/horses/18900122/virus-hispanius,"Mon, 16 Dec",Stallion,,,Basic Training,584,50,64,63,49,56,56,51,54,72,69,199,302,251,309,211,286,246,E / E,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.61,66.433,-1,-1,8A 3G 1BA,Average,Good,Average,Below average,Average,Good,Good,Good,Excellent,Good,Good +18928696,Luctuosa,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18928696/luctuosa,Bacardina,12/14/2024 21:52:01,ღ 73.104 ʙᴜʟʙᴀsᴀᴜʀ,https://www.horsereality.com/horses/18984739/73104-s,"Tue, 17 Dec",Stallion,https://www.horsereality.com/horses/18575173/s74-624-shadowfax,https://www.horsereality.com/horses/18551537/contagiosa-nd1,Basic Training,586,52,64,72,48,53,59,48,56,73,61,209,305,249,313,215,285,249,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.739,67.425,-1,-1,8A 4G,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +19042624,Lumina,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19042624/lumina,Bacardina,12/14/2024 21:52:31,!ᴹᴷᴿ 72.908 ᴽ,https://www.horsereality.com/horses/18769995/72908,"Sat, 21 Dec",Mare,https://www.horsereality.com/horses/18815518/cs-ca-ine-75,https://www.horsereality.com/horses/18213352/lumen-sanare,Basic Training,574,56,63,73,50,53,46,46,53,72,62,208,287,233,303,201,287,254,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.174,66.892,-1,-1,5G 7A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +19024907,Luna ⚿,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19024907/luna,Bacardina,12/14/2024 21:53:04,!73.589 Alexander,https://www.horsereality.com/horses/19083719/73589-alexander,Covered yesterday,,https://www.horsereality.com/horses/18607724/73-456-gentleman,https://www.horsereality.com/horses/18829140/terra-g-g,Basic Training,576,49,65,73,51,50,54,46,56,67,65,205,292,242,310,205,278,252,E / E,A / a,g / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Classic Bay,72.981,66.276,-1,-1,5G 6A 1BA,Good,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18950669,Malefica,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18950669/malefica,Bacardina,12/14/2024 21:54:06,,,,,https://www.horsereality.com/horses/18729058/comic-sans-74-908,https://www.horsereality.com/horses/18395059/neisseria-meningitida,Basic Training,568,51,62,63,51,50,51,48,52,78,62,203,293,243,305,202,290,238,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.242,67.551,-1,-1,5G 7A,Good,Good,Average,Average,Good,Excellent,Good,Good,Excellent,Good,Good +18150081,Medica (nd1),7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18150081/medica-nd1,Bacardina,12/14/2024 21:54:30,s/73.791 Midnight Earl,https://www.horsereality.com/horses/18862701/s73791-midnight-earl,"Sat, 21 Dec",Mare,,,Show Jumping,576,54,67,73,49,51,53,46,52,69,62,209,292,236,306,205,285,256,E / E,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,71.68,66.012,76.073,45.574,6A 4G 2BA,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18111749,Medicina $,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18111749/medicina,Bacardina,12/14/2024 21:54:57,FR Quite Smooth,https://www.horsereality.com/horses/18915747/fr-quite-smooth,"Sat, 21 Dec",Mare,,,Show Jumping,577,48,67,72,48,54,57,49,51,73,58,212,302,239,308,205,285,245,E / E,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.708,66.026,78.85,48.51,9A 3G,Average,Average,Average,Average,Good,Good,Good,Good,Good,Good,Good +18872105,Minerva (nd1²),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18872105/minerva-nd12,Bacardina,12/14/2024 21:56:20,Typographus,https://www.horsereality.com/horses/18978617/typographus,"Sun, 22 Dec",Stallion,https://www.horsereality.com/horses/18612450/73-170,https://www.horsereality.com/horses/18637898/mycota-mystica-nd1,Basic Training,600,56,70,71,46,56,56,51,56,72,66,213,310,250,311,219,295,263,E / E,A / A,G / G,n / n,nd1 / nd1,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.641,66.366,-1,-1,5G 2BA 5A,Good,Good,Good,Below average,Good,Good,Good,Good,Excellent,Good,Excellent +18237834,Moonlight,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18237834/moonlight,Bacardina,12/14/2024 21:56:44,s75.869 | ᗯᑭ Sorrentino,https://www.horsereality.com/horses/19031993/s75869-sorrentino,"Thu, 26 Dec",Mare,,,Basic Training,581,52,63,69,48,55,55,49,54,72,64,204,299,245,308,210,284,248,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.417,66.066,-1,-1,5G 5A 2BA,Good,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18637898,Mycota Mystica (nd1),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18637898/mycota-mystica-nd1,Bacardina,12/14/2024 21:57:02,!ᴹᴷᴿ 72.908 ᴽ,https://www.horsereality.com/horses/18769995/72908,"Fri, 20 Dec",Mare,https://www.horsereality.com/horses/18171854/contagium-nd1-bt-66-281,https://www.horsereality.com/horses/18309415/virtuosa,Basic Training,589,54,62,69,50,54,56,46,56,73,69,204,301,254,317,212,285,254,E / E,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.501,65.943,-1,-1,8A 2G 2BA,Average,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18395059,Neisseria Meningitida,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18395059/neisseria-meningitida,Bacardina,12/14/2024 21:57:20,,,,,,,Show Jumping,564,50,64,65,50,50,49,48,49,73,66,202,285,237,303,196,285,245,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.327,66.782,-1,-1,6G 5A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +19131443,Blackberry (RN) ⚿,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19131443/blackberry-rn,Bacardina,12/14/2024 21:58:50,,,,,https://www.horsereality.com/horses/18900122/virus-hispanius,https://www.horsereality.com/horses/18395059/neisseria-meningitida,Choose training,585,52,65,65,52,55,52,51,54,71,68,201,297,245,308,209,291,250,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.482,67.17,-1,-1,6A 6G,Average,Good,Good,Average,Good,Good,Good,Good,Excellent,Good,Good +18993657,Nightingale,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18993657/nightingale,Bacardina,12/14/2024 21:59:29,࠽ᴸᴼ El Diablo 75.171,https://www.horsereality.com/horses/18838541/el-diablo-75171,"Fri, 20 Dec",Stallion,https://www.horsereality.com/horses/18582894/74-702-draven,https://www.horsereality.com/horses/18817141/arborina,Basic Training,580,56,60,70,52,55,51,47,55,73,61,203,294,240,307,209,288,247,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,74.054,67.464,-1,-1,6A 5G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +18905131,Noctua,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18905131/noctua,Bacardina,12/14/2024 21:59:56,"Plagueborn (BT:66,98)",https://www.horsereality.com/horses/19088379/plagueborn-bt6698,Covered 2 days ago,,https://www.horsereality.com/horses/18588521/s-74-275-eis-titan,https://www.horsereality.com/horses/18124090/flora-vitalis-western,Basic Training,585,54,68,69,44,55,57,49,52,70,67,207,302,246,307,212,285,258,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.469,66.852,-1,-1,4G 7A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +19019075,Noctuna (G/g) (nd1),3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19019075/noctuna-gg-nd1,Bacardina,12/14/2024 22:01:22,Rome | 75.381,https://www.horsereality.com/horses/19006377/rome-75381,"Sat, 21 Dec",Stallion,https://www.horsereality.com/horses/18840996/74-22-cje-paradise-falls,https://www.horsereality.com/horses/18150081/medica-nd1,Basic Training,568,50,64,74,46,54,51,47,50,73,59,211,292,233,303,198,280,247,E / E,A / a,G / g,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.522,67.36,-1,-1,7A 5G,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18219792,Noxia $,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18219792/noxia,Bacardina,12/14/2024 22:01:40,Typographus,https://www.horsereality.com/horses/18978617/typographus,"Fri, 20 Dec",Stallion,,,Endurance,574,54,64,72,45,50,54,49,56,66,64,202,290,240,301,213,278,254,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.209,65.785,79.271,46.746,4G 6A 2BA,Good,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +19047808,Ophelia,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19047808/ophelia,Bacardina,12/14/2024 22:02:07,Vanilla Bean | 70.4,https://www.horsereality.com/horses/19051054/vanilla-bean-704,"Sat, 21 Dec",Stallion,https://www.horsereality.com/horses/18856745/cataclysm-73-935,https://www.horsereality.com/horses/18637898/mycota-mystica-nd1,Basic Training,598,56,66,72,47,57,60,47,51,72,70,210,306,253,321,214,288,264,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,73.007,66.252,-1,-1,9A 3G,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18969627,Pandemia,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18969627/pandemia,Bacardina,12/14/2024 22:02:23,FR Diamond Star,https://www.horsereality.com/horses/18892293/fr-diamond-star,"Tue, 17 Dec",Mare,https://www.horsereality.com/horses/18742138/meningitis-viralis,https://www.horsereality.com/horses/18263441/contagia,Basic Training,587,59,67,69,46,57,56,48,54,66,65,202,300,241,302,217,286,260,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.63,67.002,-1,-1,4A 7G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +18139143,Pathogenia,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18139143/pathogenia,Bacardina,12/14/2024 22:02:47,,,,,,,Show Jumping,582,56,60,74,48,54,51,50,56,71,62,205,292,240,306,213,285,252,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.027,65.653,55.553,44.027,9A 2G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Excellent +19105339,Browny,1,Mare,Lipizzaner Horse,Bay,https://www.horsereality.com/horses/19105339/foal-doe-19105339,Bacardina,12/14/2024 22:03:40,,,,,https://www.horsereality.com/horses/18915747/fr-quite-smooth,https://www.horsereality.com/horses/18139143/pathogenia,Basic Training,573,53,58,73,48,55,54,48,53,70,61,201,290,238,306,208,277,245,E / E,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,73.617,67.592,-1,-1,4G 8A,Good,Good,Average,Average,Good,,Good,Good,Excellent,Good,Good +19036783,Phibeerya (nd1),3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19036783/phibeerya-nd1,Bacardina,12/14/2024 22:04:23,ѕƬ☼ Tristan Junior 604,https://www.horsereality.com/horses/19017361/tristan-junior-604,"Wed, 25 Dec",Mare,https://www.horsereality.com/horses/18856745/cataclysm-73-935,https://www.horsereality.com/horses/18872105/minerva-nd1,Basic Training,613,54,69,76,47,57,60,54,55,72,69,217,313,256,324,223,296,268,E / E,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.309,65.72,-1,-1,4G 6A 2BA,Good,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18736732,Purpurea Western,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18736732/purpurea-western,Bacardina,12/14/2024 22:04:58,S 75.975 - 69.102,https://www.horsereality.com/horses/19008209/s-75975-69102,Covered 3 days ago,,https://www.horsereality.com/horses/18178730/585-297-61-67,https://www.horsereality.com/horses/18528811/lactobacilla-flat-racin,Basic Training,576,59,62,68,41,55,52,49,55,72,63,202,296,242,296,215,283,252,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.504,67.395,-1,-1,5G 7A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18761715,Rubina (W20),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18761715/rubina-w20,Bacardina,12/14/2024 22:05:17,s73.186〥Kiirion Keove,https://www.horsereality.com/horses/18869523/s73186kiirion-keove,"Wed, 18 Dec",Stallion,https://www.horsereality.com/horses/18417156/bacillus-anthracis,https://www.horsereality.com/horses/18065121/harpactira,Basic Training,579,56,64,74,43,55,50,49,56,71,61,209,296,238,299,211,283,255,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,W20 / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.453,66.182,-1,-1,7A 4G 1BA,Average,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18580872,Sahara,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18580872/sahara,Bacardina,12/14/2024 22:05:32,s73.186〥Kiirion Keove,https://www.horsereality.com/horses/18869523/s73186kiirion-keove,"Fri, 20 Dec",Mare,https://www.horsereality.com/horses/18183911/73-7-little-this-eeaagg,https://www.horsereality.com/horses/18270667/73-082-66-466-73-394,Basic Training,584,58,65,72,47,55,59,45,51,71,61,208,301,242,310,213,286,256,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.762,66.25,-1,-1,4G 7A 1BA,Good,Good,Average,Average,Average,Good,Good,Good,Excellent,Good,Good +18290539,Sanitas,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18290539/sanitas,Bacardina,12/14/2024 22:05:52,Venenum (W20) (g/G),https://www.horsereality.com/horses/18939248/venenum-w20-gg,"Mon, 16 Dec",Stallion,,,Show Jumping,581,55,66,73,48,49,49,52,56,72,61,211,292,238,303,212,293,255,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.827,66.286,77.756,42.566,4G 8A,Good,Good,Average,Average,Good,Excellent,Good,Good,Good,Good,Good +18733591,Spora (G/g),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18733591/spora-gg,Bacardina,12/14/2024 22:06:11,❥Dark Secret 75.3 66.36BT,https://www.horsereality.com/horses/18923839/dark-secret-753-6636bt,"Wed, 18 Dec",Stallion,https://www.horsereality.com/horses/18192147/73-043-atlan-582-gg,https://www.horsereality.com/horses/18068299/staphyla-delphini,Basic Training,584,54,63,71,48,52,50,49,56,72,69,206,293,247,310,209,286,257,E / E,a / a,G / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.63,65.779,-1,-1,8A 4G,Average,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18829140,Terra (g/g),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18829140/terra-gg,Bacardina,12/14/2024 22:06:39,! 74.455 Ajax 581 Gg ᵖᵅᶠ,https://www.horsereality.com/horses/18768174/74455-ajax-581-gg,"Thu, 19 Dec",Mare,https://www.horsereality.com/horses/18558670/ef-39-s-gold-fox,https://www.horsereality.com/horses/18147520/virulentia,Basic Training,568,51,63,72,52,51,52,47,51,70,59,205,287,232,305,201,283,245,E / e,A / a,g / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Classic Bay,72.657,66.392,-1,-1,5G 6A 1BA,Good,Good,Average,Below average,Average,Good,Good,Good,Excellent,Good,Good +18581409,Tetanica (RN),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18581409/tetanica-rn,Bacardina,12/14/2024 22:06:54,!73.589 Alexander,https://www.horsereality.com/horses/19083719/73589-alexander,Covered yesterday,,https://www.horsereality.com/horses/18147775/pluto,https://www.horsereality.com/horses/18145943/clostridia-tetania-rn,Basic Training,582,52,65,70,48,53,50,50,54,73,67,208,295,244,308,206,288,254,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,71.995,65.579,-1,-1,4G 7A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18221859,Toxina,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18221859/toxina,Bacardina,12/14/2024 22:09:21,Medicus,https://www.horsereality.com/horses/18972192/medicus,"Mon, 23 Dec",Mare,,,Show Jumping,580,47,67,73,50,49,56,54,53,70,61,210,295,240,310,210,288,248,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.224,65.504,79.774,44.208,3G 8A 1BA,Good,Average,Average,Below average,Good,Good,Excellent,Excellent,Good,Good,Good +18650349,Trepona Western,5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18650349/trepona-western,Bacardina,12/14/2024 22:09:45,Hephaestus (g/G),https://www.horsereality.com/horses/19036313/hephaestus-gg,"Sat, 21 Dec",Stallion,https://www.horsereality.com/horses/18098983/73-483-magnus,https://www.horsereality.com/horses/18299086/vulneris,Basic Training,580,58,60,70,47,57,56,49,52,68,63,198,293,239,304,215,282,251,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.546,66.842,-1,-1,5G 7A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18453625,Treponema,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18453625/treponema,Bacardina,12/14/2024 22:10:28,"Plagueborn (BT:66,98)",https://www.horsereality.com/horses/19088379/plagueborn-bt6698,Covered 2 days ago,,,,Basic Training,587,55,67,64,53,55,52,48,59,69,65,200,302,245,303,214,292,251,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.31,65.452,-1,-1,8A 3G 1BA,Average,Good,Average,Average,Average,Good,Good,Excellent,Excellent,Good,Good +18555761,Tuberculosa,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18555761/tuberculosa,Bacardina,12/14/2024 22:10:51,,,,,https://www.horsereality.com/horses/18084876/ae-thanatos,https://www.horsereality.com/horses/18087165/morbilli-regia,Basic Training,581,52,67,72,49,53,57,47,54,68,62,207,299,241,308,210,283,253,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,71.654,65.925,-1,-1,5G 7A,Good,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +19126409,Strawberry,0,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19126409/foal-doe-19126409,Bacardina,12/14/2024 22:11:52,,,,,https://www.horsereality.com/horses/18915747/fr-quite-smooth,https://www.horsereality.com/horses/18555761/tuberculosa,Choose training,586,50,73,69,50,52,59,48,55,68,62,210,307,244,308,212,289,254,E / e,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.472,68.297,-1,-1,7G 5A,Good,Good,Good,Average,Good,,Good,Good,Excellent,Good,Good +18767257,Velora,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18767257/velora,Bacardina,12/14/2024 22:12:35,Typographus,https://www.horsereality.com/horses/18978617/typographus,"Thu, 19 Dec",Stallion,https://www.horsereality.com/horses/18402750/annapurna-73-117,https://www.horsereality.com/horses/18052201/vita-nova,Basic Training,580,54,65,70,47,52,53,50,55,70,64,205,295,242,304,212,286,253,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,71.989,65.781,-1,-1,9A 3G,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +18167216,Venenum,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18167216/venenum,Bacardina,12/14/2024 22:12:51,Pandemic Whisper,https://www.horsereality.com/horses/19042376/pandemic-whisper,"Fri, 27 Dec",Stallion,,,Show Jumping,580,55,66,72,46,52,51,53,55,69,61,207,293,236,299,214,289,254,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.221,65.582,52.34,46.998,4A 5G 3BA,Average,Good,Good,Below average,Good,Good,Good,Good,Excellent,Average,Good +18101701,Vibriona (nd1),6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18101701/vibriona-nd1,Bacardina,12/14/2024 22:13:10,Hephaestus (g/G),https://www.horsereality.com/horses/19036313/hephaestus-gg,Covered yesterday,,,,Basic Training,581,54,61,72,50,55,55,46,53,73,62,206,297,243,312,208,284,249,E / E,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.454,65.712,-1,-1,8A 1BA 3G,Average,Average,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18159727,Vitalia Cura,7,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18159727/vitalia-cura,Bacardina,12/14/2024 22:15:33,Typographus,https://www.horsereality.com/horses/18978617/typographus,"Mon, 16 Dec",Mare,,,Show Jumping,576,54,64,68,50,52,49,49,54,72,64,204,291,239,303,206,289,250,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.542,65.781,79.362,46.797,3G 8A 1BA,Good,Good,Average,Below average,Average,Good,Good,Excellent,Good,Good,Good +18299086,Vulneris,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18299086/vulneris,Bacardina,12/14/2024 22:16:47,74.549 Lover Roan,https://www.horsereality.com/horses/18812963/74549-lover-roan,"Mon, 16 Dec",Mare,,,Show Jumping,579,56,65,70,48,55,53,49,50,70,63,205,293,236,304,208,288,254,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,71.908,66.134,78.61,43.189,5G 6A 1BA,Good,Good,Average,Average,Average,Good,Excellent,Good,Good,Good,Good +19008561,Wisteria (RN),3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19008561/wisteria-rn,Bacardina,12/14/2024 22:17:21,Hephaestus (g/G),https://www.horsereality.com/horses/19036313/hephaestus-gg,Covered 2 days ago,,https://www.horsereality.com/horses/18651746/dominus-pathogenus-rn,https://www.horsereality.com/horses/18138361/giardia-lamblia,Basic Training,580,56,64,70,52,47,46,50,55,74,66,208,286,241,308,207,296,256,E / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.697,66.082,-1,-1,5A 5G 2BA,Average,Good,Good,Average,Good,Good,Good,Good,Good,Good,Good +18956550,Xenobota,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18956550/xenobota,Bacardina,12/14/2024 22:17:50,Venenum (W20) (g/G),https://www.horsereality.com/horses/18939248/venenum-w20-gg,today,Mare,https://www.horsereality.com/horses/18562458/bixbite-at,https://www.horsereality.com/horses/18101701/vibriona-nd1,Basic Training,583,52,63,70,55,52,54,49,54,70,64,203,293,242,313,209,289,249,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.374,66.524,-1,-1,6G 6A,Good,Good,Good,Average,Good,Good,Good,Good,Excellent,Good,Good +18623599,Yersinia (nd1),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18623599/yersinia-nd1,Bacardina,12/14/2024 22:18:32,s75.869 | ᗯᑭ Sorrentino,https://www.horsereality.com/horses/19031993/s75869-sorrentino,"Fri, 27 Dec",Mare,https://www.horsereality.com/horses/18171854/contagium-nd1-bt-66-281,https://www.horsereality.com/horses/18290539/sanitas,Western Reining,586,53,68,73,50,50,54,49,57,70,62,211,299,243,309,213,290,256,E / E,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.405,66.612,-1,-1,5G 6A 1BA,Good,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +18950662,Candens Flamma (RN)(F/f),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18950662/candens-flamma-rnff,Bacardina,12/14/2024 22:22:15,Pandemius (F/f?) ⚿,https://www.horsereality.com/horses/18934406/pandemius-ff,Covered 2 days ago,,https://www.horsereality.com/horses/18673015/eternal-flame-ff,https://www.horsereality.com/horses/18581409/tetanica-rn,Basic Training,580,50,64,70,45,55,52,50,58,72,64,206,301,246,303,210,281,248,E / e,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,f/n,n/n,n/n,n/n,Bay Roan Flax Carrier,71.996,65.786,-1,-1,3G 7A 2BA,Good,Good,Average,Average,Average,Good,Good,Good,Excellent,Good,Good +19050601,Eleonora Flamma (F/f?),3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19050601/eleonora-flamma-ff,Bacardina,12/14/2024 22:23:57,Tacitus 72.894 W20,https://www.horsereality.com/horses/18937543/tacitus-72894-w20,"Mon, 23 Dec",Mare,https://www.horsereality.com/horses/18789940/fireborne,https://www.horsereality.com/horses/18418732/fervor-pestilentia-f-f,Basic Training,568,52,61,73,48,53,51,47,52,68,63,202,285,234,303,202,276,249,e / e,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax carrier?,72.895,66.346,-1,-1,4G 6A 2BA,Good,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +18840155,Elysia Flamma (F/f),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18840155/elysia-flamma-ff,Bacardina,12/14/2024 22:24:58,Mission Impossible,https://www.horsereality.com/horses/18592729/mission-impossible,"Sat, 21 Dec",Mare,https://www.horsereality.com/horses/18673015/eternal-flame-ff,https://www.horsereality.com/horses/18299086/vulneris,Basic Training,575,53,62,71,48,55,54,47,53,68,64,201,292,239,305,207,278,250,E / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier,72.487,66.055,-1,-1,7A 3G 2BA,Average,Good,Average,Average,Average,Good,Excellent,Good,Good,Good,Good +19052238,Flax Carrier?,5,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19052238/foal-doe-19052238,Bacardina,12/14/2024 22:25:39,,,,,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18840155/elysia-flamma-f-f,Choose training,570,51,58,73,50,54,56,48,48,68,64,199,284,236,311,203,275,246,e / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier?,72.254,65.618,-1,-1,7A 4G 1BA,Average,Good,Average,Average,Good,,Excellent,Good,Good,Good,Good +18418732,Fervor Pestilentia (F/f),6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18418732/fervor-pestilentia-ff,Bacardina,12/14/2024 22:26:12,ᴴᴰ Don Giovanni,https://www.horsereality.com/horses/18976525/don-giovanni,"Sat, 21 Dec",Stallion,,,Endurance,581,54,62,73,48,53,54,43,57,69,68,204,295,248,312,208,276,257,e / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier,72.259,66.165,78.493,50.853,5A 5G 2BA,Average,Good,Good,Average,Good,Good,Good,Good,Good,Good,Good +18940954,Flamma Alba (F/f?) ⚿,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18940954/flamma-alba-ff,Bacardina,12/14/2024 22:26:57,Eternal Flame (ff),https://www.horsereality.com/horses/18673015/eternal-flame-ff,Covered 2 days ago,,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18727797/lamina-ardens-f-f,Basic Training,572,52,61,71,51,51,55,48,52,66,65,198,285,238,308,207,278,249,E / e,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax carrier?,72.628,65.764,-1,-1,2G 9A 1BA,Good,Average,Average,Below average,Good,Good,Good,Good,Good,Good,Good +18813183,Flamma Fulgida Red (F/f?),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18813183/flamma-fulgida-red-ff,Bacardina,12/14/2024 22:27:53,Eternal Flame (ff),https://www.horsereality.com/horses/18673015/eternal-flame-ff,"Sat, 21 Dec",Stallion,https://www.horsereality.com/horses/18276509/72-491-fabian-flaxc,https://www.horsereality.com/horses/18138361/giardia-lamblia,Basic Training,572,52,63,69,51,54,53,43,51,73,63,205,294,240,309,199,282,247,e / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier?,72.739,66.312,-1,-1,9A 3G,Average,Average,Average,Average,Good,Good,Good,Good,Good,Good,Good +18680413,"Flamma Lethalis (ff,nd1)!",5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18680413/flamma-lethalis-ffnd1,Bacardina,12/14/2024 22:28:25,Mission Impossible,https://www.horsereality.com/horses/18592729/mission-impossible,"Tue, 24 Dec",Stallion,,,Basic Training,581,51,61,69,50,55,56,49,53,71,66,201,296,246,312,209,282,247,e / e,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flaxen,71.609,64.742,-1,-1,8A 2G 2BA,Average,Average,Average,Average,Good,Good,Good,Good,Good,Excellent,Good +18811769,Flamma Nocturna (F/f?),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18811769/flamma-nocturna-ff,Bacardina,12/14/2024 22:29:27,Flammor (F/f?),https://www.horsereality.com/horses/18967204/flammor-ff,"Tue, 17 Dec",Mare,https://www.horsereality.com/horses/18612174/71-724-flaxen-carrier,https://www.horsereality.com/horses/18111749/medicina,Basic Training,569,50,63,72,46,55,55,45,52,71,60,206,296,238,304,202,275,245,E / e,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flaxen Carrier?,71.498,65.271,-1,-1,9A 3G,Average,Average,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18801136,Flamma Rubra (F/f?),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18801136/flamma-rubra-ff,Bacardina,12/14/2024 22:29:57,,,,,https://www.horsereality.com/horses/18612174/71-724-flaxen-carrier,https://www.horsereality.com/horses/18192018/helicobacter-veneris,Basic Training,579,50,61,73,50,57,55,49,54,69,61,203,296,239,308,208,279,245,E / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier?,71.351,64.866,-1,-1,9A 1G 2BA,Average,Average,Average,Average,Good,Good,Good,Good,Excellent,Good,Excellent +19124940,Flax Carrier?,0,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19124940/foal-doe-19124940,Bacardina,12/14/2024 22:31:31,,,,,https://www.horsereality.com/horses/18967204/flammor-f-f,https://www.horsereality.com/horses/18801136/flamma-rubra-f-f,Choose training,568,51,57,71,48,55,56,47,52,70,61,198,290,239,306,206,273,240,E / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,AT/AT,n/n,n/n,n/n,n/n,Seal Bay Flax Carrier?,72.805,66.16,-1,-1,6A 4G 2BA,Average,Good,Good,Average,Good,,Good,Good,Excellent,Good,Good +18851937,Fuscina Flamma (F/f?;nd1),4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18851937/fuscina-flamma-ffnd1,Bacardina,12/14/2024 22:32:08,❥Nadir 71.4♦️ FLAX,https://www.horsereality.com/horses/19003711/nadir-714-flax,"Fri, 20 Dec",Mare,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18665975/epidemica-nd1-western,Basic Training,574,56,64,73,49,53,51,50,51,68,59,205,287,229,300,208,287,252,E / e,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier?,72.78,66.829,-1,-1,6G 4A 2BA,Good,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18727797,Lamina Ardens (F/f),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18727797/lamina-ardens-ff,Bacardina,12/14/2024 22:32:41,Respirium (nd1) (F/f?) ⚿,https://www.horsereality.com/horses/18851938/respirium-nd1-ff,"Mon, 16 Dec",Mare,https://www.horsereality.com/horses/18200887/70-507-dutch-amore,https://www.horsereality.com/horses/18504133/bordetella-majestica-red,Basic Training,565,51,59,75,42,52,48,47,57,71,63,205,287,239,299,203,270,248,e / e,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier,72.564,66.161,-1,-1,9A 3G,Average,Average,Good,Average,Good,Good,Good,Good,Excellent,Good,Good +19027628,Lavinia Flamma (F/f?) ⚿ !,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19027628/lavinia-flamma-ff,Bacardina,12/14/2024 22:33:22,s75.869 | ᗯᑭ Sorrentino,https://www.horsereality.com/horses/19031993/s75869-sorrentino,"Wed, 25 Dec",Mare,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18873920/lucia-flamma-f-f,Basic Training,578,49,58,72,52,55,59,46,52,70,65,200,294,246,318,206,275,244,E / e,A / a,G / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier?,72.876,66.562,-1,-1,5G 7A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18873920,Lucia Flamma (F/f) ⚿ !!!,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18873920/lucia-flamma-ff,Bacardina,12/14/2024 22:34:13,D'Artagnan,https://www.horsereality.com/horses/18221513/d39artagnan,"Sun, 22 Dec",Stallion,https://www.horsereality.com/horses/18607724/73-456-gentleman,https://www.horsereality.com/horses/18680413/flamma-lethalis-ff-nd1,Basic Training,586,52,56,73,53,55,58,47,50,71,71,200,290,250,326,207,279,252,E / e,a / a,G / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier,72.39,66.972,-1,-1,9A 3G,Average,Average,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +18968008,Nigra Flamma (F/f?) nd1 ⚿,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18968008/nigra-flamma-ff-nd1,Bacardina,12/14/2024 22:34:36,Gacrux 586 73.008,https://www.horsereality.com/horses/18048192/gacrux-586-73008,"Wed, 18 Dec",Mare,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18398584/listeria,Basic Training,583,53,62,67,48,55,59,50,53,70,66,199,299,248,310,215,283,248,E / E,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black Flax Carrier?,72.231,66.005,-1,-1,7A 4G 1BA,Average,Good,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18626409,Outshine (f/f),5,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18626409/outshine-ff,Bacardina,12/14/2024 22:35:13,φ Inci. Name Ff | 72.299,https://www.horsereality.com/horses/18570099/f-inci-name-ff-72299,"Thu, 19 Dec",Mare,,,Basic Training,568,52,61,70,51,51,57,48,53,66,59,197,288,235,303,210,278,242,e / e,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flaxen,69.686,62.944,-1,-1,7A 4BA 1G,Average,Average,Average,Below average,Good,Good,Good,Good,Excellent,Good,Good +18872880,Valeria Flamma (F/f?) ⚿,4,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/18872880/valeria-flamma-ff,Bacardina,12/14/2024 22:35:51,Eternal Flame (ff),https://www.horsereality.com/horses/18673015/eternal-flame-ff,"Sat, 21 Dec",Mare,https://www.horsereality.com/horses/18570099/inci-name-ff-72-299,https://www.horsereality.com/horses/18418732/fervor-pestilentia-f-f,Basic Training,573,52,62,73,47,56,55,45,54,64,65,199,291,238,304,206,270,252,E / e,A / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay Flax Carrier?,72.111,65.421,-1,-1,7A 4G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +19039320,Flaxc?,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19039320/flaxc,Bacardina,12/14/2024 22:37:06,,,,,https://www.horsereality.com/horses/18276509/72-491-fabian-flaxc,https://www.horsereality.com/horses/18872880/valeria-flamma-f-f,Choose training,567,50,62,72,46,55,56,43,52,67,64,201,292,239,305,201,268,248,e / e,a / a,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut Flax Carrier?,72.27,65.526,-1,-1,8A 3G 1BA,Average,Good,Good,Average,Good,,Good,Good,Excellent,Good,Good +19041053,Foal Doe 19041053,6,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19041053/foal-doe-19041053,Bacardina,12/14/2024 22:37:36,,,,,https://www.horsereality.com/horses/18078699/c74-380-caballero,https://www.horsereality.com/horses/18221859/toxina,Basic Training,575,51,65,68,52,53,55,45,56,69,61,202,298,241,305,207,282,245,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.903,66.351,-1,-1,7A 4G 1BA,Average,Good,Average,Average,Good,,Excellent,Good,Good,Good,Good +19127282,Game Award,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19127282/foal-doe-19127282,Bacardina,12/14/2024 22:38:19,ᵎ71.395 I am Legend ⚔︎,https://www.horsereality.com/horses/19129268/71395-i-am-legend,Covered today,,https://www.horsereality.com/horses/18915747/fr-quite-smooth,https://www.horsereality.com/horses/18950669/malefica,Choose training,584,53,65,69,49,50,54,47,55,76,66,210,300,251,314,209,290,253,E / e,A / A,G / G,n / n,nd1 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,74.362,67.507,-1,-1,5A 6G 1BA,Average,Good,Good,Average,Good,Good,Good,Good,Excellent,Good,Good +19139994,Foal Doe 19139994,0,Mare,Lipizzaner Horse,Barcelona in Pedigree,https://www.horsereality.com/horses/19139994/foal-doe-19139994,Bacardina,12/15/2024 12:27:57,,,,,https://www.horsereality.com/horses/18950671/fr-naughty-snack,https://www.horsereality.com/horses/18761713/artemisia-alba,Choose training,576,50,64,69,49,48,49,51,58,69,69,202,288,245,305,208,283,252,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,AT/AT,n/n,n/n,n/n,n/n,,72.821,70.331,-1,-1,6G 6A,Good,Good,Good,Average,Good,,Good,Good,Excellent,Good,Good +18979011,66.50 ᵐᵛNormandy 73.710,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/18979011/6650-normandy-73710,Bree,12/15/2024 21:51:31,,,,,https://www.horsereality.com/horses/18566618/65-53-magnus-74-353,https://www.horsereality.com/horses/18615306/65-93-novembria-72-950,Discipline,593,56,65,74,47,56,55,50,55,71,64,210,302,245,311,216,289,259,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,73.71,67.344,-1,-1,4G 8A,Good,Good,Average,Average,Good,Good,Good,Good,Excellent,Good,Good +19106561,Ace Ine | 74.432,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19106561/ace-ine-74432,GalaKidd,12/15/2024 21:51:46,,,,,https://www.horsereality.com/horses/18815518/cs-ca-ine-75,https://www.horsereality.com/horses/18826535/eis-parfait-74-812,Basic Training,590,54,69,71,52,60,51,45,55,72,61,212,307,239,307,205,292,255,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,,74.349,67.609,-1,-1,6G 6A,Good,Good,Average,Average,Average,Good,Good,Good,Good,Good,Good +19147968,Scania,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19147968/scania,Bacardina,12/16/2024 09:44:40,S 75.975 - 69.102,https://www.horsereality.com/horses/19008209/s-75975-69102,Covered today,,https://www.horsereality.com/horses/18978617/typographus,https://www.horsereality.com/horses/18159727/vitalia-cura,Choose training,587,55,64,72,50,52,52,51,55,76,60,212,299,243,310,213,296,251,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,73.807,67.612,-1,-1,8G 4A,Good,Good,Good,Average,Good,Excellent,Good,Good,Excellent,Good,Good +19129464,Anatomy,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19129464/anatomy,Bacardina,12/16/2024 13:06:04,ღ ᵇᵗ 66.66 ⥉ ɴɪᴅᴏʀɪɴᴏ,https://www.horsereality.com/horses/19010373/6666,Covered yesterday,,https://www.horsereality.com/horses/18950671/fr-naughty-snack,https://www.horsereality.com/horses/18806183/65-75-garnet,Choose training,574,53,65,68,56,45,51,44,55,72,65,205,288,243,312,203,290,251,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.699,68.076,-1,-1,7G 5A,Good,Good,Good,Average,Good,Good,Good,Good,Excellent,Good,Good +19129466,Pathology,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19129466/pathology,Bacardina,12/16/2024 13:07:16,"Plagueborn (BT:66,98)",https://www.horsereality.com/horses/19088379/plagueborn-bt6698,Covered yesterday,,https://www.horsereality.com/horses/18841209/blodwyn-75-183,https://www.horsereality.com/horses/18595845/high-gp-producer,Choose training,584,58,66,71,52,49,60,41,49,71,67,208,295,247,321,208,288,262,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.008,66.606,-1,-1,9A 3G,Average,Good,Average,Average,Average,Good,Good,Good,Good,Good,Good +19156795,Virulentia,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19156795/virulentia,Bacardina,12/17/2024 09:42:08,,,,,https://www.horsereality.com/horses/18900122/virus-hispanius,https://www.horsereality.com/horses/18263441/contagia,Choose training,597,55,69,72,48,55,57,52,54,70,65,211,305,246,312,218,294,261,E / E,a / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Black,72.845,67.365,-1,-1,5A 6G 1BA,Average,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +19145410,Influenza (G/g),3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19145410/influenza-gg,Bacardina,12/17/2024 09:43:01,66.58 ᴸᴼMasonic 75.171,https://www.horsereality.com/horses/18838541/6658-masonic-75171,Covered yesterday,,https://www.horsereality.com/horses/18892293/fr-diamond-star,https://www.horsereality.com/horses/18956318/hispania,Choose training,585,48,59,73,52,57,54,50,58,70,64,202,298,246,313,210,279,244,E / E,A / A,G / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,72.818,66.26,-1,-1,5G 6A 1BA,Good,Average,Average,Below average,Good,Good,Good,Good,Good,Good,Good +19157056,Chocolat,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19157056/chocolat,Bacardina,12/17/2024 09:43:41,,,,,https://www.horsereality.com/horses/18892293/fr-diamond-star,https://www.horsereality.com/horses/18969627/pandemia,Choose training,594,57,66,70,48,59,56,51,51,67,69,203,299,243,310,215,289,262,E / E,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,73.23,67.075,-1,-1,5G 7A,Good,Good,Average,Average,Good,Good,Good,Good,Good,Good,Good +19093777,Chestnut flax test,3,Mare,Lipizzaner Horse,,https://www.horsereality.com/horses/19093777/chestnut-flax-test,Bacardina,12/17/2024 09:44:00,Eternal Flame (ff),https://www.horsereality.com/horses/18673015/eternal-flame-ff,Covered yesterday,,,,Choose training,573,50,63,74,47,54,54,44,51,73,63,210,295,241,311,199,277,250,e / e,A / a,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Chestnut,71.383,64.86,-1,-1,7A 2G 3BA,Average,Good,Below average,Below average,Good,Good,Good,Good,Excellent,Good,Good +19145409,Necro Mycos,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19145409/necro-mycos,Bacardina,12/17/2024 10:03:12,,,,,https://www.horsereality.com/horses/18892293/fr-diamond-star,https://www.horsereality.com/horses/18571009/botulina-sab,Choose training,596,56,67,73,50,56,56,53,49,73,63,213,301,241,315,214,299,259,E / E,A / A,G / G,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,n / n,n/n,n/n,n/n,n/n,n/n,n/n,Bay,74.202,67.838,-1,-1,5G 7A,Good,Good,Average,Average,Good,,Good,Good,Excellent,Good,Good +19155412,WHS Houdini's Dream,3,Stallion,Lipizzaner Horse,,https://www.horsereality.com/horses/19155412/whs-houdini39s-dream,Black_Magic,12/17/2024 10:20:20,,,,,https://www.horsereality.com/horses/18746136/houdini-39-s-spell-557,https://www.horsereality.com/horses/18967580/whs-red-water-dreams,Discipline,550,52,61,71,41,52,48,46,51,67,61,199,279,227,288,197,267,245,e / e,A / a,g / g,n / n,nd2 / nd2,?/?,?/?,?/?,?/?,?/?,?/?,?/?,?/?,RN / n,n/n,n/n,n/n,n/n,n/n,n/n,,68.953,64.976,-1,-1,2G 8A 2BA,Good,Average,Average,Below average,Good,Good,Good,Good,Good,Good,Good diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/horses.json b/HRServer-Exporter/HRServer/bin/Debug/net8.0/horses.json index dd96b24..10a45ce 100644 --- a/HRServer-Exporter/HRServer/bin/Debug/net8.0/horses.json +++ b/HRServer-Exporter/HRServer/bin/Debug/net8.0/horses.json @@ -1 +1,106 @@ -{"17848165":{"id":17848165,"age":5,"name":"Foal Doe 17848165","gender":"Stallion","breed":"Cleveland Bay","link":"https://www.horsereality.com/horses/17848165/foal-doe-17848165","lastDrawnDate":"2024-12-08T20:29:54.3591439+01:00","Summary":{"RelatedIds":["https://www.horsereality.com/horses/12826575/eadgar","https://www.horsereality.com/horses/12826522/mildburg"]},"Training":{"Training":"Basic Training"},"Genetics":{"GP":671,"GeneticPotential":{"Acceleration":66,"Agility":57,"Balance":72,"Bascule":75,"Pulling power":78,"Speed":67,"Sprint":53,"Stamina":72,"Strength":75,"Surefootedness":56},"Disciplines":{"Dressage":204,"Driving":349,"Endurance":270,"Eventing":345,"Flat Racing":258,"Show Jumping":326,"Western Reining":251},"Colors":{"Extension":"? / ?","Agouti":"? / ?","Grey":"? / ?","Creampearl":"? / ?","Dun":"? / ?","Champagne":"? / ?","Silver":"? / ?","Mushroom":"? / ?","Frame":"? / ?","Appaloosa":"? / ?","PATN1":"? / ?","MITF":"? / ?","SW2":"? / ?","KIT":"? / ?"}},"Achievements":{"ShowResults":[],"Conformation":{"Walk":"Good","Trot":"Good","Canter":"Good","Gallop":"Good","Posture":"Good","Head":"Average","Neck":"Good","Back":"Average","Shoulders":"Good","Frontlegs":"Good","Hindquarters":"Average","Socks":"Average"},"ShortConformation":"8G 4A","MaxShowResult":-1,"MinShowResult":-1,"MaxCompetitionResult":-1,"MinCompetitionResult":-1},"Health":{"Health":{"Fertility":"Good","Colic resistance":"Good","Hoof quality":"Good","Back problems":"Excellent","Respiratory disease":"Good","Resistance to lameness":"Excellent"}},"LoadState":{"BasicInfoLoaded":true,"BasicInfoNeedsRefresh":false,"SummaryLoaded":true,"SummaryNeedsRefresh":false,"TrainingLoaded":true,"TrainingNeedsRefresh":false,"GeneticsLoaded":true,"GeneticsNeedsRefresh":false,"AchievementsLoaded":true,"AchievementsNeedsRefresh":false,"HealthLoaded":true,"HealthNeedsRefresh":false}},"17911721":{"id":17911721,"age":4,"name":"Foal Doe 17911721","gender":"Stallion","breed":"Brabant Horse","link":"https://www.horsereality.com/horses/17911721/foal-doe-17911721","lastDrawnDate":"2024-12-08T20:30:25.871593+01:00","Summary":{"RelatedIds":[]},"Training":{"Training":""},"Genetics":{"GP":524,"GeneticPotential":{"Acceleration":39,"Agility":40,"Balance":47,"Bascule":42,"Pulling power":85,"Speed":50,"Sprint":55,"Stamina":66,"Strength":54,"Surefootedness":46},"Disciplines":{"Dressage":141,"Driving":295,"Endurance":216,"Eventing":239,"Flat Racing":210,"Show Jumping":230,"Western Reining":172},"Colors":{"Extension":"? / ?","Agouti":"? / ?","Grey":"? / ?","Creampearl":"n / n","Dun":"nd2 / nd2","Champagne":"? / ?","Silver":"? / ?","Mushroom":"? / ?","Frame":"? / ?","Appaloosa":"? / ?","PATN1":"? / ?","MITF":"? / ?","SW2":"? / ?","KIT":"? / ?"}},"Achievements":{"ShowResults":[],"Conformation":{"Walk":"Good","Trot":"Good","Canter":"Below average","Gallop":"Average","Posture":"Very good","Head":"Good","Neck":"Good","Back":"Good","Shoulders":"Good","Frontlegs":"Good","Hindquarters":"Good","Socks":"Good"},"ShortConformation":"9G 1BA 1A 1VG","MaxShowResult":-1,"MinShowResult":-1,"MaxCompetitionResult":-1,"MinCompetitionResult":-1},"Health":{"Health":{}},"LoadState":{"BasicInfoLoaded":true,"BasicInfoNeedsRefresh":false,"SummaryLoaded":false,"SummaryNeedsRefresh":false,"TrainingLoaded":false,"TrainingNeedsRefresh":false,"GeneticsLoaded":true,"GeneticsNeedsRefresh":false,"AchievementsLoaded":true,"AchievementsNeedsRefresh":false,"HealthLoaded":false,"HealthNeedsRefresh":false}}} \ No newline at end of file +{ + "19331611": { + "id": 19331611, + "age": 6, + "notes": "", + "name": "Flower 8", + "gender": "Mare", + "breed": "Lipizzaner Horse", + "link": "https://www.horsereality.com/horses/19331611/flower-8", + "owner": "Sonnenblume09", + "lastDrawnDate": "2024-12-31T13:03:22.4431613+01:00", + "Summary": { + "RelatedIds": [], + "Conception": "", + "FatherLink": "", + "FatherName": "", + "UltrasoundGender": "" + }, + "Training": { + "Training": "" + }, + "Genetics": { + "GP": 0, + "GeneticPotential": {}, + "Disciplines": { + "Dressage": 0, + "Driving": 0, + "Endurance": 0, + "Eventing": 0, + "Flat Racing": 0, + "Show Jumping": 0, + "Western Reining": 0 + }, + "Colors": { + "Extension": "n/n", + "Agouti": "n/n", + "Grey": "n/n", + "Creampearl": "n/n", + "Dun": "n/n", + "Champagne": "n/n", + "Silver": "n/n", + "Mushroom": "n/n", + "Frame": "n/n", + "Appaloosa": "n/n", + "PATN1": "n/n", + "MITF": "n/n", + "SW2": "n/n", + "KIT": "n/n", + "RAB": "n/n", + "Seal": "n/n", + "Flaxen": "n/n", + "Sooty": "n/n", + "Pangare": "n/n", + "Sabino": "n/n", + "WildBay": "n/n", + "Custom": "" + } + }, + "Achievements": { + "ShowResults": [ + 64.026, + 65.352, + 65.805, + 66.299, + 66.72, + 67.712 + ], + "Conformation": { + "Walk": "Average", + "Trot": "Average", + "Canter": "Average", + "Gallop": "Average", + "Posture": "Average", + "Head": "Average", + "Neck": "Average", + "Back": "Average", + "Shoulders": "Average", + "Frontlegs": "Average", + "Hindquarters": "Good", + "Socks": "Below average" + }, + "ShortConformation": "10A 1G 1BA", + "MaxShowResult": 67.712, + "MinShowResult": 64.026, + "MaxCompetitionResult": -1, + "MinCompetitionResult": -1 + }, + "Health": { + "Health": {} + }, + "LoadState": { + "BasicInfoLoaded": true, + "BasicInfoNeedsRefresh": false, + "SummaryLoaded": false, + "SummaryNeedsRefresh": false, + "TrainingLoaded": false, + "TrainingNeedsRefresh": false, + "GeneticsLoaded": false, + "GeneticsNeedsRefresh": false, + "AchievementsLoaded": true, + "AchievementsNeedsRefresh": false, + "HealthLoaded": false, + "HealthNeedsRefresh": false + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..38c9af4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..e6e8b51 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..3565362 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..0602405 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/CsvHelper.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/CsvHelper.dll new file mode 100644 index 0000000..7a4a0fa Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/CsvHelper.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.deps.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.deps.json new file mode 100644 index 0000000..268ff7a --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.deps.json @@ -0,0 +1,832 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "HRServer/1.0.0": { + "dependencies": { + "CsvHelper": "33.0.1", + "Microsoft.Extensions.Hosting.WindowsServices": "9.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "HRServer.dll": {} + } + }, + "CsvHelper/33.0.1": { + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "assemblyVersion": "33.0.0.0", + "fileVersion": "33.0.1.24" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Json/9.0.0": { + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + } + } + }, + "libraries": { + "HRServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "CsvHelper/33.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "path": "csvhelper/33.0.1", + "hashPath": "csvhelper.33.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "path": "microsoft.extensions.configuration.json/9.0.0", + "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "path": "microsoft.extensions.hosting/9.0.0", + "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "path": "microsoft.extensions.logging.console/9.0.0", + "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "path": "microsoft.extensions.logging.debug/9.0.0", + "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.dll new file mode 100644 index 0000000..0257c06 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.exe b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.exe new file mode 100644 index 0000000..5b614db Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.exe differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.pdb b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.pdb new file mode 100644 index 0000000..03cafae Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.pdb differ diff --git a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.runtimeconfig.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.runtimeconfig.json similarity index 64% rename from HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.runtimeconfig.json rename to HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.runtimeconfig.json index 1dc0145..6a48a7e 100644 --- a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.runtimeconfig.json +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.runtimeconfig.json @@ -7,12 +7,14 @@ "version": "8.0.0" }, { - "name": "Microsoft.WindowsDesktop.App", + "name": "Microsoft.AspNetCore.App", "version": "8.0.0" } ], "configProperties": { - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false } } } \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.staticwebassets.endpoints.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/HRServer.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..5de000c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Binder.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..3853207 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..78764ad Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..ec8833e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..a1e0a4d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..adf0f8b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..12edc4f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..dea10fa Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..405651a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..e988469 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..9aca1e9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..b2e88ec Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..8cd930a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Physical.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..408a0c8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..287fbf3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..ed0bab4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll new file mode 100644 index 0000000..c376245 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..8e0bfd3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..8d27412 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Configuration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..69a9032 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Console.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..107af95 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Console.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Debug.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..a9aa10e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.EventLog.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..95c3d66 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.EventSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..55b4025 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..754fabe Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Logging.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..7fa08d7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Options.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..d5c55a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Options.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..8cb2645 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.OpenApi.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Microsoft.OpenApi.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Diagnostics.DiagnosticSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..bae10b1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Diagnostics.DiagnosticSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..25f8d1f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/System.IO.Pipelines.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.IO.Pipelines.dll new file mode 100644 index 0000000..712f47d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.IO.Pipelines.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..9fd0e06 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..5c04169 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Text.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Text.Json.dll new file mode 100644 index 0000000..f4dd021 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/System.Text.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/appsettings.Development.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/appsettings.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/appsettings.json new file mode 100644 index 0000000..a9038e9 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/appsettings.json @@ -0,0 +1,16 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5180" + } + } + } +} diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.deps.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.deps.json new file mode 100644 index 0000000..768364f --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.deps.json @@ -0,0 +1,791 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {}, + ".NETCoreApp,Version=v8.0/win-x64": { + "HRServer/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting.WindowsServices": "9.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "HRServer.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "runtime": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Json/9.0.0": { + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + } + } + }, + "libraries": { + "HRServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "path": "microsoft.extensions.configuration.json/9.0.0", + "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "path": "microsoft.extensions.hosting/9.0.0", + "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "path": "microsoft.extensions.logging.console/9.0.0", + "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "path": "microsoft.extensions.logging.debug/9.0.0", + "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.dll new file mode 100644 index 0000000..3d4b83d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.dll differ diff --git a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.exe b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.exe similarity index 99% rename from HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.exe rename to HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.exe index a17633c..1c9eeff 100644 Binary files a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.exe and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.exe differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.pdb b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.pdb new file mode 100644 index 0000000..85cf8b0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.runtimeconfig.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.runtimeconfig.json new file mode 100644 index 0000000..6a48a7e --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/HRServer.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..5de000c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Binder.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..3853207 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.CommandLine.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..78764ad Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..ec8833e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.FileExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..a1e0a4d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..adf0f8b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.UserSecrets.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..12edc4f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..dea10fa Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..405651a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.DependencyInjection.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..e988469 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..9aca1e9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Diagnostics.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..b2e88ec Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..8cd930a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Physical.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..408a0c8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileSystemGlobbing.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..287fbf3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..ed0bab4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.WindowsServices.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.WindowsServices.dll new file mode 100644 index 0000000..c376245 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.WindowsServices.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..8e0bfd3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..8d27412 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Configuration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..69a9032 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Console.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..107af95 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Console.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Debug.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..a9aa10e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.EventLog.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..95c3d66 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.EventSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..55b4025 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..754fabe Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Logging.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..7fa08d7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Options.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..d5c55a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Options.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..8cb2645 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.Extensions.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.OpenApi.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Microsoft.OpenApi.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.Swagger.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.SwaggerGen.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.SwaggerUI.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.DiagnosticSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..bae10b1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.DiagnosticSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.EventLog.Messages.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..e6e8b51 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.EventLog.Messages.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..3565362 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.IO.Pipelines.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.IO.Pipelines.dll new file mode 100644 index 0000000..712f47d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.IO.Pipelines.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..0602405 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..5c04169 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Text.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Text.Json.dll new file mode 100644 index 0000000..f4dd021 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/System.Text.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/appsettings.Development.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/appsettings.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/appsettings.json new file mode 100644 index 0000000..a9038e9 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/appsettings.json @@ -0,0 +1,16 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5180" + } + } + } +} diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/web.config b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/web.config new file mode 100644 index 0000000..29fb4d4 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/publish/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..38c9af4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..e6e8b51 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..3565362 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..0602405 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/CsvHelper.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/CsvHelper.dll new file mode 100644 index 0000000..7a4a0fa Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/CsvHelper.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.deps.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.deps.json new file mode 100644 index 0000000..02dbdd7 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.deps.json @@ -0,0 +1,1992 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {}, + ".NETCoreApp,Version=v8.0/win-x64": { + "HRServer/1.0.0": { + "dependencies": { + "CsvHelper": "33.0.1", + "Microsoft.Extensions.Hosting.WindowsServices": "9.0.0", + "Microsoft.NET.ILLink.Tasks": "8.0.11", + "Swashbuckle.AspNetCore": "6.4.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "8.0.11", + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64": "8.0.11" + }, + "runtime": { + "HRServer.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.11": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1124.51707" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.AppContext.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Buffers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Data.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Globalization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Security.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "8.0.1124.51707" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "14.40.33810.0" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "8.0.1124.51707" + }, + "clretwrc.dll": { + "fileVersion": "8.0.1124.51707" + }, + "clrgc.dll": { + "fileVersion": "8.0.1124.51707" + }, + "clrjit.dll": { + "fileVersion": "8.0.1124.51707" + }, + "coreclr.dll": { + "fileVersion": "8.0.1124.51707" + }, + "createdump.exe": { + "fileVersion": "8.0.1124.51707" + }, + "hostfxr.dll": { + "fileVersion": "8.0.1124.51707" + }, + "hostpolicy.dll": { + "fileVersion": "8.0.1124.51707" + }, + "mscordaccore.dll": { + "fileVersion": "8.0.1124.51707" + }, + "mscordaccore_amd64_amd64_8.0.1124.51707.dll": { + "fileVersion": "8.0.1124.51707" + }, + "mscordbi.dll": { + "fileVersion": "8.0.1124.51707" + }, + "mscorrc.dll": { + "fileVersion": "8.0.1124.51707" + }, + "msquic.dll": { + "fileVersion": "2.3.5.0" + } + } + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64/8.0.11": { + "runtime": { + "Microsoft.AspNetCore.Antiforgery.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.BearerToken.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.Cookies.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.OAuth.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authorization.Policy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Endpoints.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Server.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.CookiePolicy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Cors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.DataProtection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.DataProtection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Diagnostics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HostFiltering.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Hosting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Html.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Connections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Results.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HttpLogging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HttpOverrides.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HttpsPolicy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Identity.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Localization.Routing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Cors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Razor.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.RazorPages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.OutputCaching.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Razor.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Razor.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.RequestDecompression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.ResponseCaching.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.ResponseCompression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Rewrite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Routing.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Routing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.HttpSys.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.IIS.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.IISIntegration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Session.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.StaticFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.WebUtilities.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Configuration.Ini.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Configuration.KeyPerFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Configuration.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.47404" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Features.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.FileProviders.Composite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.FileProviders.Embedded.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Logging.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.47404" + }, + "Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Options.DataAnnotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.WebEncoders.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.JSInterop.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "native": { + "aspnetcorev2_inprocess.dll": { + "fileVersion": "18.0.24295.11" + } + } + }, + "CsvHelper/33.0.1": { + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "assemblyVersion": "33.0.0.0", + "fileVersion": "33.0.1.24" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.11": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "runtime": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Json/9.0.0": { + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + } + } + }, + "libraries": { + "HRServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.11": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64/8.0.11": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "CsvHelper/33.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "path": "csvhelper/33.0.1", + "hashPath": "csvhelper.33.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "path": "microsoft.extensions.configuration.json/9.0.0", + "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "path": "microsoft.extensions.hosting/9.0.0", + "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "path": "microsoft.extensions.logging.console/9.0.0", + "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "path": "microsoft.extensions.logging.debug/9.0.0", + "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zk5lnZrYJgtuJG8L4v17Ej8rZ3PUcR2iweNV08BaO5LbYHIi2wNaVNcJoLxvqgQdnjLlKnCCfVGLDr6QHeAarQ==", + "path": "microsoft.net.illink.tasks/8.0.11", + "hashPath": "microsoft.net.illink.tasks.8.0.11.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.dll new file mode 100644 index 0000000..e7cd372 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.exe b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.exe new file mode 100644 index 0000000..5b614db Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.exe differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.pdb b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.pdb new file mode 100644 index 0000000..a6d6e3e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.runtimeconfig.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.runtimeconfig.json new file mode 100644 index 0000000..e7eb36d --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.11" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.11" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.staticwebassets.endpoints.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/HRServer.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Antiforgery.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Antiforgery.dll new file mode 100644 index 0000000..64ca1e7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 0000000..17b551c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.BearerToken.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.BearerToken.dll new file mode 100644 index 0000000..c8ab370 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.BearerToken.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Cookies.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100644 index 0000000..bca4330 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Core.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 0000000..c4f2837 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.OAuth.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100644 index 0000000..65aae51 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 0000000..5390346 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authentication.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authorization.Policy.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 0000000..70bc04d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authorization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..4a7366b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Authorization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Authorization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 0000000..c3e9455 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Endpoints.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Endpoints.dll new file mode 100644 index 0000000..a9394e5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Endpoints.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Forms.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..7dca97d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Server.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Server.dll new file mode 100644 index 0000000..03d8482 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Web.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..68197ea Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..ae5cbf1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Components.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..640aafc Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.CookiePolicy.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100644 index 0000000..4b5a6cf Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cors.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 0000000..c467ef2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cors.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cryptography.Internal.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100644 index 0000000..3e58473 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100644 index 0000000..c2f4f8f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100644 index 0000000..6dbf6d7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.Extensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100644 index 0000000..4154673 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.dll new file mode 100644 index 0000000..8856112 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..3e4e36e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100644 index 0000000..f2bfc48 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 0000000..ff40ce2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HostFiltering.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 0000000..cfa59a7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 0000000..c828208 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 0000000..ae49ffd Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 0000000..3ed1cb9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Html.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100644 index 0000000..eacdeb9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 0000000..aaff582 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Connections.Common.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 0000000..4b28858 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Connections.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Connections.dll new file mode 100644 index 0000000..e243459 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Extensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 0000000..cd61d02 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Features.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 0000000..565cbe8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Results.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Results.dll new file mode 100644 index 0000000..8111c9e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.Results.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.dll new file mode 100644 index 0000000..f972e14 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Http.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpLogging.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpLogging.dll new file mode 100644 index 0000000..e44ff1d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpLogging.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpOverrides.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 0000000..fd82be4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpsPolicy.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100644 index 0000000..4f34940 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Identity.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Identity.dll new file mode 100644 index 0000000..3fca286 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Identity.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Localization.Routing.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100644 index 0000000..303de25 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Localization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Localization.dll new file mode 100644 index 0000000..d835edb Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Localization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Metadata.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..f6342f4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Metadata.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 0000000..b7c6502 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 0000000..379bd96 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Core.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 0000000..bb4a4c0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Cors.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 0000000..cd8a027 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 0000000..3ae08e5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100644 index 0000000..61ae1e0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100644 index 0000000..fe4f02f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Localization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100644 index 0000000..f4c7ea6 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Razor.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100644 index 0000000..01d1c96 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.RazorPages.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100644 index 0000000..254a448 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100644 index 0000000..55f777a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100644 index 0000000..f6b4c44 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 0000000..0971688 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Mvc.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.OutputCaching.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.OutputCaching.dll new file mode 100644 index 0000000..8752bad Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.OutputCaching.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.RateLimiting.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.RateLimiting.dll new file mode 100644 index 0000000..d173776 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.RateLimiting.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Razor.Runtime.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100644 index 0000000..447f0d8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Razor.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Razor.dll new file mode 100644 index 0000000..7000bab Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Razor.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.RequestDecompression.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.RequestDecompression.dll new file mode 100644 index 0000000..76d4ff2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.RequestDecompression.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100644 index 0000000..1490052 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCaching.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100644 index 0000000..e6eb984 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCompression.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100644 index 0000000..5e56208 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Rewrite.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Rewrite.dll new file mode 100644 index 0000000..eb084a7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Routing.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 0000000..99b7e70 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Routing.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 0000000..27c234a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Routing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.HttpSys.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100644 index 0000000..a84ecf1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.IIS.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 0000000..ed0b331 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.IISIntegration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 0000000..a929687 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 0000000..33cfdcf Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100644 index 0000000..fab9b9b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100644 index 0000000..c708ef8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 0000000..ae37c5c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 0000000..41d84bc Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Session.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Session.dll new file mode 100644 index 0000000..7a0dfe4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.Session.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Common.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..4d9e357 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Core.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100644 index 0000000..8aa54b4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 0000000..3c283f5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.dll new file mode 100644 index 0000000..bd640b7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.SignalR.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.StaticFiles.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 0000000..d3da7da Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.WebSockets.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.WebSockets.dll new file mode 100644 index 0000000..84bd73a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.WebUtilities.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 0000000..296f8a5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.dll new file mode 100644 index 0000000..4de9c55 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.AspNetCore.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.CSharp.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..52babb5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.CSharp.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..03f5288 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Caching.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100644 index 0000000..3cdd788 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Caching.Memory.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..0fb5231 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..5de000c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Binder.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..3853207 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.CommandLine.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..78764ad Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..ec8833e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.FileExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..a1e0a4d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Ini.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Ini.dll new file mode 100644 index 0000000..8624bb4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..adf0f8b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.KeyPerFile.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100644 index 0000000..94793a6 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.UserSecrets.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..12edc4f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Xml.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Xml.dll new file mode 100644 index 0000000..4549b18 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..dea10fa Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..405651a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.DependencyInjection.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..e988469 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..9aca1e9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100644 index 0000000..1e1b892 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100644 index 0000000..dc3641e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..b2e88ec Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Features.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..4930acf Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Features.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..8cd930a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Composite.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..5a24e2f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Embedded.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..f52c2e8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Physical.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..408a0c8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileSystemGlobbing.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..287fbf3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..ed0bab4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.WindowsServices.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.WindowsServices.dll new file mode 100644 index 0000000..c376245 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.WindowsServices.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..8e0bfd3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Http.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Http.dll new file mode 100644 index 0000000..ce3017c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Http.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Identity.Core.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Identity.Core.dll new file mode 100644 index 0000000..0f24d78 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Identity.Core.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Identity.Stores.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Identity.Stores.dll new file mode 100644 index 0000000..8cd60a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Localization.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..45197c5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Localization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..69c5c88 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Localization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Abstractions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..8d27412 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Configuration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..69a9032 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Console.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..107af95 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Console.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Debug.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..a9aa10e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.EventLog.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..95c3d66 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.EventSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..55b4025 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.TraceSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100644 index 0000000..649e2f3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..754fabe Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Logging.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.ObjectPool.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..5068708 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.ObjectPool.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..7fa08d7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.DataAnnotations.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100644 index 0000000..413f13e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..d5c55a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Options.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..8cb2645 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.WebEncoders.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.WebEncoders.dll new file mode 100644 index 0000000..f3d78ab Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Extensions.WebEncoders.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.JSInterop.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.JSInterop.dll new file mode 100644 index 0000000..3dfdd2c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.JSInterop.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Net.Http.Headers.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Net.Http.Headers.dll new file mode 100644 index 0000000..ad1c7e9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Net.Http.Headers.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.OpenApi.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.OpenApi.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.VisualBasic.Core.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..5fde061 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.VisualBasic.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..cef01fd Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.VisualBasic.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Win32.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..37c27af Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Win32.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Win32.Registry.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..a577b3c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Microsoft.Win32.Registry.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.Swagger.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.SwaggerGen.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.SwaggerUI.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.AppContext.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.AppContext.dll new file mode 100644 index 0000000..72f6be0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.AppContext.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Buffers.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Buffers.dll new file mode 100644 index 0000000..51be487 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Buffers.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Concurrent.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..fbe6363 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Concurrent.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Immutable.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..fac0e4b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Immutable.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.NonGeneric.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..309cd12 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.NonGeneric.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Specialized.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..5c7ac28 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.Specialized.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.dll new file mode 100644 index 0000000..9fe8e7b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Collections.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.Annotations.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..fd6c87b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.Annotations.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.DataAnnotations.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..a3b158f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.EventBasedAsync.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..5731a5c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..67c6f2c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.TypeConverter.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..6003d5d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.dll new file mode 100644 index 0000000..d5a9f7c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ComponentModel.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Configuration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Configuration.dll new file mode 100644 index 0000000..30ba2d9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Console.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Console.dll new file mode 100644 index 0000000..a53ee4c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Console.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Core.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Core.dll new file mode 100644 index 0000000..dc3e5b5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Core.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.Common.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.Common.dll new file mode 100644 index 0000000..04f558e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.Common.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.DataSetExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..3d4b681 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.DataSetExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.dll new file mode 100644 index 0000000..6f352d0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Data.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Contracts.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..91d447a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Contracts.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Debug.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..601db92 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Debug.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.DiagnosticSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..bae10b1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.EventLog.Messages.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..e6e8b51 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.EventLog.Messages.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..3565362 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.FileVersionInfo.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..7d248b0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Process.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..a0bfee8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Process.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.StackTrace.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..63d3026 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.StackTrace.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..835f430 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Tools.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..61212be Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Tools.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.TraceSource.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..258bd13 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.TraceSource.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Tracing.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..94bea1f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Diagnostics.Tracing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Drawing.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..e2efe84 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Drawing.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Drawing.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Drawing.dll new file mode 100644 index 0000000..80fe08f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Drawing.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Dynamic.Runtime.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..d1b6e7d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Dynamic.Runtime.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Formats.Asn1.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..e60a6d2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Formats.Asn1.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Formats.Tar.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Formats.Tar.dll new file mode 100644 index 0000000..ce022e4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Formats.Tar.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.Calendars.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..4c4a48e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.Calendars.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.Extensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..d9ce051 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.dll new file mode 100644 index 0000000..d17662f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Globalization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.Brotli.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..d8945c9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.Brotli.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.FileSystem.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..98fd38b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.FileSystem.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.Native.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.Native.dll new file mode 100644 index 0000000..a00e486 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.Native.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.ZipFile.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..a7030cb Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.ZipFile.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.dll new file mode 100644 index 0000000..bbdba80 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Compression.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.AccessControl.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..d56609d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.DriveInfo.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..d8c2caf Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..d403df9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.Watcher.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..d4d7a31 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..3c36e71 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.FileSystem.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.IsolatedStorage.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..856ba3f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.IsolatedStorage.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.MemoryMappedFiles.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..3291971 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipelines.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipelines.dll new file mode 100644 index 0000000..712f47d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipelines.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipes.AccessControl.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..11d9fb9 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipes.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..a1ccd88 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.Pipes.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.UnmanagedMemoryStream.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..b8ce2ae Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.dll new file mode 100644 index 0000000..226766b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.IO.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Expressions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..83856ce Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Expressions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Parallel.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..39b0f96 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Parallel.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Queryable.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..cad95f0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.Queryable.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.dll new file mode 100644 index 0000000..26803e2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Linq.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Memory.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Memory.dll new file mode 100644 index 0000000..2f2692c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Memory.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Http.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..cc7b8bf Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Http.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Http.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Http.dll new file mode 100644 index 0000000..b625cc7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Http.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.HttpListener.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..b2c93a4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.HttpListener.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Mail.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Mail.dll new file mode 100644 index 0000000..7b06b3c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Mail.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.NameResolution.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..5108157 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.NameResolution.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.NetworkInformation.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..2195734 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.NetworkInformation.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Ping.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Ping.dll new file mode 100644 index 0000000..3626762 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Ping.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..e4c7d51 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Quic.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Quic.dll new file mode 100644 index 0000000..03a86bb Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Quic.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Requests.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Requests.dll new file mode 100644 index 0000000..0681ce4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Requests.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Security.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Security.dll new file mode 100644 index 0000000..289147c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Security.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.ServicePoint.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..d63fbe7 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.ServicePoint.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Sockets.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..0a06462 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.Sockets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebClient.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..b60f38c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebClient.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebHeaderCollection.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..eab4317 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebHeaderCollection.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebProxy.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..df8cc18 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebProxy.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebSockets.Client.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..75f958f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebSockets.Client.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebSockets.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..31e348b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.WebSockets.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.dll new file mode 100644 index 0000000..a32e268 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Net.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Numerics.Vectors.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..ba2a4b2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Numerics.Vectors.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Numerics.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Numerics.dll new file mode 100644 index 0000000..936acfe Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Numerics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ObjectModel.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ObjectModel.dll new file mode 100644 index 0000000..403d623 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ObjectModel.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.CoreLib.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..b133648 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.CoreLib.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.DataContractSerialization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..8ffcad1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.DataContractSerialization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Uri.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Uri.dll new file mode 100644 index 0000000..01fd983 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Uri.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Xml.Linq.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..ac090ea Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Xml.Linq.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Xml.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Xml.dll new file mode 100644 index 0000000..358ff7f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Private.Xml.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.DispatchProxy.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..cd748a4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.DispatchProxy.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.ILGeneration.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..2bd410c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.Lightweight.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..4050fef Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..008c416 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Emit.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Extensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..7f70673 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Metadata.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..61ba266 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Metadata.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..5314512 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.TypeExtensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..30b4536 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.TypeExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.dll new file mode 100644 index 0000000..cb8bebf Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Reflection.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.Reader.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..27d1e7f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.Reader.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.ResourceManager.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..fe3611c Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.ResourceManager.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.Writer.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..f4200cb Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Resources.Writer.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..fd17e6d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.CompilerServices.VisualC.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..4b0f81e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Extensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..62735f3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Handles.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..9d18142 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Handles.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.JavaScript.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..7405c01 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..65f9c89 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..d3a25d8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.InteropServices.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Intrinsics.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..28615cc Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Intrinsics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Loader.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..12f9b6d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Loader.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Numerics.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..27dfb03 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Numerics.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Formatters.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..ac7b657 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..16133ec Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..2fa89da Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Xml.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..0288eec Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..cd6f4eb Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.Serialization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.dll new file mode 100644 index 0000000..dd68232 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Runtime.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.AccessControl.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..4df8325 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.AccessControl.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Claims.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Claims.dll new file mode 100644 index 0000000..3f7ed2d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Claims.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Algorithms.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..4fb5e42 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Cng.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..64646f0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Cng.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Csp.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..ea8ff12 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Csp.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Encoding.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..a2a677a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.OpenSsl.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..aba6a31 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Pkcs.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..b8a353f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Pkcs.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Primitives.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..07a2746 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.X509Certificates.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..bb1f04f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Xml.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..4ae1f97 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.Xml.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.dll new file mode 100644 index 0000000..017acfb Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Cryptography.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Principal.Windows.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..d1a9f7a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Principal.Windows.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Principal.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Principal.dll new file mode 100644 index 0000000..a0b4e09 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.Principal.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.SecureString.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..3f36e78 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.SecureString.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.dll new file mode 100644 index 0000000..4b55a95 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Security.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceModel.Web.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..934960d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceModel.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..0602405 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceProcess.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..5f79fd5 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ServiceProcess.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.CodePages.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..a8b266d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.CodePages.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.Extensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..e47861d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..8e918b3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encoding.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..5c04169 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Json.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Json.dll new file mode 100644 index 0000000..f4dd021 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.Json.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.RegularExpressions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..7967db2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Text.RegularExpressions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Channels.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..9797bda Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Channels.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Overlapped.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..6c6ba6b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Overlapped.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.RateLimiting.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.RateLimiting.dll new file mode 100644 index 0000000..0004cf3 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.RateLimiting.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Dataflow.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..98dfe2e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Extensions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..37c9ade Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Parallel.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..bf22102 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..4e4f47f Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Tasks.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Thread.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..8b0cda2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Thread.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.ThreadPool.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..d53b50e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.ThreadPool.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Timer.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..f45175d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.Timer.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.dll new file mode 100644 index 0000000..9177ff2 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Threading.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Transactions.Local.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..0042ae4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Transactions.Local.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Transactions.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Transactions.dll new file mode 100644 index 0000000..91a84b0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Transactions.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ValueTuple.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ValueTuple.dll new file mode 100644 index 0000000..e8c92c1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.ValueTuple.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Web.HttpUtility.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..0532e0e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Web.HttpUtility.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Web.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Web.dll new file mode 100644 index 0000000..7634936 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Web.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Windows.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Windows.dll new file mode 100644 index 0000000..afdc5a8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Windows.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.Linq.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..fbbc14b Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.Linq.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.ReaderWriter.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..7d52635 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.ReaderWriter.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.Serialization.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..3685086 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.Serialization.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XDocument.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..d37f816 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XDocument.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XPath.XDocument.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..7505026 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XPath.XDocument.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XPath.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..7e68049 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XPath.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XmlDocument.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..cf9a1c1 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XmlDocument.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XmlSerializer.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..cef93ae Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.XmlSerializer.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.dll new file mode 100644 index 0000000..fcfe603 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.Xml.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.dll new file mode 100644 index 0000000..50f5b9d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/System.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/WindowsBase.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/WindowsBase.dll new file mode 100644 index 0000000..854a222 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/WindowsBase.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/appsettings.Development.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/appsettings.json b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/appsettings.json new file mode 100644 index 0000000..a9038e9 --- /dev/null +++ b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/appsettings.json @@ -0,0 +1,16 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5180" + } + } + } +} diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/aspnetcorev2_inprocess.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/aspnetcorev2_inprocess.dll new file mode 100644 index 0000000..b7aea0d Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/aspnetcorev2_inprocess.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clretwrc.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clretwrc.dll new file mode 100644 index 0000000..d884ed0 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clretwrc.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clrgc.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clrgc.dll new file mode 100644 index 0000000..396aa7e Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clrgc.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clrjit.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clrjit.dll new file mode 100644 index 0000000..c950e06 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/clrjit.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/coreclr.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/coreclr.dll new file mode 100644 index 0000000..304c522 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/coreclr.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/createdump.exe b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/createdump.exe new file mode 100644 index 0000000..1a1ed63 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/createdump.exe differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/hostfxr.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/hostfxr.dll new file mode 100644 index 0000000..a0e567a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/hostfxr.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/hostpolicy.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/hostpolicy.dll new file mode 100644 index 0000000..f8debf8 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/hostpolicy.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordaccore.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordaccore.dll new file mode 100644 index 0000000..a66f7f4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordaccore.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordaccore_amd64_amd64_8.0.1124.51707.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordaccore_amd64_amd64_8.0.1124.51707.dll new file mode 100644 index 0000000..a66f7f4 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordaccore_amd64_amd64_8.0.1124.51707.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordbi.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordbi.dll new file mode 100644 index 0000000..564768a Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscordbi.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscorlib.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscorlib.dll new file mode 100644 index 0000000..e5fca84 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscorlib.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscorrc.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscorrc.dll new file mode 100644 index 0000000..b865c91 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/mscorrc.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/msquic.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/msquic.dll new file mode 100644 index 0000000..2cfcc11 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/msquic.dll differ diff --git a/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/netstandard.dll b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/netstandard.dll new file mode 100644 index 0000000..ccbba51 Binary files /dev/null and b/HRServer-Exporter/HRServer/bin/Release/net8.0/win-x64/netstandard.dll differ diff --git a/HRServer-Exporter/HRServer/horses.json b/HRServer-Exporter/HRServer/horses.json deleted file mode 100644 index 9da8e53..0000000 --- a/HRServer-Exporter/HRServer/horses.json +++ /dev/null @@ -1 +0,0 @@ -{"17848165":{"id":17848165,"age":5,"name":"Foal Doe 17848165","gender":"Stallion","breed":"Cleveland Bay","link":"https://www.horsereality.com/horses/17848165/foal-doe-17848165","lastDrawnDate":"2024-12-08T20:29:54.3591439+01:00","Summary":{"RelatedIds":["https://www.horsereality.com/horses/12826575/eadgar","https://www.horsereality.com/horses/12826522/mildburg"]},"Training":{"Training":"Basic Training"},"Genetics":{"GP":671,"GeneticPotential":{"Acceleration":66,"Agility":57,"Balance":72,"Bascule":75,"Pulling power":78,"Speed":67,"Sprint":53,"Stamina":72,"Strength":75,"Surefootedness":56},"Disciplines":{"Dressage":204,"Driving":349,"Endurance":270,"Eventing":345,"Flat Racing":258,"Show Jumping":326,"Western Reining":251},"Colors":{"Extension":"? / ?","Agouti":"? / ?","Grey":"? / ?","Creampearl":"? / ?","Dun":"? / ?","Champagne":"? / ?","Silver":"? / ?","Mushroom":"? / ?","Frame":"? / ?","Appaloosa":"? / ?","PATN1":"? / ?","MITF":"? / ?","SW2":"? / ?","KIT":"? / ?"}},"Achievements":{"ShowResults":[],"Conformation":{"Walk":"Good","Trot":"Good","Canter":"Good","Gallop":"Good","Posture":"Good","Head":"Average","Neck":"Good","Back":"Average","Shoulders":"Good","Frontlegs":"Good","Hindquarters":"Average","Socks":"Average"},"ShortConformation":"8G 4A","MaxShowResult":-1,"MinShowResult":-1,"MaxCompetitionResult":-1,"MinCompetitionResult":-1},"Health":{"Health":{"Fertility":"Good","Colic resistance":"Good","Hoof quality":"Good","Back problems":"Excellent","Respiratory disease":"Good","Resistance to lameness":"Excellent"}},"LoadState":{"BasicInfoLoaded":true,"BasicInfoNeedsRefresh":false,"SummaryLoaded":true,"SummaryNeedsRefresh":false,"TrainingLoaded":true,"TrainingNeedsRefresh":false,"GeneticsLoaded":true,"GeneticsNeedsRefresh":false,"AchievementsLoaded":true,"AchievementsNeedsRefresh":false,"HealthLoaded":true,"HealthNeedsRefresh":false}},"17911721":{"id":17911721,"age":4,"name":"Foal Doe 17911721","gender":"Stallion","breed":"Brabant Horse","link":"https://www.horsereality.com/horses/17911721/foal-doe-17911721","lastDrawnDate":"2024-12-08T20:30:25.871593+01:00","Summary":{"RelatedIds":["https://www.horsereality.com/horses/12826711/gaetan-van-het-wilgenbos","https://www.horsereality.com/horses/12826643/elodie-van-de-perengaard"]},"Training":{"Training":"Basic Training"},"Genetics":{"GP":524,"GeneticPotential":{"Acceleration":39,"Agility":40,"Balance":47,"Bascule":42,"Pulling power":85,"Speed":50,"Sprint":55,"Stamina":66,"Strength":54,"Surefootedness":46},"Disciplines":{"Dressage":141,"Driving":295,"Endurance":216,"Eventing":239,"Flat Racing":210,"Show Jumping":230,"Western Reining":172},"Colors":{"Extension":"? / ?","Agouti":"? / ?","Grey":"? / ?","Creampearl":"n / n","Dun":"nd2 / nd2","Champagne":"? / ?","Silver":"? / ?","Mushroom":"? / ?","Frame":"? / ?","Appaloosa":"? / ?","PATN1":"? / ?","MITF":"? / ?","SW2":"? / ?","KIT":"? / ?"}},"Achievements":{"ShowResults":[],"Conformation":{"Walk":"Good","Trot":"Good","Canter":"Below average","Gallop":"Average","Posture":"Very good","Head":"Good","Neck":"Good","Back":"Good","Shoulders":"Good","Frontlegs":"Good","Hindquarters":"Good","Socks":"Good"},"ShortConformation":"9G 1BA 1A 1VG","MaxShowResult":-1,"MinShowResult":-1,"MaxCompetitionResult":-1,"MinCompetitionResult":-1},"Health":{"Health":{"Fertility":"Good","Colic resistance":"Good","Hoof quality":"Good","Back problems":"Good","Respiratory disease":"Excellent","Resistance to lameness":"Excellent"}},"LoadState":{"BasicInfoLoaded":true,"BasicInfoNeedsRefresh":false,"SummaryLoaded":true,"SummaryNeedsRefresh":false,"TrainingLoaded":true,"TrainingNeedsRefresh":false,"GeneticsLoaded":true,"GeneticsNeedsRefresh":false,"AchievementsLoaded":true,"AchievementsNeedsRefresh":false,"HealthLoaded":true,"HealthNeedsRefresh":false}},"17529173":{"id":17529173,"age":6,"name":"raus7ju vtu5rgbz6fhj","gender":"Stallion","breed":"Friesian Horse","link":"https://www.horsereality.com/horses/17529173/raus7ju-vtu5rgbz6fhj","lastDrawnDate":"2024-12-08T20:37:10.4700164+01:00","Summary":{"RelatedIds":["https://www.horsereality.com/horses/14954126/fredericks-red","https://www.horsereality.com/horses/16757982/frozen-riot","https://www.horsereality.com/horses/10694550/lestat","https://www.horsereality.com/horses/12776872/kimiras-crown-ch-sv","https://www.horsereality.com/horses/12505394/renegade-riot","https://www.horsereality.com/horses/15839906/valerie","https://www.horsereality.com/horses/6362038/lancelot--85-911-92-713","https://www.horsereality.com/horses/8183459/akasha-92-0-selling","https://www.horsereality.com/horses/7884793/bastiaan-fan-39-e-baeltzedir","https://www.horsereality.com/horses/12266979/512-11-1-0-0","https://www.horsereality.com/horses/10460708/a-589-hot-riot-93-592","https://www.horsereality.com/horses/11036448/lobo-maleia-in-the-rough","https://www.horsereality.com/horses/14808141/584-solar-rose","https://www.horsereality.com/horses/14684148/dd-martina-sell"]},"Training":{"Training":"Basic Training"},"Genetics":{"GP":536,"GeneticPotential":{"Acceleration":53,"Agility":62,"Balance":81,"Bascule":39,"Pulling power":55,"Speed":44,"Sprint":49,"Stamina":55,"Strength":55,"Surefootedness":43},"Disciplines":{"Dressage":198,"Driving":271,"Endurance":197,"Eventing":262,"Flat Racing":201,"Show Jumping":258,"Western Reining":239},"Colors":{"Extension":"E / e","Agouti":"a / a","Grey":"g / g","Creampearl":"n / n","Dun":"nd2 / nd2","Champagne":"ch / ch","Silver":"z / z","Mushroom":"n / n","Frame":"n / n","Appaloosa":"lp / lp","PATN1":"patn1 / patn1","MITF":"n / n","SW2":"sw2 / sw2","KIT":"n / n"}},"Achievements":{"ShowResults":[],"Conformation":{"Walk":"Very good","Trot":"Very good","Canter":"Very good","Gallop":"Very good","Posture":"Very good","Head":"Very good","Neck":"Very good","Back":"Very good","Shoulders":"Good","Frontlegs":"Very good","Hindquarters":"Very good","Socks":"Good"},"ShortConformation":"10VG 2G","MaxShowResult":81.912,"MinShowResult":81.912,"MaxCompetitionResult":-1,"MinCompetitionResult":-1},"Health":{"Health":{"Fertility":"Good","Colic resistance":"Good","Hoof quality":"Good","Back problems":"Good","Respiratory disease":"Excellent","Resistance to lameness":"Excellent"}},"LoadState":{"BasicInfoLoaded":true,"BasicInfoNeedsRefresh":false,"SummaryLoaded":true,"SummaryNeedsRefresh":false,"TrainingLoaded":true,"TrainingNeedsRefresh":false,"GeneticsLoaded":true,"GeneticsNeedsRefresh":false,"AchievementsLoaded":true,"AchievementsNeedsRefresh":false,"HealthLoaded":true,"HealthNeedsRefresh":false}},"19055499":{"id":19055499,"age":6,"name":"Foal Doe 19055499","gender":"Mare","breed":"Akhal-Teke","link":"https://www.horsereality.com/horses/19055499/foal-doe-19055499","lastDrawnDate":"2024-12-08T20:39:36.6964683+01:00","Summary":{"RelatedIds":[]},"Training":{"Training":""},"Genetics":{"GP":0,"GeneticPotential":{},"Disciplines":{"Dressage":0,"Driving":0,"Endurance":0,"Eventing":0,"Flat Racing":0,"Show Jumping":0,"Western Reining":0},"Colors":{"Extension":"","Agouti":"","Grey":"","Creampearl":"","Dun":"","Champagne":"","Silver":"","Mushroom":"","Frame":"","Appaloosa":"","PATN1":"","MITF":"","SW2":"","KIT":"","RAB":"","Seal":"","Flaxen":""}},"Achievements":{"ShowResults":[],"Conformation":{"Walk":"Average","Trot":"Average","Canter":"Good","Gallop":"Below average","Posture":"Good","Head":"Average","Neck":"Good","Back":"Average","Shoulders":"Average","Frontlegs":"Good","Hindquarters":"Below average","Socks":"Average"},"ShortConformation":"6A 4G 2BA","MaxShowResult":-1,"MinShowResult":-1,"MaxCompetitionResult":-1,"MinCompetitionResult":-1},"Health":{"Health":{}},"LoadState":{"BasicInfoLoaded":true,"BasicInfoNeedsRefresh":false,"SummaryLoaded":false,"SummaryNeedsRefresh":false,"TrainingLoaded":false,"TrainingNeedsRefresh":false,"GeneticsLoaded":false,"GeneticsNeedsRefresh":false,"AchievementsLoaded":true,"AchievementsNeedsRefresh":false,"HealthLoaded":false,"HealthNeedsRefresh":false}}} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/ApiEndpoints.json b/HRServer-Exporter/HRServer/obj/Debug/net8.0/ApiEndpoints.json index 83f20cb..ce004e4 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/ApiEndpoints.json +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/ApiEndpoints.json @@ -1,4 +1,20 @@ [ + { + "ContainingType": "HRServer.Controllers.HorseController", + "Method": "DeleteHorse", + "RelativePath": "api/deleteHorse/{id}", + "HttpMethod": "DELETE", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "id", + "Type": "System.UInt64", + "IsRequired": true + } + ], + "ReturnTypes": [] + }, { "ContainingType": "HRServer.Controllers.HorseController", "Method": "GetHorse", @@ -15,6 +31,22 @@ ], "ReturnTypes": [] }, + { + "ContainingType": "HRServer.Controllers.HorseController", + "Method": "GetHorseColors", + "RelativePath": "api/getHorse/{id}/Colors", + "HttpMethod": "GET", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "id", + "Type": "System.UInt64", + "IsRequired": true + } + ], + "ReturnTypes": [] + }, { "ContainingType": "HRServer.Controllers.HorseController", "Method": "GetHorseLoadState", @@ -31,6 +63,22 @@ ], "ReturnTypes": [] }, + { + "ContainingType": "HRServer.Controllers.HorseController", + "Method": "GetHorseNotes", + "RelativePath": "api/getHorse/{id}/Notes", + "HttpMethod": "GET", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "id", + "Type": "System.UInt64", + "IsRequired": true + } + ], + "ReturnTypes": [] + }, { "ContainingType": "HRServer.Controllers.HorseController", "Method": "Ping", @@ -127,8 +175,8 @@ }, { "ContainingType": "HRServer.Controllers.HorseController", - "Method": "UpdateHorsePedigree", - "RelativePath": "api/updateHorse/{id}/Pedigree", + "Method": "UpdateHorseSummary", + "RelativePath": "api/updateHorse/{id}/Summary", "HttpMethod": "POST", "IsController": true, "Order": 0, diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/EndpointInfo/HRServer.OpenApiFiles.cache b/HRServer-Exporter/HRServer/obj/Debug/net8.0/EndpointInfo/HRServer.OpenApiFiles.cache new file mode 100644 index 0000000..031cc87 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/EndpointInfo/HRServer.OpenApiFiles.cache @@ -0,0 +1 @@ +HRServer.json diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/EndpointInfo/HRServer.json b/HRServer-Exporter/HRServer/obj/Debug/net8.0/EndpointInfo/HRServer.json new file mode 100644 index 0000000..eeb818c --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/EndpointInfo/HRServer.json @@ -0,0 +1,622 @@ +{ + "openapi": "3.0.1", + "info": { + "title": "HRServer", + "version": "1.0" + }, + "paths": { + "/api/ping": { + "get": { + "tags": [ + "Horse" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/deleteHorse/{id}": { + "delete": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/getHorse/{id}": { + "get": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/getHorse/{id}/LoadState": { + "get": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/updateHorse/{id}/BasicData": { + "post": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Horse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/Horse" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/Horse" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/updateHorse/{id}/Summary": { + "post": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HorseSummary" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/HorseSummary" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/HorseSummary" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/updateHorse/{id}/Training": { + "post": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HorseTraining" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/HorseTraining" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/HorseTraining" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/updateHorse/{id}/Health": { + "post": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HorseHealth" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/HorseHealth" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/HorseHealth" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/getHorse/{id}/Colors": { + "get": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/updateHorse/{id}/Genetics": { + "post": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HorseGenetics" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/HorseGenetics" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/HorseGenetics" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/getHorse/{id}/Notes": { + "get": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/updateHorse/{id}/Achievements": { + "post": { + "tags": [ + "Horse" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HorseAchievements" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/HorseAchievements" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/HorseAchievements" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + } + }, + "components": { + "schemas": { + "DataLoadState": { + "type": "object", + "properties": { + "basicInfoLoaded": { + "type": "boolean" + }, + "basicInfoNeedsRefresh": { + "type": "boolean" + }, + "summaryLoaded": { + "type": "boolean" + }, + "summaryNeedsRefresh": { + "type": "boolean" + }, + "trainingLoaded": { + "type": "boolean" + }, + "trainingNeedsRefresh": { + "type": "boolean" + }, + "geneticsLoaded": { + "type": "boolean" + }, + "geneticsNeedsRefresh": { + "type": "boolean" + }, + "achievementsLoaded": { + "type": "boolean" + }, + "achievementsNeedsRefresh": { + "type": "boolean" + }, + "healthLoaded": { + "type": "boolean" + }, + "healthNeedsRefresh": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "Horse": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "age": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "notes": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "gender": { + "type": "string", + "nullable": true + }, + "breed": { + "type": "string", + "nullable": true + }, + "link": { + "type": "string", + "nullable": true + }, + "owner": { + "type": "string", + "nullable": true + }, + "lastDrawnDate": { + "type": "string", + "format": "date-time" + }, + "summary": { + "$ref": "#/components/schemas/HorseSummary" + }, + "training": { + "$ref": "#/components/schemas/HorseTraining" + }, + "genetics": { + "$ref": "#/components/schemas/HorseGenetics" + }, + "achievements": { + "$ref": "#/components/schemas/HorseAchievements" + }, + "health": { + "$ref": "#/components/schemas/HorseHealth" + }, + "loadState": { + "$ref": "#/components/schemas/DataLoadState" + } + }, + "additionalProperties": false + }, + "HorseAchievements": { + "type": "object", + "properties": { + "ShowResults": { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "nullable": true + }, + "Conformation": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "nullable": true + }, + "ShortConformation": { + "type": "string", + "nullable": true + }, + "MaxShowResult": { + "type": "number", + "format": "double" + }, + "MinShowResult": { + "type": "number", + "format": "double" + }, + "MaxCompetitionResult": { + "type": "number", + "format": "double" + }, + "MinCompetitionResult": { + "type": "number", + "format": "double" + } + }, + "additionalProperties": false + }, + "HorseGenetics": { + "type": "object", + "properties": { + "GP": { + "type": "integer", + "format": "int32" + }, + "GeneticPotential": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float" + }, + "nullable": true + }, + "Disciplines": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float" + }, + "nullable": true + }, + "Colors": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "HorseHealth": { + "type": "object", + "properties": { + "Health": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "HorseSummary": { + "type": "object", + "properties": { + "RelatedIds": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "Conception": { + "type": "string", + "nullable": true + }, + "FatherLink": { + "type": "string", + "nullable": true + }, + "FatherName": { + "type": "string", + "nullable": true + }, + "UltrasoundGender": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "HorseTraining": { + "type": "object", + "properties": { + "Training": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + } + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfo.cs b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfo.cs index 83201d1..c8d8d9d 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfo.cs +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("HRServer")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8f1d98867721eca2ff0013c3d41284809087d4ae")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dceb598b52dfe3fc24772a14d69d8799841f2ed6")] [assembly: System.Reflection.AssemblyProductAttribute("HRServer")] [assembly: System.Reflection.AssemblyTitleAttribute("HRServer")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfoInputs.cache b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfoInputs.cache index 717dbfd..af861bd 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfoInputs.cache +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.AssemblyInfoInputs.cache @@ -1 +1 @@ -850a8fe9acac4f17d01598d3d837a83153b8af1b66bac89b79d7a2956c463839 +67964aab995a10c5597615e52369d5f3249b51e0fd1252048dd4c11c7b480717 diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.GeneratedMSBuildEditorConfig.editorconfig b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.GeneratedMSBuildEditorConfig.editorconfig index e10caf2..3772910 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.GeneratedMSBuildEditorConfig.editorconfig +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.GeneratedMSBuildEditorConfig.editorconfig @@ -17,3 +17,5 @@ build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = build_property.MSBuildProjectDirectory = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.assets.cache b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.assets.cache index 9ce3a91..d2733a2 100644 Binary files a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.assets.cache and b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.assets.cache differ diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.AssemblyReference.cache b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.AssemblyReference.cache index d10d510..50cbbef 100644 Binary files a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.AssemblyReference.cache and b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.AssemblyReference.cache differ diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.CoreCompileInputs.cache b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.CoreCompileInputs.cache index ab263c5..f694a93 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.CoreCompileInputs.cache +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -ff96cd7ef93b2db74847767b8c9a51c9c59f88f1abf5b21e24fad37106dcb370 +ba6e79551852cef772cd8d4f39e177de1e37110bfffcdbab6b9b8788c4b71d4c diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.FileListAbsolute.txt b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.FileListAbsolute.txt index e071cf9..bb11a82 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.FileListAbsolute.txt +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.csproj.FileListAbsolute.txt @@ -31,3 +31,46 @@ Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServe Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Debug\net8.0\HRServer.pdb Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Debug\net8.0\HRServer.genruntimeconfig.cache Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Debug\net8.0\ref\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Binder.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.CommandLine.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.FileExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Configuration.UserSecrets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Diagnostics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Diagnostics.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.FileProviders.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.FileProviders.Physical.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.FileSystemGlobbing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Hosting.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Hosting.WindowsServices.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.Console.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.Debug.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.EventSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Options.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\System.Diagnostics.DiagnosticSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\System.Diagnostics.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\System.IO.Pipelines.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\System.ServiceProcess.ServiceController.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\System.Text.Encodings.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\System.Text.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.Messages.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.ServiceProcess.ServiceController.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\CsvHelper.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Debug\net8.0\HRServer.staticwebassets.endpoints.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Debug\net8.0\staticwebassets.build.endpoints.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Debug\net8.0\staticwebassets\msbuild.HRServer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Debug\net8.0\staticwebassets.upToDateCheck.txt diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.dll b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.dll index 7cd24ff..56e5637 100644 Binary files a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.dll and b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.pdb b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.pdb index 39b04a4..9c1f285 100644 Binary files a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.pdb and b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.sourcelink.json b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.sourcelink.json index 7ab6333..ebe4476 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.sourcelink.json +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/HRServer.sourcelink.json @@ -1 +1 @@ -{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/12b7fc655326aa1426924b3c90b144f694605d52/*"}} \ No newline at end of file +{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/dceb598b52dfe3fc24772a14d69d8799841f2ed6/*"}} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/apphost.exe b/HRServer-Exporter/HRServer/obj/Debug/net8.0/apphost.exe index 64947e0..5b614db 100644 Binary files a/HRServer-Exporter/HRServer/obj/Debug/net8.0/apphost.exe and b/HRServer-Exporter/HRServer/obj/Debug/net8.0/apphost.exe differ diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/ref/HRServer.dll b/HRServer-Exporter/HRServer/obj/Debug/net8.0/ref/HRServer.dll index 8f6204d..4d62ccc 100644 Binary files a/HRServer-Exporter/HRServer/obj/Debug/net8.0/ref/HRServer.dll and b/HRServer-Exporter/HRServer/obj/Debug/net8.0/ref/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/refint/HRServer.dll b/HRServer-Exporter/HRServer/obj/Debug/net8.0/refint/HRServer.dll index 8f6204d..4d62ccc 100644 Binary files a/HRServer-Exporter/HRServer/obj/Debug/net8.0/refint/HRServer.dll and b/HRServer-Exporter/HRServer/obj/Debug/net8.0/refint/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.build.endpoints.json b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.build.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.build.json b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.build.json index 127538e..f2dd5d6 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.build.json +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.build.json @@ -1,11 +1,12 @@ { "Version": 1, - "Hash": "JAdl2ax+iEaEpM2QjX7DlmN0wnleiYGhGkNb8PzNm50=", + "Hash": "M+9L4y+RfOLB6mKJntSIPgMxxJympJvA9XPSPKEktjg=", "Source": "HRServer", "BasePath": "_content/HRServer", "Mode": "Default", "ManifestType": "Build", "ReferencedProjectsConfiguration": [], "DiscoveryPatterns": [], - "Assets": [] + "Assets": [], + "Endpoints": [] } \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.BuildWithSkipAnalyzers b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt similarity index 100% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.BuildWithSkipAnalyzers rename to HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.removed.txt b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets/msbuild.build.HRServer.props b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets/msbuild.build.HRServer.props index 5a6032a..ddaed44 100644 --- a/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets/msbuild.build.HRServer.props +++ b/HRServer-Exporter/HRServer/obj/Debug/net8.0/staticwebassets/msbuild.build.HRServer.props @@ -1,3 +1,4 @@  + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/HRServer.csproj.EntityFrameworkCore.targets b/HRServer-Exporter/HRServer/obj/HRServer.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..7d6485d --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/HRServer.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.dgspec.json b/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.dgspec.json index 89babf7..12f057e 100644 --- a/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.dgspec.json +++ b/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.dgspec.json @@ -44,12 +44,21 @@ "enableAudit": "true", "auditLevel": "low", "auditMode": "direct" - } + }, + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "dependencies": { + "CsvHelper": { + "target": "Package", + "version": "[33.0.1, )" + }, + "Microsoft.Extensions.Hosting.WindowsServices": { + "target": "Package", + "version": "[9.0.0, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", "version": "[6.4.0, )" @@ -74,7 +83,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json" } } } diff --git a/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.props b/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.props index e699166..7b1357b 100644 --- a/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.props +++ b/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\SvenK\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.11.0 + 6.12.2 @@ -16,6 +16,7 @@ + C:\Users\SvenK\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 diff --git a/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.targets b/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.targets index eea8d76..bdbcd2d 100644 --- a/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.targets +++ b/HRServer-Exporter/HRServer/obj/HRServer.csproj.nuget.g.targets @@ -1,6 +1,11 @@  + + + + + \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs similarity index 100% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs rename to HRServer-Exporter/HRServer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.AssemblyInfo.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.AssemblyInfo.cs new file mode 100644 index 0000000..c01bf47 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("HRServer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dceb598b52dfe3fc24772a14d69d8799841f2ed6")] +[assembly: System.Reflection.AssemblyProductAttribute("HRServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("HRServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.AssemblyInfoInputs.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a6f6323 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b015ee8b29f64c1bed50c2caa22b2f2c11e136ead672f64ee87fcbdd11fb7989 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.GeneratedMSBuildEditorConfig.editorconfig b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3772910 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,21 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = HRServer +build_property.RootNamespace = HRServer +build_property.ProjectDir = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.GlobalUsings.g.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.MvcApplicationPartsAssemblyInfo.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.MvcApplicationPartsAssemblyInfo.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..fb25a17 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.assets.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.assets.cache new file mode 100644 index 0000000..6e0c4c1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.assets.cache differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.AssemblyReference.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..50cbbef Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.AssemblyReference.cache differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.CoreCompileInputs.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..168d3ca --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ae75e2ea983994b8d125905482165e0ed9a7707e033dd541533ccb065683c9af diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.FileListAbsolute.txt b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8f943fe --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.FileListAbsolute.txt @@ -0,0 +1,76 @@ +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\appsettings.Development.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\appsettings.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\HRServer.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\HRServer.deps.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\HRServer.runtimeconfig.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\HRServer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.OpenApi.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Swashbuckle.AspNetCore.Swagger.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.csproj.AssemblyReference.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.GeneratedMSBuildEditorConfig.editorconfig +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.AssemblyInfoInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.AssemblyInfo.cs +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.csproj.CoreCompileInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.MvcApplicationPartsAssemblyInfo.cs +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.MvcApplicationPartsAssemblyInfo.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.sourcelink.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets.build.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets.development.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets\msbuild.HRServer.Microsoft.AspNetCore.StaticWebAssets.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets\msbuild.build.HRServer.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets\msbuild.buildMultiTargeting.HRServer.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets\msbuild.buildTransitive.HRServer.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets.pack.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\scopedcss\bundle\HRServer.styles.css +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.csproj.Up2Date +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\refint\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\HRServer.genruntimeconfig.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\ref\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.Binder.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.CommandLine.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.FileExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Configuration.UserSecrets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Diagnostics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Diagnostics.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.FileProviders.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.FileProviders.Physical.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.FileSystemGlobbing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Hosting.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Hosting.WindowsServices.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Logging.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Logging.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Logging.Console.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Logging.Debug.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Logging.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Logging.EventSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Options.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\Microsoft.Extensions.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\System.Diagnostics.DiagnosticSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\System.Diagnostics.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\System.IO.Pipelines.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\System.ServiceProcess.ServiceController.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\System.Text.Encodings.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\System.Text.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.Messages.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\runtimes\win\lib\net8.0\System.ServiceProcess.ServiceController.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\HRServer.staticwebassets.endpoints.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\CsvHelper.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets.build.endpoints.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets\msbuild.HRServer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\staticwebassets.upToDateCheck.txt diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.Up2Date b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.dll new file mode 100644 index 0000000..0257c06 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.genruntimeconfig.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.genruntimeconfig.cache new file mode 100644 index 0000000..d21a58e --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.genruntimeconfig.cache @@ -0,0 +1 @@ +6809555625602233ebaaf2da986db081a8b4b6e2fdc712d28aeb5f4c447502e3 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.pdb new file mode 100644 index 0000000..03cafae Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.pdb differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.sourcelink.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.sourcelink.json similarity index 70% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.sourcelink.json rename to HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.sourcelink.json index b56eeec..ebe4476 100644 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.sourcelink.json +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/HRServer.sourcelink.json @@ -1 +1 @@ -{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/8f1d98867721eca2ff0013c3d41284809087d4ae/*"}} \ No newline at end of file +{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/dceb598b52dfe3fc24772a14d69d8799841f2ed6/*"}} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.deps.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.deps.json new file mode 100644 index 0000000..0f05c5f --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.deps.json @@ -0,0 +1,115 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "HRServer/1.0.0": { + "dependencies": { + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "HRServer.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + } + } + }, + "libraries": { + "HRServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.dll new file mode 100644 index 0000000..4d416ea Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.dll differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/apphost.exe b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.exe similarity index 99% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/apphost.exe rename to HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.exe index a17633c..1c9eeff 100644 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/apphost.exe and b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.exe differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.pdb new file mode 100644 index 0000000..39541c1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.runtimeconfig.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.runtimeconfig.json new file mode 100644 index 0000000..6a48a7e --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/HRServer.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Microsoft.OpenApi.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Microsoft.OpenApi.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/appsettings.Development.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/appsettings.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/web.config b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/web.config new file mode 100644 index 0000000..84f9115 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/PubTmp/Out/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/PublishOutputs.1096617ed3.txt b/HRServer-Exporter/HRServer/obj/Release/net8.0/PublishOutputs.1096617ed3.txt new file mode 100644 index 0000000..f3806c2 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/PublishOutputs.1096617ed3.txt @@ -0,0 +1,12 @@ +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\HRServer.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\appsettings.Development.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\appsettings.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\horses.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\HRServer.deps.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\HRServer.runtimeconfig.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\HRServer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\Microsoft.OpenApi.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/apphost.exe b/HRServer-Exporter/HRServer/obj/Release/net8.0/apphost.exe new file mode 100644 index 0000000..5b614db Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/apphost.exe differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/ref/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/ref/HRServer.dll new file mode 100644 index 0000000..6f82a42 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/ref/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/refint/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/refint/HRServer.dll new file mode 100644 index 0000000..6f82a42 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/refint/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.build.endpoints.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.build.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.build.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..f2dd5d6 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.build.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "Hash": "M+9L4y+RfOLB6mKJntSIPgMxxJympJvA9XPSPKEktjg=", + "Source": "HRServer", + "BasePath": "_content/HRServer", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [], + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.publish.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.publish.json new file mode 100644 index 0000000..558b67d --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.publish.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "HGdY7R4UXdtK6lZDwxVXx0MWlLHoPZc0EvCHUnHzHbg=", + "Source": "HRServer", + "BasePath": "_content/HRServer", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.references.upToDateCheck.txt b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.removed.txt b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.build.HRServer.props b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.build.HRServer.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.build.HRServer.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.HRServer.props b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.HRServer.props new file mode 100644 index 0000000..36dffa1 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.HRServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.HRServer.props b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.HRServer.props new file mode 100644 index 0000000..20e3fcf --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.HRServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.AssemblyInfo.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.AssemblyInfo.cs new file mode 100644 index 0000000..c01bf47 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("HRServer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dceb598b52dfe3fc24772a14d69d8799841f2ed6")] +[assembly: System.Reflection.AssemblyProductAttribute("HRServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("HRServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.AssemblyInfoInputs.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a6f6323 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b015ee8b29f64c1bed50c2caa22b2f2c11e136ead672f64ee87fcbdd11fb7989 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.GeneratedMSBuildEditorConfig.editorconfig b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..700b1b5 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,25 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = HRServer +build_property.RootNamespace = HRServer +build_property.ProjectDir = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.GlobalUsings.g.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.MvcApplicationPartsAssemblyInfo.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.MvcApplicationPartsAssemblyInfo.cs b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..fb25a17 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.assets.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.assets.cache new file mode 100644 index 0000000..58b0e83 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.assets.cache differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.AssemblyReference.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..50cbbef Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.AssemblyReference.cache differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.CoreCompileInputs.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8fb8ab2 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +523d415df07f104ccb30c8c8e993a1e81ad797f2c8a64a7f13860ee8a978045a diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.FileListAbsolute.txt b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fb3a833 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.FileListAbsolute.txt @@ -0,0 +1,363 @@ +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\appsettings.Development.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\appsettings.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\HRServer.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\HRServer.deps.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\HRServer.runtimeconfig.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\HRServer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.OpenApi.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Swashbuckle.AspNetCore.Swagger.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Swashbuckle.AspNetCore.SwaggerGen.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Swashbuckle.AspNetCore.SwaggerUI.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.csproj.AssemblyReference.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.GeneratedMSBuildEditorConfig.editorconfig +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.AssemblyInfoInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.AssemblyInfo.cs +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.csproj.CoreCompileInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.MvcApplicationPartsAssemblyInfo.cs +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.MvcApplicationPartsAssemblyInfo.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.sourcelink.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets.build.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets.development.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets\msbuild.HRServer.Microsoft.AspNetCore.StaticWebAssets.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets\msbuild.build.HRServer.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildMultiTargeting.HRServer.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildTransitive.HRServer.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets.pack.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\scopedcss\bundle\HRServer.styles.css +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.csproj.Up2Date +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\refint\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\HRServer.genruntimeconfig.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\ref\HRServer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Binder.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.CommandLine.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.FileExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.UserSecrets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Physical.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileSystemGlobbing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.WindowsServices.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Console.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Debug.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.ConfigurationExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.DiagnosticSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.Messages.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Pipelines.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ServiceProcess.ServiceController.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Text.Encodings.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Text.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\HRServer.staticwebassets.endpoints.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\CsvHelper.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.CSharp.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Win32.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Win32.Registry.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.AppContext.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Buffers.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Collections.Concurrent.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Collections.Immutable.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Collections.NonGeneric.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Collections.Specialized.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Collections.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ComponentModel.Annotations.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ComponentModel.DataAnnotations.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ComponentModel.EventBasedAsync.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ComponentModel.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ComponentModel.TypeConverter.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ComponentModel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Console.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Data.Common.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Data.DataSetExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Data.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.Contracts.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.Debug.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.FileVersionInfo.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.Process.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.StackTrace.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.Tools.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.TraceSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Diagnostics.Tracing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Drawing.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Drawing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Dynamic.Runtime.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Formats.Asn1.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Formats.Tar.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Globalization.Calendars.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Globalization.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Globalization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Compression.Brotli.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Compression.FileSystem.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Compression.ZipFile.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Compression.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.FileSystem.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.FileSystem.DriveInfo.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.FileSystem.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.FileSystem.Watcher.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.FileSystem.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.IsolatedStorage.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.MemoryMappedFiles.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Pipes.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Pipes.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.UnmanagedMemoryStream.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Linq.Expressions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Linq.Parallel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Linq.Queryable.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Linq.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Memory.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Http.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Http.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.HttpListener.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Mail.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.NameResolution.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.NetworkInformation.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Ping.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Quic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Requests.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Security.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.ServicePoint.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.Sockets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.WebClient.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.WebHeaderCollection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.WebProxy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.WebSockets.Client.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.WebSockets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Net.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Numerics.Vectors.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Numerics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ObjectModel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Private.CoreLib.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Private.DataContractSerialization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Private.Uri.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Private.Xml.Linq.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Private.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.DispatchProxy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.Emit.ILGeneration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.Emit.Lightweight.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.Emit.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.Metadata.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.TypeExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Reflection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Resources.Reader.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Resources.ResourceManager.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Resources.Writer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.VisualC.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Handles.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.JavaScript.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Intrinsics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Loader.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Numerics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Formatters.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.Serialization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Runtime.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Claims.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.Algorithms.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.Cng.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.Csp.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.Encoding.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.OpenSsl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.X509Certificates.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Principal.Windows.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Principal.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.SecureString.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ServiceModel.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ServiceProcess.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Text.Encoding.CodePages.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Text.Encoding.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Text.Encoding.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Text.RegularExpressions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Channels.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Overlapped.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Tasks.Dataflow.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Tasks.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Tasks.Parallel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Tasks.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Thread.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.ThreadPool.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.Timer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Transactions.Local.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Transactions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.ValueTuple.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Web.HttpUtility.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Windows.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.Linq.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.ReaderWriter.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.Serialization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.XDocument.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.XPath.XDocument.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.XPath.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.XmlDocument.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.XmlSerializer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\WindowsBase.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\mscorlib.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\netstandard.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Antiforgery.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.BearerToken.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Cookies.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.OAuth.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.Policy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Authorization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Endpoints.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Forms.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Server.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Connections.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.CookiePolicy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cors.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.Internal.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HostFiltering.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Html.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.Common.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Features.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Results.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpLogging.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpOverrides.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpsPolicy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Identity.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.Routing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Metadata.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Cors.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Localization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Razor.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.RazorPages.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.TagHelpers.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.OutputCaching.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RateLimiting.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.Runtime.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RequestDecompression.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCompression.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Rewrite.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.HttpSys.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IIS.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IISIntegration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Session.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Common.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.StaticFiles.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebSockets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebUtilities.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Memory.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Ini.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.KeyPerFile.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Features.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Composite.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Embedded.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Http.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Stores.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.Abstractions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.TraceSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.ObjectPool.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.DataAnnotations.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Extensions.WebEncoders.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.JSInterop.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.Net.Http.Headers.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.Pkcs.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Security.Cryptography.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.Threading.RateLimiting.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\System.IO.Compression.Native.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\clretwrc.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\clrgc.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\clrjit.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\coreclr.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\createdump.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\hostfxr.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\hostpolicy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\mscordaccore.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\mscordaccore_amd64_amd64_8.0.1124.51707.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\mscordbi.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\mscorrc.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\msquic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\bin\Release\net8.0\win-x64\aspnetcorev2_inprocess.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets.build.endpoints.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets\msbuild.HRServer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\staticwebassets.upToDateCheck.txt diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.Up2Date b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.deps.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.deps.json new file mode 100644 index 0000000..e73c032 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.deps.json @@ -0,0 +1,1948 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {}, + ".NETCoreApp,Version=v8.0/win-x64": { + "HRServer/1.0.0": { + "dependencies": { + "CsvHelper": "33.0.1", + "Microsoft.Extensions.Hosting.WindowsServices": "9.0.0", + "Microsoft.NET.ILLink.Tasks": "8.0.11", + "Swashbuckle.AspNetCore": "6.4.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "8.0.11", + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64": "8.0.11" + }, + "runtime": { + "HRServer.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.11": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1124.51707" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.AppContext.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Buffers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Collections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Data.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Globalization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.IO.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Security.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Reflection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Threading.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1124.51707" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "8.0.1124.51707" + } + } + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64/8.0.11": { + "runtime": { + "Microsoft.AspNetCore.Antiforgery.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.BearerToken.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.Cookies.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.OAuth.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authentication.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authorization.Policy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Endpoints.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Server.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.CookiePolicy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Cors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.DataProtection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.DataProtection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Diagnostics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HostFiltering.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Hosting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Html.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Connections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.Results.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HttpLogging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HttpOverrides.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.HttpsPolicy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Identity.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Localization.Routing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Cors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.Razor.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.RazorPages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Mvc.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.OutputCaching.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Razor.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Razor.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.RequestDecompression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.ResponseCaching.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.ResponseCompression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Rewrite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Routing.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Routing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.HttpSys.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.IIS.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.IISIntegration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Server.Kestrel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.Session.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.SignalR.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.StaticFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.WebUtilities.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.AspNetCore.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Configuration.Ini.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Configuration.KeyPerFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Configuration.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.47404" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Features.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.FileProviders.Composite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.FileProviders.Embedded.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Logging.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.47404" + }, + "Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Extensions.Options.DataAnnotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.WebEncoders.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.JSInterop.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1124.52116" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "native": { + "aspnetcorev2_inprocess.dll": { + "fileVersion": "18.0.24295.11" + } + } + }, + "CsvHelper/33.0.1": { + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "assemblyVersion": "33.0.0.0", + "fileVersion": "33.0.1.24" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.11": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "runtime": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Json/9.0.0": { + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + } + } + }, + "libraries": { + "HRServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.11": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64/8.0.11": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "CsvHelper/33.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "path": "csvhelper/33.0.1", + "hashPath": "csvhelper.33.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "path": "microsoft.extensions.configuration.json/9.0.0", + "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "path": "microsoft.extensions.hosting/9.0.0", + "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "path": "microsoft.extensions.logging.console/9.0.0", + "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "path": "microsoft.extensions.logging.debug/9.0.0", + "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zk5lnZrYJgtuJG8L4v17Ej8rZ3PUcR2iweNV08BaO5LbYHIi2wNaVNcJoLxvqgQdnjLlKnCCfVGLDr6QHeAarQ==", + "path": "microsoft.net.illink.tasks/8.0.11", + "hashPath": "microsoft.net.illink.tasks.8.0.11.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.dll new file mode 100644 index 0000000..e7cd372 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genbundle.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genbundle.cache new file mode 100644 index 0000000..d7e96b4 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genbundle.cache @@ -0,0 +1 @@ +12a53eb43fad03f54fe6d41fe0aa1ad4e6438ca59994728a94d813da8eea4537 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genpublishdeps.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genpublishdeps.cache new file mode 100644 index 0000000..ff88bde --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genpublishdeps.cache @@ -0,0 +1 @@ +d2963fed3f4046a870aab079a0b0c9e4fff1b07d00747b382e0688165793a846 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genruntimeconfig.cache b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genruntimeconfig.cache new file mode 100644 index 0000000..bfa127b --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.genruntimeconfig.cache @@ -0,0 +1 @@ +6af0060cdffd37897906ba8a3b0882b497b53767bfeb85a90311573633a1028b diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.pdb new file mode 100644 index 0000000..a6d6e3e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.sourcelink.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.sourcelink.json new file mode 100644 index 0000000..ebe4476 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/HRServer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/dceb598b52dfe3fc24772a14d69d8799841f2ed6/*"}} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.exe b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.exe new file mode 100644 index 0000000..3794600 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.exe differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.pdb new file mode 100644 index 0000000..a6d6e3e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.staticwebassets.endpoints.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.staticwebassets.endpoints.json new file mode 100644 index 0000000..8403e6b --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/HRServer.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Publish", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.Development.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..a9038e9 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.json @@ -0,0 +1,16 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5180" + } + } + } +} diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/aspnetcorev2_inprocess.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/aspnetcorev2_inprocess.dll new file mode 100644 index 0000000..b7aea0d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/aspnetcorev2_inprocess.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/web.config b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/web.config new file mode 100644 index 0000000..29fb4d4 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PubTmp/Out/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PublishOutputs.7b77230dc4.txt b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PublishOutputs.7b77230dc4.txt new file mode 100644 index 0000000..029e45d --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/PublishOutputs.7b77230dc4.txt @@ -0,0 +1,5 @@ +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\PubTmp\Out\appsettings.Development.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\PubTmp\Out\appsettings.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\PubTmp\Out\HRServer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\PubTmp\Out\aspnetcorev2_inprocess.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HRServer\obj\Release\net8.0\win-x64\PubTmp\Out\HRServer.exe diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/HRServer.dll new file mode 100644 index 0000000..050e6be Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/HRServer.r2r.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/HRServer.r2r.dll new file mode 100644 index 0000000..f72560b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/HRServer.r2r.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 0000000..0b1ff0f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.Core.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 0000000..5134e3a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 0000000..37d654a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authentication.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authorization.Policy.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 0000000..f5367fb Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authorization.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..2d1b748 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Authorization.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Connections.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..641229e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Cors.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 0000000..12f1a02 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Cors.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..f788ad4 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Diagnostics.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 0000000..3c511d7 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.HostFiltering.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 0000000..159fd20 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 0000000..4113cb7 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 0000000..f18920b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 0000000..ddde24b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 0000000..86acaa9 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Extensions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 0000000..23674a9 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Features.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 0000000..4892090 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.dll new file mode 100644 index 0000000..a15eed4 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Http.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.HttpOverrides.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 0000000..53a3211 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Metadata.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..2030a85 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Metadata.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 0000000..e1a3ff5 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 0000000..b299a27 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Core.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 0000000..e5d861c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Cors.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 0000000..746ed0b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 0000000..a730e6b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 0000000..87added Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Mvc.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Routing.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 0000000..3c2ff5e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Routing.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 0000000..140d3a3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Routing.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.HttpSys.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100644 index 0000000..8a94ea3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.IIS.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 0000000..2a71dea Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.IISIntegration.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 0000000..50f85a7 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 0000000..ec2dda2 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100644 index 0000000..e020e72 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100644 index 0000000..aa8d3a4 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 0000000..f0ee1d4 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 0000000..3db5b3f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.StaticFiles.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 0000000..8947841 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.WebUtilities.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 0000000..0e00fda Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.dll new file mode 100644 index 0000000..2796690 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.AspNetCore.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..04964d3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Binder.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..e5d9609 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.CommandLine.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..4665819 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..1683226 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.FileExtensions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..ca0d13d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Json.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..34d6591 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.UserSecrets.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..6db9159 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..a43da83 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..8f1e3cf Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.DependencyInjection.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..efd2fdf Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..9b105b7 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Diagnostics.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..bdeedc7 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Features.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..ed0d622 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Features.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..16634b0 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Composite.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..48a8925 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Embedded.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..64bb5c3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Physical.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..397e755 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileSystemGlobbing.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..4852c6c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..c161f88 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.WindowsServices.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.WindowsServices.dll new file mode 100644 index 0000000..af158b4 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.WindowsServices.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..01a4f09 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Localization.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..4e742ea Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..fee1a7b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Configuration.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..87af946 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Console.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..dfcebbb Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Console.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Debug.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..111e103 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.EventLog.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..2d4456c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.EventSource.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..44ee28a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..3916109 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Logging.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.ObjectPool.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..6a873ad Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.ObjectPool.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..3c2dffb Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Options.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..c0e7a37 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Options.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Primitives.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..a404f4f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Extensions.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Net.Http.Headers.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Net.Http.Headers.dll new file mode 100644 index 0000000..dfffec1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Net.Http.Headers.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.OpenApi.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.OpenApi.dll new file mode 100644 index 0000000..3d8989f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.OpenApi.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Win32.Registry.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..e7b02d5 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Microsoft.Win32.Registry.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.Swagger.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..8691901 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.SwaggerGen.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..5c96dee Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.SwaggerUI.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..ace96e3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Concurrent.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Concurrent.dll new file mode 100644 index 0000000..d688485 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Concurrent.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Immutable.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Immutable.dll new file mode 100644 index 0000000..e70999a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Immutable.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.NonGeneric.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..9bb1171 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.NonGeneric.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Specialized.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Specialized.dll new file mode 100644 index 0000000..8847d23 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.Specialized.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.dll new file mode 100644 index 0000000..d3f71e2 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Collections.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.Annotations.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..c375280 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.Annotations.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.Primitives.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b8cce3c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.TypeConverter.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..e0638de Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.TypeConverter.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.dll new file mode 100644 index 0000000..662e0df Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ComponentModel.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Console.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Console.dll new file mode 100644 index 0000000..9369477 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Console.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.DiagnosticSource.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..b717f9c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.DiagnosticSource.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..ebaf690 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.Process.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.Process.dll new file mode 100644 index 0000000..2eb5150 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.Process.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.StackTrace.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..3e4ac55 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Diagnostics.StackTrace.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Formats.Asn1.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Formats.Asn1.dll new file mode 100644 index 0000000..6284ae8 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Formats.Asn1.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Compression.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Compression.dll new file mode 100644 index 0000000..74c2b6c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Compression.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.FileSystem.Watcher.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..1879fec Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.FileSystem.Watcher.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.MemoryMappedFiles.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..b30a6c9 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.MemoryMappedFiles.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Pipelines.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Pipelines.dll new file mode 100644 index 0000000..dbaeea6 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Pipelines.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Pipes.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Pipes.dll new file mode 100644 index 0000000..a204c1d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.IO.Pipes.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Linq.Expressions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Linq.Expressions.dll new file mode 100644 index 0000000..24c421c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Linq.Expressions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Linq.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Linq.dll new file mode 100644 index 0000000..288e22a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Linq.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Memory.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Memory.dll new file mode 100644 index 0000000..d60781a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Memory.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Http.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Http.dll new file mode 100644 index 0000000..cc9c40f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Http.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Primitives.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Primitives.dll new file mode 100644 index 0000000..59faea3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Quic.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Quic.dll new file mode 100644 index 0000000..e841dea Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Quic.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Security.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Security.dll new file mode 100644 index 0000000..99c78b0 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Security.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Sockets.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Sockets.dll new file mode 100644 index 0000000..721372d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Net.Sockets.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ObjectModel.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ObjectModel.dll new file mode 100644 index 0000000..e570fba Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ObjectModel.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Private.CoreLib.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Private.CoreLib.dll new file mode 100644 index 0000000..2a9fe57 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Private.CoreLib.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Private.Uri.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Private.Uri.dll new file mode 100644 index 0000000..78e7fd7 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Private.Uri.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Reflection.Metadata.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Reflection.Metadata.dll new file mode 100644 index 0000000..3b20bb8 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Reflection.Metadata.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Runtime.Numerics.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Runtime.Numerics.dll new file mode 100644 index 0000000..988516b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Runtime.Numerics.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.AccessControl.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.AccessControl.dll new file mode 100644 index 0000000..3635308 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.AccessControl.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Claims.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Claims.dll new file mode 100644 index 0000000..626b875 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Claims.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Cryptography.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Cryptography.dll new file mode 100644 index 0000000..0acbb12 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Cryptography.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Principal.Windows.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..bf5f446 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Security.Principal.Windows.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..6303ecf Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..5d24f79 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.Json.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.Json.dll new file mode 100644 index 0000000..7c5f4eb Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.Json.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.RegularExpressions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..9213720 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Text.RegularExpressions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Threading.Channels.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Threading.Channels.dll new file mode 100644 index 0000000..73bd242 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.Threading.Channels.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.dll new file mode 100644 index 0000000..68908cf Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/R2R/System.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/apphost.exe b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/apphost.exe new file mode 100644 index 0000000..5b614db Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/apphost.exe differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/HRServer.dll new file mode 100644 index 0000000..3c3e7f3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/HRServer.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/HRServer.pdb new file mode 100644 index 0000000..ef3c275 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/HRServer.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Link.semaphore b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Link.semaphore new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 0000000..bebcf1f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.Core.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 0000000..0437d9b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 0000000..d6483ca Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authentication.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authorization.Policy.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 0000000..f8ab6cd Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authorization.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..2d23f4c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Authorization.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Connections.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..3ccb869 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Cors.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 0000000..e425b63 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Cors.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..0461f98 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Diagnostics.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 0000000..2fc7206 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.HostFiltering.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 0000000..3e1da8a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 0000000..9a64fdf Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 0000000..6792a7d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 0000000..2d26ded Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 0000000..96ad32b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Extensions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 0000000..13b20e4 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Features.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 0000000..325c687 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.dll new file mode 100644 index 0000000..422b2dd Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Http.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.HttpOverrides.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 0000000..baa6f1e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Metadata.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..4faffe3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Metadata.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 0000000..2d81009 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 0000000..936daae Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Core.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 0000000..dabaaed Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Cors.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 0000000..f2414e3 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 0000000..ab3399a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 0000000..d320553 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Mvc.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Routing.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 0000000..a186d17 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Routing.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 0000000..e111e4d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Routing.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.HttpSys.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100644 index 0000000..ed81823 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.IIS.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 0000000..c5505b6 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.IISIntegration.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 0000000..32c707c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 0000000..dddea12 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100644 index 0000000..9c82c84 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100644 index 0000000..4ca6a22 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 0000000..0537279 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 0000000..2bafb1d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.StaticFiles.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 0000000..1ca760a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.WebUtilities.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 0000000..ae578a6 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.dll new file mode 100644 index 0000000..48eee11 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.AspNetCore.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..9f18ebb Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Binder.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..0ca50df Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.CommandLine.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..00c6c9c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..5ce103c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.FileExtensions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..fc1811c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Json.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..aa8906e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.UserSecrets.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..c14ecfe Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..842fc52 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..a979251 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.DependencyInjection.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..3515b4c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Diagnostics.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..2c5bdb1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Diagnostics.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..1239295 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Diagnostics.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Features.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..c0fbee8 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Features.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..f813cec Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Composite.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..c618b5e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Embedded.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..5ffe227 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Physical.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..d495fe1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileSystemGlobbing.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..965c644 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..1dc85f5 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.WindowsServices.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.WindowsServices.dll new file mode 100644 index 0000000..faadac6 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.WindowsServices.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..4fca30c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Hosting.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Localization.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..0fd7db9 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..6236c90 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Configuration.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..df31c1d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Console.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..64d830d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Console.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Debug.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..a93c96e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.EventLog.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..a340072 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.EventSource.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..a9b72b1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..0366a99 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Logging.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.ObjectPool.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..c707ff9 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.ObjectPool.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..1c6bc0e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Options.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..cbd519e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Options.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Primitives.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..fe17d57 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Extensions.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Net.Http.Headers.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Net.Http.Headers.dll new file mode 100644 index 0000000..21aed80 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Net.Http.Headers.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.OpenApi.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.OpenApi.dll new file mode 100644 index 0000000..1adf3dc Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.OpenApi.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.OpenApi.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.OpenApi.pdb new file mode 100644 index 0000000..6322a54 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.OpenApi.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Win32.Registry.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..1a3b5e4 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Microsoft.Win32.Registry.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.Swagger.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..137cddd Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.Swagger.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.Swagger.pdb new file mode 100644 index 0000000..22fc42f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.Swagger.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..4284b0a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.pdb new file mode 100644 index 0000000..52e8a66 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..28d3434 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.pdb b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.pdb new file mode 100644 index 0000000..3cfae37 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.pdb differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Concurrent.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Concurrent.dll new file mode 100644 index 0000000..7ef81f1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Concurrent.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Immutable.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Immutable.dll new file mode 100644 index 0000000..22c7613 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Immutable.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.NonGeneric.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..5cf0215 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.NonGeneric.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Specialized.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Specialized.dll new file mode 100644 index 0000000..3fa9bbc Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.Specialized.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.dll new file mode 100644 index 0000000..e3abe19 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Collections.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.Annotations.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..063b9e0 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.Annotations.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.Primitives.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..675487f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.TypeConverter.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..1f649c6 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.TypeConverter.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.dll new file mode 100644 index 0000000..90abc84 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ComponentModel.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Console.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Console.dll new file mode 100644 index 0000000..ae6fb5c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Console.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.DiagnosticSource.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..f1d2338 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.DiagnosticSource.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.EventLog.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..46b8d9b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.Process.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.Process.dll new file mode 100644 index 0000000..9ae45c0 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.Process.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.StackTrace.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..a72e987 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Diagnostics.StackTrace.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Formats.Asn1.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Formats.Asn1.dll new file mode 100644 index 0000000..64c6837 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Formats.Asn1.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Compression.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Compression.dll new file mode 100644 index 0000000..7461017 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Compression.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.FileSystem.Watcher.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..974c71f Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.FileSystem.Watcher.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.MemoryMappedFiles.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..d382830 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.MemoryMappedFiles.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Pipelines.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Pipelines.dll new file mode 100644 index 0000000..ad8b0e8 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Pipelines.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Pipes.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Pipes.dll new file mode 100644 index 0000000..f252540 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.IO.Pipes.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Linq.Expressions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Linq.Expressions.dll new file mode 100644 index 0000000..baf6cc5 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Linq.Expressions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Linq.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Linq.dll new file mode 100644 index 0000000..2eef313 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Linq.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Memory.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Memory.dll new file mode 100644 index 0000000..b3a30aa Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Memory.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Http.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Http.dll new file mode 100644 index 0000000..18b9be5 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Http.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Primitives.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Primitives.dll new file mode 100644 index 0000000..61e7d51 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Primitives.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Quic.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Quic.dll new file mode 100644 index 0000000..fd8c922 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Quic.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Security.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Security.dll new file mode 100644 index 0000000..801c8de Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Security.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Sockets.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Sockets.dll new file mode 100644 index 0000000..50fab4e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Net.Sockets.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ObjectModel.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ObjectModel.dll new file mode 100644 index 0000000..7b7dde1 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ObjectModel.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Private.CoreLib.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Private.CoreLib.dll new file mode 100644 index 0000000..f65324e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Private.CoreLib.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Private.Uri.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Private.Uri.dll new file mode 100644 index 0000000..d476eec Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Private.Uri.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Reflection.Metadata.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Reflection.Metadata.dll new file mode 100644 index 0000000..63d991d Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Reflection.Metadata.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Runtime.Numerics.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Runtime.Numerics.dll new file mode 100644 index 0000000..a513a65 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Runtime.Numerics.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.AccessControl.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.AccessControl.dll new file mode 100644 index 0000000..5a1508b Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.AccessControl.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Claims.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Claims.dll new file mode 100644 index 0000000..db2b6fd Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Claims.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Cryptography.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Cryptography.dll new file mode 100644 index 0000000..e9f91fe Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Cryptography.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Principal.Windows.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..1616d77 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Security.Principal.Windows.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ServiceProcess.ServiceController.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..982ca41 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.ServiceProcess.ServiceController.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.Encodings.Web.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..0188516 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.Json.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.Json.dll new file mode 100644 index 0000000..3ba2145 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.Json.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.RegularExpressions.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..20cafae Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Text.RegularExpressions.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Threading.Channels.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Threading.Channels.dll new file mode 100644 index 0000000..381161e Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.Threading.Channels.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.dll new file mode 100644 index 0000000..3ad9ac6 Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/linked/System.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/ref/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/ref/HRServer.dll new file mode 100644 index 0000000..bff6d9c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/ref/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/refint/HRServer.dll b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/refint/HRServer.dll new file mode 100644 index 0000000..bff6d9c Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/refint/HRServer.dll differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/singlefilehost.exe b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/singlefilehost.exe new file mode 100644 index 0000000..6db9e1a Binary files /dev/null and b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/singlefilehost.exe differ diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.build.endpoints.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.build.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.build.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.build.json new file mode 100644 index 0000000..f2dd5d6 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.build.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "Hash": "M+9L4y+RfOLB6mKJntSIPgMxxJympJvA9XPSPKEktjg=", + "Source": "HRServer", + "BasePath": "_content/HRServer", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [], + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.publish.endpoints.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.publish.endpoints.json new file mode 100644 index 0000000..8403e6b --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.publish.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Publish", + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.publish.json b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.publish.json new file mode 100644 index 0000000..762335b --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.publish.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "Hash": "/BexiNG2lIFxVTNKg9AalGy57YO75RUf7H6lDWswELI=", + "Source": "HRServer", + "BasePath": "_content/HRServer", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [], + "Endpoints": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.references.upToDateCheck.txt b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.build.HRServer.props b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.build.HRServer.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.build.HRServer.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.HRServer.props b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.HRServer.props new file mode 100644 index 0000000..36dffa1 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.HRServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildTransitive.HRServer.props b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildTransitive.HRServer.props new file mode 100644 index 0000000..20e3fcf --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildTransitive.HRServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/project.assets.json b/HRServer-Exporter/HRServer/obj/project.assets.json index d2b1117..a1cec80 100644 --- a/HRServer-Exporter/HRServer/obj/project.assets.json +++ b/HRServer-Exporter/HRServer/obj/project.assets.json @@ -2,6 +2,19 @@ "version": 3, "targets": { "net8.0": { + "CsvHelper/33.0.1": { + "type": "package", + "compile": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": { "type": "package", "build": { @@ -13,6 +26,608 @@ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} } }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, "Microsoft.OpenApi/1.2.3": { "type": "package", "compile": { @@ -88,10 +703,170 @@ "frameworkReferences": [ "Microsoft.AspNetCore.App" ] + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/9.0.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } } } }, "libraries": { + "CsvHelper/33.0.1": { + "sha512": "fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "type": "package", + "path": "csvhelper/33.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.33.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net462/CsvHelper.dll", + "lib/net462/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net48/CsvHelper.dll", + "lib/net48/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/net7.0/CsvHelper.dll", + "lib/net7.0/CsvHelper.xml", + "lib/net8.0/CsvHelper.dll", + "lib/net8.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": { "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", "type": "package", @@ -323,6 +1098,874 @@ "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" ] }, + "Microsoft.Extensions.Configuration/9.0.0": { + "sha512": "YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "type": "package", + "path": "microsoft.extensions.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "sha512": "RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "sha512": "qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "sha512": "v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "sha512": "4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "sha512": "WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "sha512": "FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "sha512": "0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "type": "package", + "path": "microsoft.extensions.diagnostics/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "sha512": "1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "sha512": "uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "sha512": "3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "sha512": "jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "sha512": "wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "type": "package", + "path": "microsoft.extensions.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "lib/net462/Microsoft.Extensions.Hosting.dll", + "lib/net462/Microsoft.Extensions.Hosting.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "sha512": "yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "sha512": "OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "type": "package", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.WindowsServices.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets", + "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml", + "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.windowsservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/9.0.0": { + "sha512": "crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "sha512": "H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "sha512": "yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "type": "package", + "path": "microsoft.extensions.logging.console/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "sha512": "4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "type": "package", + "path": "microsoft.extensions.logging.debug/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets", + "lib/net462/Microsoft.Extensions.Logging.Debug.dll", + "lib/net462/Microsoft.Extensions.Logging.Debug.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "sha512": "/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets", + "lib/net462/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net462/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "sha512": "zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "lib/net462/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net462/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.0": { + "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "type": "package", + "path": "microsoft.extensions.options/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "sha512": "Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, "Microsoft.OpenApi/1.2.3": { "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", "type": "package", @@ -420,10 +2063,241 @@ "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", "swashbuckle.aspnetcore.swaggerui.nuspec" ] + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "sha512": "ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "content/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net462/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net8.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net9.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/netstandard2.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/9.0.0": { + "sha512": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "type": "package", + "path": "system.diagnostics.eventlog/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/net9.0/System.Diagnostics.EventLog.dll", + "lib/net9.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/9.0.0": { + "sha512": "eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "type": "package", + "path": "system.io.pipelines/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.9.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "sha512": "ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.ServiceProcess.ServiceController.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets", + "lib/net462/System.ServiceProcess.ServiceController.dll", + "lib/net462/System.ServiceProcess.ServiceController.xml", + "lib/net8.0/System.ServiceProcess.ServiceController.dll", + "lib/net8.0/System.ServiceProcess.ServiceController.xml", + "lib/net9.0/System.ServiceProcess.ServiceController.dll", + "lib/net9.0/System.ServiceProcess.ServiceController.xml", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/9.0.0": { + "sha512": "e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "type": "package", + "path": "system.text.encodings.web/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.9.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/9.0.0": { + "sha512": "js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "type": "package", + "path": "system.text.json/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.9.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] } }, "projectFileDependencyGroups": { "net8.0": [ + "CsvHelper >= 33.0.1", + "Microsoft.Extensions.Hosting.WindowsServices >= 9.0.0", "Swashbuckle.AspNetCore >= 6.4.0" ] }, @@ -471,12 +2345,21 @@ "enableAudit": "true", "auditLevel": "low", "auditMode": "direct" - } + }, + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "dependencies": { + "CsvHelper": { + "target": "Package", + "version": "[33.0.1, )" + }, + "Microsoft.Extensions.Hosting.WindowsServices": { + "target": "Package", + "version": "[9.0.0, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", "version": "[6.4.0, )" @@ -501,7 +2384,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json" } } } diff --git a/HRServer-Exporter/HRServer/obj/project.nuget.cache b/HRServer-Exporter/HRServer/obj/project.nuget.cache index 28deacd..4d3449c 100644 --- a/HRServer-Exporter/HRServer/obj/project.nuget.cache +++ b/HRServer-Exporter/HRServer/obj/project.nuget.cache @@ -1,15 +1,50 @@ { "version": 2, - "dgSpecHash": "VjLTbzNjiB0=", + "dgSpecHash": "tuntpvzMqQU=", "success": true, "projectFilePath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", "expectedPackageFiles": [ + "C:\\Users\\SvenK\\.nuget\\packages\\csvhelper\\33.0.1\\csvhelper.33.0.1.nupkg.sha512", "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.0\\microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.0\\microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.binder\\9.0.0\\microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\9.0.0\\microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\9.0.0\\microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\9.0.0\\microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.json\\9.0.0\\microsoft.extensions.configuration.json.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\9.0.0\\microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.0\\microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.0\\microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.diagnostics\\9.0.0\\microsoft.extensions.diagnostics.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\9.0.0\\microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\9.0.0\\microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\9.0.0\\microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\9.0.0\\microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.hosting\\9.0.0\\microsoft.extensions.hosting.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\9.0.0\\microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.hosting.windowsservices\\9.0.0\\microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging\\9.0.0\\microsoft.extensions.logging.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.0\\microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.configuration\\9.0.0\\microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.console\\9.0.0\\microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.debug\\9.0.0\\microsoft.extensions.logging.debug.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\9.0.0\\microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\9.0.0\\microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.options\\9.0.0\\microsoft.extensions.options.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\9.0.0\\microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.0\\microsoft.extensions.primitives.9.0.0.nupkg.sha512", "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", - "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.diagnostics.diagnosticsource\\9.0.0\\system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.diagnostics.eventlog\\9.0.0\\system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.io.pipelines\\9.0.0\\system.io.pipelines.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.serviceprocess.servicecontroller\\9.0.0\\system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.text.encodings.web\\9.0.0\\system.text.encodings.web.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.text.json\\9.0.0\\system.text.json.9.0.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.dgspec.json b/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..769322f --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.dgspec.json @@ -0,0 +1,116 @@ +{ + "format": 1, + "restore": { + "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj": {} + }, + "projects": { + "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "projectName": "HRServer", + "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "packagesPath": "C:\\Users\\SvenK\\.nuget\\packages\\", + "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\SvenK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "CsvHelper": { + "target": "Package", + "version": "[33.0.1, )" + }, + "Microsoft.Extensions.Hosting.WindowsServices": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.11, )", + "autoReferenced": true + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[8.0.11, 8.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[8.0.11, 8.0.11]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[8.0.11, 8.0.11]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.g.props b/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.g.props new file mode 100644 index 0000000..c8c190a --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\SvenK\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.12.2 + + + + + + + + + + + + + C:\Users\SvenK\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + C:\Users\SvenK\.nuget\packages\microsoft.net.illink.tasks\8.0.11 + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.g.targets b/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.g.targets new file mode 100644 index 0000000..bdbcd2d --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/publish/win-x64/HRServer.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/publish/win-x64/project.assets.json b/HRServer-Exporter/HRServer/obj/publish/win-x64/project.assets.json new file mode 100644 index 0000000..f37542b --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/publish/win-x64/project.assets.json @@ -0,0 +1,3295 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "CsvHelper/33.0.1": { + "type": "package", + "compile": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.11": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/9.0.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + } + }, + "net8.0/win-x64": { + "CsvHelper/33.0.1": { + "type": "package", + "compile": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.11": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {}, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Text.Json/9.0.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + } + } + }, + "libraries": { + "CsvHelper/33.0.1": { + "sha512": "fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "type": "package", + "path": "csvhelper/33.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.33.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net462/CsvHelper.dll", + "lib/net462/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net48/CsvHelper.dll", + "lib/net48/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/net7.0/CsvHelper.dll", + "lib/net7.0/CsvHelper.xml", + "lib/net8.0/CsvHelper.dll", + "lib/net8.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "sha512": "YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "type": "package", + "path": "microsoft.extensions.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "sha512": "RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "sha512": "qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "sha512": "v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "sha512": "4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "sha512": "WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "sha512": "FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "sha512": "0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "type": "package", + "path": "microsoft.extensions.diagnostics/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "sha512": "1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "sha512": "uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "sha512": "3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "sha512": "jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "sha512": "wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "type": "package", + "path": "microsoft.extensions.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "lib/net462/Microsoft.Extensions.Hosting.dll", + "lib/net462/Microsoft.Extensions.Hosting.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "sha512": "yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "sha512": "OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "type": "package", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.WindowsServices.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets", + "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml", + "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.windowsservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/9.0.0": { + "sha512": "crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "sha512": "H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "sha512": "yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "type": "package", + "path": "microsoft.extensions.logging.console/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "sha512": "4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "type": "package", + "path": "microsoft.extensions.logging.debug/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets", + "lib/net462/Microsoft.Extensions.Logging.Debug.dll", + "lib/net462/Microsoft.Extensions.Logging.Debug.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "sha512": "/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets", + "lib/net462/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net462/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "sha512": "zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "lib/net462/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net462/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.0": { + "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "type": "package", + "path": "microsoft.extensions.options/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "sha512": "Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.ILLink.Tasks/8.0.11": { + "sha512": "zk5lnZrYJgtuJG8L4v17Ej8rZ3PUcR2iweNV08BaO5LbYHIi2wNaVNcJoLxvqgQdnjLlKnCCfVGLDr6QHeAarQ==", + "type": "package", + "path": "microsoft.net.illink.tasks/8.0.11", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "Sdk/Sdk.props", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", + "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", + "build/Microsoft.NET.ILLink.Analyzers.props", + "build/Microsoft.NET.ILLink.Tasks.props", + "build/Microsoft.NET.ILLink.targets", + "microsoft.net.illink.tasks.8.0.11.nupkg.sha512", + "microsoft.net.illink.tasks.nuspec", + "tools/net472/ILLink.Tasks.dll", + "tools/net472/ILLink.Tasks.dll.config", + "tools/net472/Mono.Cecil.Mdb.dll", + "tools/net472/Mono.Cecil.Pdb.dll", + "tools/net472/Mono.Cecil.Rocks.dll", + "tools/net472/Mono.Cecil.dll", + "tools/net472/Sdk/Sdk.props", + "tools/net472/System.Buffers.dll", + "tools/net472/System.Collections.Immutable.dll", + "tools/net472/System.Memory.dll", + "tools/net472/System.Numerics.Vectors.dll", + "tools/net472/System.Reflection.Metadata.dll", + "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net472/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net472/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/ILLink.Tasks.deps.json", + "tools/net8.0/ILLink.Tasks.dll", + "tools/net8.0/Mono.Cecil.Mdb.dll", + "tools/net8.0/Mono.Cecil.Pdb.dll", + "tools/net8.0/Mono.Cecil.Rocks.dll", + "tools/net8.0/Mono.Cecil.dll", + "tools/net8.0/Sdk/Sdk.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net8.0/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/illink.deps.json", + "tools/net8.0/illink.dll", + "tools/net8.0/illink.runtimeconfig.json", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.4.0": { + "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "sha512": "ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "content/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net462/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net8.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net9.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/netstandard2.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/9.0.0": { + "sha512": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "type": "package", + "path": "system.diagnostics.eventlog/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/net9.0/System.Diagnostics.EventLog.dll", + "lib/net9.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/9.0.0": { + "sha512": "eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "type": "package", + "path": "system.io.pipelines/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.9.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "sha512": "ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.ServiceProcess.ServiceController.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets", + "lib/net462/System.ServiceProcess.ServiceController.dll", + "lib/net462/System.ServiceProcess.ServiceController.xml", + "lib/net8.0/System.ServiceProcess.ServiceController.dll", + "lib/net8.0/System.ServiceProcess.ServiceController.xml", + "lib/net9.0/System.ServiceProcess.ServiceController.dll", + "lib/net9.0/System.ServiceProcess.ServiceController.xml", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/9.0.0": { + "sha512": "e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "type": "package", + "path": "system.text.encodings.web/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.9.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/9.0.0": { + "sha512": "js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "type": "package", + "path": "system.text.json/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.9.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "CsvHelper >= 33.0.1", + "Microsoft.Extensions.Hosting.WindowsServices >= 9.0.0", + "Microsoft.NET.ILLink.Tasks >= 8.0.11", + "Swashbuckle.AspNetCore >= 6.4.0" + ] + }, + "packageFolders": { + "C:\\Users\\SvenK\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "projectName": "HRServer", + "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "packagesPath": "C:\\Users\\SvenK\\.nuget\\packages\\", + "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\SvenK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "CsvHelper": { + "target": "Package", + "version": "[33.0.1, )" + }, + "Microsoft.Extensions.Hosting.WindowsServices": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.11, )", + "autoReferenced": true + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[8.0.11, 8.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[8.0.11, 8.0.11]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[8.0.11, 8.0.11]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HRServer/obj/publish/win-x64/project.nuget.cache b/HRServer-Exporter/HRServer/obj/publish/win-x64/project.nuget.cache new file mode 100644 index 0000000..2ba9d36 --- /dev/null +++ b/HRServer-Exporter/HRServer/obj/publish/win-x64/project.nuget.cache @@ -0,0 +1,54 @@ +{ + "version": 2, + "dgSpecHash": "NvswrF7B9zE=", + "success": true, + "projectFilePath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\HRServer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\SvenK\\.nuget\\packages\\csvhelper\\33.0.1\\csvhelper.33.0.1.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.0\\microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.0\\microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.binder\\9.0.0\\microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\9.0.0\\microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\9.0.0\\microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\9.0.0\\microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.json\\9.0.0\\microsoft.extensions.configuration.json.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\9.0.0\\microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.0\\microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.0\\microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.diagnostics\\9.0.0\\microsoft.extensions.diagnostics.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\9.0.0\\microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\9.0.0\\microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\9.0.0\\microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\9.0.0\\microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.hosting\\9.0.0\\microsoft.extensions.hosting.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\9.0.0\\microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.hosting.windowsservices\\9.0.0\\microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging\\9.0.0\\microsoft.extensions.logging.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.0\\microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.configuration\\9.0.0\\microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.console\\9.0.0\\microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.debug\\9.0.0\\microsoft.extensions.logging.debug.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\9.0.0\\microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\9.0.0\\microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.options\\9.0.0\\microsoft.extensions.options.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\9.0.0\\microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.0\\microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.11\\microsoft.net.illink.tasks.8.0.11.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.diagnostics.diagnosticsource\\9.0.0\\system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.diagnostics.eventlog\\9.0.0\\system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.io.pipelines\\9.0.0\\system.io.pipelines.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.serviceprocess.servicecontroller\\9.0.0\\system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.text.encodings.web\\9.0.0\\system.text.encodings.web.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\system.text.json\\9.0.0\\system.text.json.9.0.0.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\8.0.11\\microsoft.netcore.app.runtime.win-x64.8.0.11.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\8.0.11\\microsoft.windowsdesktop.app.runtime.win-x64.8.0.11.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\8.0.11\\microsoft.aspnetcore.app.runtime.win-x64.8.0.11.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/HorseViewer.csproj b/HRServer-Exporter/HorseViewer/HorseViewer.csproj deleted file mode 100644 index f8a0623..0000000 --- a/HRServer-Exporter/HorseViewer/HorseViewer.csproj +++ /dev/null @@ -1,16 +0,0 @@ - - - - WinExe - net8.0-windows - enable - true - enable - HR-Collector_Icon.ico - - - - - - - \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/HorseViewer.csproj.user b/HRServer-Exporter/HorseViewer/HorseViewer.csproj.user deleted file mode 100644 index dc0c29c..0000000 --- a/HRServer-Exporter/HorseViewer/HorseViewer.csproj.user +++ /dev/null @@ -1,14 +0,0 @@ - - - - - Form - - - Form - - - Form - - - \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/Models/Horse.cs b/HRServer-Exporter/HorseViewer/Models/Horse.cs deleted file mode 100644 index 6a1b991..0000000 --- a/HRServer-Exporter/HorseViewer/Models/Horse.cs +++ /dev/null @@ -1,287 +0,0 @@ -using System.Text.Json; -using System.Text.Json.Serialization; - -namespace HorseViewer.Models -{ - public static class HorseFactory - { - public static string HorseDataPath = "horses.json"; - // Thread-safe Dictionary - public static Dictionary Horses = new(); - public static Horse? GetHorse(ulong id) - { - return Horses.TryGetValue(id, out var horse) ? horse : null; - } - public static void AddOrUpdateHorse(Horse horse) - { - if (horse == null || horse.Id == null) - throw new ArgumentNullException(nameof(horse), "Horse or its ID cannot be null."); - - Horses[horse.Id.Value] = horse; - } - public static IReadOnlyDictionary GetAllHorses() - { - return Horses; - } - public static void SaveHorsesToFile() - { - var json = JsonSerializer.Serialize(Horses); - File.WriteAllText(HorseDataPath, json); - } - public static void LoadHorsesFromFile() - { - if (!File.Exists(HorseDataPath)) - return; - - var json = File.ReadAllText(HorseDataPath); - Horses = JsonSerializer.Deserialize>(json); - } - } - - public class Horse - { - // Basic Information - private ulong? _id; - private int? _age; - private string _horseName = string.Empty; - private string _gender = string.Empty; - private string _breed = string.Empty; - private string _link = string.Empty; - private DateTime _lastDrawnDate = DateTime.Now; - - [JsonPropertyName("id")] - public ulong? Id - { - get => _id; - set - { - _id = value; - LoadState.BasicInfoLoaded = true; - } - } - [JsonPropertyName("age")] - public int? Age - { - get => _age; - set - { - _age = value; - } - } - [JsonPropertyName("name")] - public string HorseName - { - get => _horseName; - set - { - _horseName = value; - } - } - [JsonPropertyName("gender")] - public string Gender - { - get => _gender; - set - { - _gender = value; - } - } - [JsonPropertyName("breed")] - public string Breed - { - get => _breed; - set - { - _breed = value; - } - } - [JsonPropertyName("link")] - public string Link - { - get => _link; - set - { - _link = value; - } - } - [JsonPropertyName("lastDrawnDate")] - public DateTime LastDrawnDate - { - get => _lastDrawnDate; - set - { - _lastDrawnDate = value; - } - } - private HorseSummary _summary = new(); - public HorseSummary Summary - { - get => _summary; - set - { - _summary = value; - LoadState.SummaryLoaded = true; - } - } - - private HorseTraining _training = new(); - public HorseTraining Training - { - get => _training; - set - { - _training = value; - LoadState.TrainingLoaded = true; - } - } - - private HorseGenetics _genetics = new(); - public HorseGenetics Genetics - { - get => _genetics; - set - { - _genetics = value; - LoadState.GeneticsLoaded = true; - } - } - - private HorseAchievements _achievements = new(); - public HorseAchievements Achievements - { - get => _achievements; - set - { - _achievements = value; - LoadState.AchievementsLoaded = true; - } - } - - private HorseHealth _health = new(); - public HorseHealth Health - { - get => _health; - set - { - _health = value; - LoadState.HealthLoaded = true; - } - } - - public DataLoadState LoadState { get; set; } = new(); - - public bool IsAllDataLoaded() - { - return LoadState.IsAllDataLoaded(); - } - - public void PrintLoadState() - { - Console.WriteLine("Load State of Horse Data:"); - Console.WriteLine($"- Basic Info Loaded: {LoadState.BasicInfoLoaded}"); - Console.WriteLine($"- Summary Loaded: {LoadState.SummaryLoaded}"); - Console.WriteLine($"- Training Loaded: {LoadState.TrainingLoaded}"); - Console.WriteLine($"- Genetics Loaded: {LoadState.GeneticsLoaded}"); - Console.WriteLine($"- Achievements Loaded: {LoadState.AchievementsLoaded}"); - Console.WriteLine($"- Health Loaded: {LoadState.HealthLoaded}"); - } - } - - public class DataLoadState - { - public bool BasicInfoLoaded { get; set; } = false; - public bool BasicInfoNeedsRefresh { get; set; } = false; - public bool SummaryLoaded { get; set; } = false; - public bool SummaryNeedsRefresh { get; set; } = false; - public bool TrainingLoaded { get; set; } = false; - public bool TrainingNeedsRefresh { get; set; } = false; - public bool GeneticsLoaded { get; set; } = false; - public bool GeneticsNeedsRefresh { get; set; } = false; - public bool AchievementsLoaded { get; set; } = false; - public bool AchievementsNeedsRefresh { get; set; } = false; - public bool HealthLoaded { get; set; } = false; - public bool HealthNeedsRefresh { get; set; } = false; - - public bool IsAllDataLoaded() - { - return BasicInfoLoaded && SummaryLoaded && TrainingLoaded && GeneticsLoaded && AchievementsLoaded && HealthLoaded; - } - } - - public class HorseSummary - { - [JsonPropertyName("RelatedIds")] - public List RelatedIds { get; set; } = new(); - } - - public class HorseTraining - { - [JsonPropertyName("Training")] - public string Training { get; set; } = string.Empty; - } - - public class HorseGenetics - { - [JsonPropertyName("GP")] - public int GP { get; set; } - - [JsonPropertyName("GeneticPotential")] - public Dictionary GeneticPotential { get; set; } = new(); - - [JsonPropertyName("Disciplines")] - public Dictionary Disciplines { get; set; } = new() { - { "Dressage", 0 }, - { "Driving", 0 }, - { "Endurance", 0 }, - { "Eventing", 0 }, - { "Flat Racing", 0 }, - { "Show Jumping", 0 }, - {"Western Reining", 0 } - }; - - [JsonPropertyName("Colors")] - public Dictionary Colors { get; set; } = new() { - { "Extension", string.Empty }, - { "Agouti", string.Empty }, - { "Grey", string.Empty}, - { "Creampearl", string.Empty }, - { "Dun", string.Empty }, - { "Champagne", string.Empty }, - { "Silver", string.Empty }, - { "Mushroom", string.Empty }, - { "Frame", string.Empty}, - { "Appaloosa", string.Empty }, - { "PATN1", string.Empty }, - { "MITF", string.Empty }, - { "SW2", string.Empty }, - { "KIT", string.Empty }, - { "RAB", string.Empty}, - { "Seal", string.Empty }, - { "Flaxen", string.Empty } - }; - } - - public class HorseAchievements - { - [JsonPropertyName("ShowResults")] - public List ShowResults { get; set; } = new(); - [JsonPropertyName("Conformation")] - public Dictionary Conformation { get; set; } = new(); - [JsonPropertyName("ShortConformation")] - public string ShortConformation { get; set; } = string.Empty; - [JsonPropertyName("MaxShowResult")] - public double MaxShowResult { get; set; } = 0; - [JsonPropertyName("MinShowResult")] - public double MinShowResult { get; set; } = 0; - [JsonPropertyName("MaxCompetitionResult")] - public double MaxCompetitionResult { get; set; } = 0; - [JsonPropertyName("MinCompetitionResult")] - public double MinCompetitionResult { get; set; } = 0; - } - - public class HorseHealth - { - [JsonPropertyName("Health")] - public Dictionary Health { get; set; } = new(); - } -} diff --git a/HRServer-Exporter/HorseViewer/ViewEditTable.Designer.cs b/HRServer-Exporter/HorseViewer/ViewEditTable.Designer.cs deleted file mode 100644 index 1973616..0000000 --- a/HRServer-Exporter/HorseViewer/ViewEditTable.Designer.cs +++ /dev/null @@ -1,94 +0,0 @@ -namespace HorseViewer -{ - partial class ViewEditTable - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - checkedListBoxProperties = new CheckedListBox(); - button1 = new Button(); - txtTabName = new TextBox(); - button2 = new Button(); - SuspendLayout(); - // - // checkedListBoxProperties - // - checkedListBoxProperties.FormattingEnabled = true; - checkedListBoxProperties.Location = new Point(24, 12); - checkedListBoxProperties.Name = "checkedListBoxProperties"; - checkedListBoxProperties.Size = new Size(450, 364); - checkedListBoxProperties.TabIndex = 0; - // - // button1 - // - button1.Location = new Point(713, 415); - button1.Name = "button1"; - button1.Size = new Size(75, 23); - button1.TabIndex = 1; - button1.Text = "button1"; - button1.UseVisualStyleBackColor = true; - button1.Click += button1_Click; - // - // txtTabName - // - txtTabName.Location = new Point(574, 22); - txtTabName.Name = "txtTabName"; - txtTabName.Size = new Size(100, 23); - txtTabName.TabIndex = 2; - // - // button2 - // - button2.Location = new Point(12, 415); - button2.Name = "button2"; - button2.Size = new Size(75, 23); - button2.TabIndex = 3; - button2.Text = "button2"; - button2.UseVisualStyleBackColor = true; - button2.Click += button2_Click; - // - // ViewEditTable - // - AutoScaleDimensions = new SizeF(7F, 15F); - AutoScaleMode = AutoScaleMode.Font; - ClientSize = new Size(800, 450); - Controls.Add(button2); - Controls.Add(txtTabName); - Controls.Add(button1); - Controls.Add(checkedListBoxProperties); - Name = "ViewEditTable"; - Text = "ViewEditTable"; - ResumeLayout(false); - PerformLayout(); - } - - #endregion - - private CheckedListBox checkedListBoxProperties; - private Button button1; - private TextBox txtTabName; - private Button button2; - } -} \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/ViewEditTable.cs b/HRServer-Exporter/HorseViewer/ViewEditTable.cs deleted file mode 100644 index 404e026..0000000 --- a/HRServer-Exporter/HorseViewer/ViewEditTable.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace HorseViewer -{ - public partial class ViewEditTable : Form - { - public string TabName { get; private set; } - public List SelectedProperties { get; private set; } = new(); - public ViewEditTable() - { - InitializeComponent(); - // Hole alle Properties von HorseGridViewItem - var properties = typeof(HorseGridViewItem).GetProperties() - .Select(p => p.Name) - .ToList(); - - // Fülle die CheckedListBox - foreach (var property in properties) - { - checkedListBoxProperties.Items.Add(property, true); // Standardmäßig alle angehakt - } - } - - private void button1_Click(object sender, EventArgs e) - { - TabName = txtTabName.Text.Trim(); - if (string.IsNullOrWhiteSpace(TabName)) - { - MessageBox.Show("Bitte einen Namen für den Tab eingeben."); - return; - } - - // Hole die ausgewählten Properties - SelectedProperties = checkedListBoxProperties.CheckedItems.Cast().ToList(); - - if (SelectedProperties.Count == 0) - { - MessageBox.Show("Bitte mindestens eine Eigenschaft auswählen."); - return; - } - - DialogResult = DialogResult.OK; - Close(); - - } - - private void button2_Click(object sender, EventArgs e) - { - DialogResult = DialogResult.Cancel; - Close(); - } - } -} diff --git a/HRServer-Exporter/HorseViewer/ViewEditTable.resx b/HRServer-Exporter/HorseViewer/ViewEditTable.resx deleted file mode 100644 index 8b2ff64..0000000 --- a/HRServer-Exporter/HorseViewer/ViewEditTable.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/ViewMain.Designer.cs b/HRServer-Exporter/HorseViewer/ViewMain.Designer.cs deleted file mode 100644 index 33ba61c..0000000 --- a/HRServer-Exporter/HorseViewer/ViewMain.Designer.cs +++ /dev/null @@ -1,103 +0,0 @@ -namespace HorseViewer -{ - partial class ViewMain - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ViewMain)); - tabControl1 = new TabControl(); - menuStrip1 = new MenuStrip(); - toolStripMenuItem1 = new ToolStripMenuItem(); - einstellungenToolStripMenuItem = new ToolStripMenuItem(); - editTableToolStripMenuItem = new ToolStripMenuItem(); - menuStrip1.SuspendLayout(); - SuspendLayout(); - // - // tabControl1 - // - tabControl1.Dock = DockStyle.Fill; - tabControl1.Location = new Point(0, 24); - tabControl1.Name = "tabControl1"; - tabControl1.SelectedIndex = 0; - tabControl1.Size = new Size(1229, 693); - tabControl1.TabIndex = 2; - // - // menuStrip1 - // - menuStrip1.Items.AddRange(new ToolStripItem[] { toolStripMenuItem1 }); - menuStrip1.Location = new Point(0, 0); - menuStrip1.Name = "menuStrip1"; - menuStrip1.Size = new Size(1229, 24); - menuStrip1.TabIndex = 3; - menuStrip1.Text = "menuStrop"; - // - // toolStripMenuItem1 - // - toolStripMenuItem1.DropDownItems.AddRange(new ToolStripItem[] { einstellungenToolStripMenuItem, editTableToolStripMenuItem }); - toolStripMenuItem1.Name = "toolStripMenuItem1"; - toolStripMenuItem1.Size = new Size(46, 20); - toolStripMenuItem1.Text = "File..."; - // - // einstellungenToolStripMenuItem - // - einstellungenToolStripMenuItem.Name = "einstellungenToolStripMenuItem"; - einstellungenToolStripMenuItem.Size = new Size(180, 22); - einstellungenToolStripMenuItem.Text = "Settings"; - // - // editTableToolStripMenuItem - // - editTableToolStripMenuItem.Name = "editTableToolStripMenuItem"; - editTableToolStripMenuItem.Size = new Size(180, 22); - editTableToolStripMenuItem.Text = "Edit table"; - editTableToolStripMenuItem.Click += editTableToolStripMenuItem_Click; - // - // ViewMain - // - AutoScaleDimensions = new SizeF(7F, 15F); - AutoScaleMode = AutoScaleMode.Font; - ClientSize = new Size(1229, 717); - Controls.Add(tabControl1); - Controls.Add(menuStrip1); - Icon = (Icon)resources.GetObject("$this.Icon"); - MainMenuStrip = menuStrip1; - Name = "ViewMain"; - Text = "Horsetastic"; - Load += ViewMain_Load; - menuStrip1.ResumeLayout(false); - menuStrip1.PerformLayout(); - ResumeLayout(false); - PerformLayout(); - } - - #endregion - private TabControl tabControl1; - private MenuStrip menuStrip1; - private ToolStripMenuItem toolStripMenuItem1; - private ToolStripMenuItem einstellungenToolStripMenuItem; - private ToolStripMenuItem editTableToolStripMenuItem; - } -} diff --git a/HRServer-Exporter/HorseViewer/ViewMain.cs b/HRServer-Exporter/HorseViewer/ViewMain.cs deleted file mode 100644 index 4b60f0f..0000000 --- a/HRServer-Exporter/HorseViewer/ViewMain.cs +++ /dev/null @@ -1,129 +0,0 @@ -using HorseViewer.Models; -using System.Text.Json; -using System.Text.Json.Serialization; - -namespace HorseViewer -{ - public partial class ViewMain : Form - { - public ViewMain() - { - InitializeComponent(); - } - - private void button1_Click(object sender, EventArgs e) - { - /*FileDialog fileDialog = new OpenFileDialog(); - if (fileDialog.ShowDialog() == DialogResult.OK) - { - horsePath = fileDialog.FileName; - } - var json = File.ReadAllText(horsePath); - HorseFactory.Horses = JsonSerializer.Deserialize>(json); - - var result = HorseFactory.GetAllHorses().Values.Select(horse => new HorseGridViewItem - { - Id = horse.Id ?? 0, - Name = horse.HorseName, - Breed = horse.Breed, - Gender = horse.Gender, - Age = horse.Age ?? 0, - LastDrawnDate = horse.LastDrawnDate, - IsAllDataLoaded = horse.IsAllDataLoaded() - }).ToList(); - - dataGridView1.DataSource = result;*/ - } - - private void AddNewTab() - { - using (var settingsForm = new ViewEditTable()) - { - if (settingsForm.ShowDialog() == DialogResult.OK) - { - // Erstelle eine neue TabPage - var tabPage = new TabPage(settingsForm.TabName); - var dataGridView = new DataGridView - { - Dock = DockStyle.Fill, - AutoGenerateColumns = false - }; - - // Fge die ausgewhlten Properties als Spalten hinzu - foreach (var propertyName in settingsForm.SelectedProperties) - { - dataGridView.Columns.Add(new DataGridViewTextBoxColumn - { - HeaderText = propertyName, - DataPropertyName = propertyName - }); - } - - // Hole die Daten und filtere nur die ausgewhlten Properties - var filteredData = HorseFactory.GetAllHorses() - .Values - .Select(horse => new HorseGridViewItem - { - Id = horse.Id ?? 0, - Name = settingsForm.SelectedProperties.Contains(nameof(HorseGridViewItem.Name)) ? horse.HorseName : null, - Breed = settingsForm.SelectedProperties.Contains(nameof(HorseGridViewItem.Breed)) ? horse.Breed : null, - Gender = settingsForm.SelectedProperties.Contains(nameof(HorseGridViewItem.Gender)) ? horse.Gender : null, - Age = settingsForm.SelectedProperties.Contains(nameof(HorseGridViewItem.Age)) ? horse.Age ?? 0 : 0, - LastDrawnDate = settingsForm.SelectedProperties.Contains(nameof(HorseGridViewItem.LastDrawnDate)) ? horse.LastDrawnDate : DateTime.MinValue, - IsAllDataLoaded = settingsForm.SelectedProperties.Contains(nameof(HorseGridViewItem.IsAllDataLoaded)) && horse.IsAllDataLoaded() - }) - .ToList(); - - dataGridView.DataSource = filteredData; - - // Fge DataGridView zur TabPage hinzu - tabPage.Controls.Add(dataGridView); - - // Fge die TabPage zum TabControl hinzu - tabControl1.TabPages.Add(tabPage); - } - } - } - private void ViewMain_Load(object sender, EventArgs e) - { - // Initialisiere TabControl mit Standardtab - var json = File.ReadAllText("Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HRServer\\Horses.json"); - HorseFactory.Horses = JsonSerializer.Deserialize>(json); - tabControl1.TabPages.Clear(); - var defaultTab = new TabPage("Default Tab"); - var defaultDataGridView = new DataGridView - { - Dock = DockStyle.Fill, - AutoGenerateColumns = true, - DataSource = HorseFactory.GetAllHorses().Values.Select(horse => new HorseGridViewItem - { - Id = horse.Id ?? 0, - Name = horse.HorseName, - Breed = horse.Breed, - Gender = horse.Gender, - Age = horse.Age ?? 0, - LastDrawnDate = horse.LastDrawnDate, - IsAllDataLoaded = horse.IsAllDataLoaded() - }).ToList() - }; - defaultTab.Controls.Add(defaultDataGridView); - tabControl1.TabPages.Add(defaultTab); - } - - private void editTableToolStripMenuItem_Click(object sender, EventArgs e) - { - AddNewTab(); - } - } - public class HorseGridViewItem - { - public ulong Id { get; set; } - public string Name { get; set; } - public string Breed { get; set; } - public string Gender { get; set; } - public int Age { get; set; } - public DateTime LastDrawnDate { get; set; } - public bool IsAllDataLoaded { get; set; } - } -} - diff --git a/HRServer-Exporter/HorseViewer/ViewMain.resx b/HRServer-Exporter/HorseViewer/ViewMain.resx deleted file mode 100644 index b13de8d..0000000 --- a/HRServer-Exporter/HorseViewer/ViewMain.resx +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - - - AAABAAEAAAAAAAEAIAA0NAAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAEAAAABAAgGAAAAXHKoZgAAAAFv - ck5UAc+id5oAADPuSURBVHja7V0HlBVFFp0/iSA5SBYUREVMiKKrIAbMAcWcE64rZl2zi2IA46ogYk6L - GRUVxJyzYgQU+AMIgiISZGCGMMNWrbfZouj/f7/q6u7q7qpz3lnPWaZ/d1W9W69euK+oyA5jRjY7jSr1 - mTRk0oFJPyaHMunP5DAm5zF5jslbTN5UEP53LzC5CM/rj+fvw6QTk0b47XLqe9thh1V071IMRWvJZHso - 4lFMBkPBX2byOZMFTJYIUs1kjQaplp77B5Ov8LtjmTzI5O8Ahx2ZbAhwKLagYIcdNKXPQNnbM9mNySlM - bmHyKpMPmfzCZDmTKia1mhRch6zEe81j8jGTCUzuYHIakz2YbARQyFhAsMMq/boK34BJV5ygQ5iMYzIR - J/pKg5RcFRgWMvkGoHAjkyOYbEEBBDvsSJLSl+GEP5DJv2BG/8ik0rBTPShZxmQagO5aXGk2AxBmLBDY - kUSl34DJ1jCJR+DOviQlCp9P+Pf/CQB8AYC4P5O2TEosGNgRZ8XnHvotmZzO5Ekm0zU65pIqNUwWwY8w - DBGH1vnAwA47TDrp68GcPZnJ40x+gsPOKreadcAjDh8wuQ4RhvrWX2CHacrPw12bMDmOyUNMJsMjbpVY - r2UwA6B6MpympRYI7IjyxOf3+r/h3joRzi2rrMELB9fvmVzPpA+iCRYI7Aj1br87k0cQl18dg9NTRWpj - 8F2/MnkK1lfHfFEEO+zwq/zcM30kk4eZzDXonswBaAWTOUymCPIl3vV63KGpcjOy/X4QnjkLPo3VhgEf - t74+Y3IugMBaBHZoU/zWCN+9y2RphJt8FczfCiZfI7GGe8ovZ3IGk53hgHSkA5ySJfBTUIXfsRsz6Sw8 - syfu4Pw3r2QyCh57bpL/BiCKEhiq8T5nIdciY0HADlVTn+e0n4iimGURmLfVONW5F/xOJhfA1N0Wp1wT - KLfn9FqNkoGUAyA7I3WZ1wRcxuQJKCK3Hhbje8KcvyqkTl8B0Cq3FoEdXpW/OZNjmLyG7LywTPlKhA1f - QaHPiUJxTWkESu4HHOoBGLowOQDWwouIkCwN0b/gRA9uZ9IDWZgWBKziu0pT5KmPC8nUXwlzfgLu6QNg - ZjdSPdUjtpgKCU/13ZTJIUyuYfIOk/kh1TtwwMmi1qKDtQYsAIjSCPnoLyI9N+h7/CyU8f6DyVa4Z2ey - MS6dVQSEFkx2wTw8CTBcGcL8v4Ny6qYWANKt/FzpeiGMtDjATbcad3le9HMO7vAbpKkKziOxSXcmZwIc - Z0FZg1qTpQD8PnKasR3pUP4OuJdOD3CTVSIUdzmIPBrYNFbPYLANkwuZfBLwdWwWrl/dZCvMjmRutlIU - mLwbULjKyVIbifr+9lbpfQFCG5RN8yjIpICiCbVwTg7CdcyuUUI3VWt41+cFdNrzqMHxCNGVWoXXCgYl - yP8/D07TPwMKHY5msp2bT8aO+G6iEsSoJwRwr/yZyQPw4LewCh8KIDjRmvEBAcFPuLa1sesZ/83CiTQv - gaLq3CRzYObvxKSO3SiRrG1zhBTvYTIzgBAtPzD6unER2GH+BilGauyLmkk4eA3AfUx2zaX4doOEfj0o - R8LUcCazA7DwLsVBYtc4JhujGcJtOj38v6HWvy+y3KzimwcEdVCe/aTmDM5q0JX1tOtt/kbYCnnounL3 - V4CSe+98bDR2GAUE/AAYiFoAndbft0wOd7P87Ih+8ctAJvmZxoyxieiK09YqfiyBgOd6nM3kUwC5jn3B - U5evBsjY/WDIgtfFQv+iaZF/RS18F1tOGnsgyCAsewHyCGo1hQufAOGr3RsRL3IbZHIt1LSw3Gm4L0DF - nvrJsQYyqAYcrdE/8DGszlK7R6JZXM6zP0ZDAUktsvcuQumtVfrkgkEzkIVM1JQJOgf+BgsCIS5mMdJs - v9awgLz67344D4ut8qcCCDIou74LtOM6IkTnupGT2hHM4g3QlPjxHZNT0YzTKn76rIH6IH75UoNvgBcs - 3etW+2GHXuXvD4YXvx7+l3EntIqf3Hv/euua4//rhuQuv1wQvFDpP7miRnb4W9j6IKOs8LlIvO3UTUza - 2UVKtsLnWts8bEWngMPQL/fDo2iHbveWpkVuirCcX9KOqXDY1LPKn1ilL4UydwHbUE8nccfjM7dHkdFq - nyDwBshG7P7yudi8Pvs2nxldK8Ay08uWeSZO6evAs78dSrHvQGSI1/f/DkfxZrnWOccz+T3+Fg1XAv4O - /exeU1/0RjDX/TTXXIg8gRZW8ROh/MXgddgd3ADc3H4TRUBu+2Qe2IWov1cfvRb81pPw5KM97L6jLzw3 - 4270qfy8rvtom7udCOXn+Rl7MRkKmrCFHs30uV4AIM/v7oacAT8g8D2eY/efx8nfAPTNfjrsfi6bX0ma - fBP4/0P4luaovhyCwp5FiuXb21De1+U9uC/hfZ+hwm9QQm5BoMCE10O33WU+HDCjQR+VCMXXqLTFuC93 - kKRxFKCQx4nXBbUd72pI1CEDQI5364SEMT9Zp1+BQMZao3mU/wofLLA16B/fJq4TrKjUTv++TZHbcDLm - UZZ/4yT7QZI34GsR/+3lcKptg+dugoSpYr9gkOPfl8FJOxxXN139AZQAIMe7Ngf70CqflumOFgDWn1xO - u3S+D443vmEek+P7CVP6DaCI24IK62q0vHoNSjMNuem6lKcajDj8uT+iY9It6P+3M95lAy+gUEDxe4L1 - Vzdtm28AcHnvlgBLP8VnnyDcmF4QED9++vSpRcjwU2XrnQ+O/xZxmVQPyl4Cc50XPO3H5CqEMqfA4x0E - GSYlk/JXvAt/p1uZnATroykB0LZCiHdGgO/qGwBc1os7lU/wCVgfOu+VOhBw2Qg744RRVf71qrFiqvj1 - cNc8EvHst7DJFofYTNNPKfUcXCcuhwN2oxzNOJtjzb4P4b20AIDL2mUQYZrj491ejNOhFZQSdIezR2UC - F6CVVJmpk+jhFGwIc/A8OC+/DbEjcZAdeRfC8z0ClZsdcT07Epl2S0N6F20A4LKexfCTzPWRoDZY5p5I - 08m/BU4Mlcn7A51cykz0qnrokrsN3v/5EPrgRS1/IiPv0xCar4YJAM5V7WRciVTej1t3F6cCBKSJ2wRk - m6oFPeeBDtoY5feQo74ZHGhPo6hpRYKV3hTRCgA51pmv7Wm4jqru53MS3aTUJc3ybh+IeZFJ2X0FFL8R - UkGHgX+g2iplvAEgx5qXAdx/98EstGdicwQk58lARVNwCZo01DX81HeIKE/Baf9bDJx4FgD8r38ZrnWq - yUvv4VqcLACQJqmXYoFFNRwm9UxAyQJU1IMQ662yCqhV+B6YPGNG9jOCJRUoALjshXJcT1XzBJ5FlCQZ - ACBNTmckrahMzHNuXOwGmfptYQJ+YBVfq6xAnsAziPhsPnv2rB6EsHHYAODkCVyoyF/Bge0y0b+VFOXn - 4a6HfWRObWOo8rcCr+C7PouXrKwrfC7fAdnmthJvY3dETrz29usW9H7J0aviKkWfzwJEFuLrD3CZkFMU - 49vr5U4bovyNEAN+U2MbMit/KcyHqMVvk2Pu/04Im77jZCdGsE+agZxEZR6mAPgSAQBbwwOuQuG1q2GK - X4bEnYcjiGknWVbC0hvkxqwrnaxPE577oJMlGtGe2RqApjInj8iM1XEEgBa4v6vQLJ8R1cmfY/N1RThv - ulVYrcJDYNe4EWnmSB6jEMPe6tDARXh49FDsWVmJsuiSWAGAlCBxuULCC7//3YBKMxOUvwmTY3EdqbEK - q0341ekpkH6UeWTyPZVQ7civE8dFpTzSt+ynmC34c6zYhKSPPljxo++Tu6xEqPw9sUmXWoXVKhUw95t4 - 4RIQvOujCb8xT+z9ELEulMG7r+IHezk2RUPCS3ZE80Tqx34qs/lEGLU400eVopXcfRg/QtZbhqD8zhVs - GuG33nIAxpADcQMQnlCTwlbAki4zGgAktLtJwVyeKps7EYRvnDr1x6x3X7ssBvHHJooMQicQr5NXG5gt - ujFyRVT6Dx4cFwDYT6EwohIFFVEqfwmISb61yqpdZoM0hFzDIWTYPUKMpfcxRWGkb94D80GdwwliMpyp - yt8OsVdq/fhdotMvgrt+KyRuzLPKGoiX/xjR5FdYp87E69j7pimLxCNwsULiWBX+rtQoEJAU6VKFtkoT - YRpFpfw7gu9upVVW7fI1rCqlUlfhb46mpFjPmJF9cdGihfV/+WW2Udl0UiLZIwrzyQ+ovY0BAJe782SF - UNCZYSxSDkbdftikVln1y5eIohT5VP4yUHJ7/u2KiunzmJwhh5IN8wnwFOUvFOZ1jEzlboLy8wytexU8 - wveI2U4hKn8D5JnPsorq26tfi9RcfjplEeJ7369DV/i7LYnef7F8fBQvIDIJBKT3OEiHv8yED+mn8CFf - oAlEoB+So8nDcBvbV87Vn4VrG+/BcB2Ta5mchQ463SFt2Qmc8bO2wt+e7YNPoRb77ChDS8nLQbVeo2Bd - dYzsW7Lr920bpxASOjYC5e8Gb6rN6POeoz8bJ/qdqFLbHmm79XCNcu0LMGXKJF9rK2ST3q/hOzhJB28x - 39pAEOikkDOzCvwYJVEDQDEcf9R03/tADRbYQrhsys188BGkSVbBc/8SkwvgJG2VK103G1APQSF5ZrxG - MBsjN+UwBAQGKDAJ8TThv0XyHcKPbo97H+XFv3NqtENU/k01bqSkylIkqVyS/auHXZNc2XrZgBuGCmuY - QRThG82Rid0MA4C6oFCnXnVGhU4eIhX73K5wh/x7wJtGtlB2xslvefnchddrPIp7cnsvSh/yPsuAEOZh - jT0Tvs4a0K3Xpdr0KwXOw91D+w7phbfL0ts6vQFzMow208WIH/9kldzVzJ+ME6RfrnBZlAri8g6NwQg9 - V9McfI7QtUkgcJwCz8RLofEISmmzNyucNPuGdPoX40SbbZV9PZmGrMct3FJzDWdc5n6IA+GU1NFM5fGo - Y+ouBUMPKZTPHx/KN0hMJxRiDO51HxpURZMLLfcAG+N3bUDxNBxHJaYqvkcg6AQQy/qckyo4sUsMAoGd - svTGo68HbgVIp+sNxDv1RLEKLGDl758NtuNsHFtzjWVymNf6exNHjuKtXWAC+0njnoNrkClXgVLkVlBS - 6itx3Q0FALoR79X8Q/4Zkul/kKXsWsfq4hGX07M52nbHbeSwBjh56Misv65LH4WRlEb4vo4KacLjxHUO - 8vS/hnj6f4tqrqAdf/uBU8Aq/19ZmbchjTaTBOUvAALNwLjjx0E4PCt0nTLg284n+jm4pXd4IGssJdNM - Jp7+V6iUghInq59l71l76nN23UNyOfiSMnJcCY5SuD+L2YIDDPIFdMLVmfINY0WnZhDx2CuJabQfB5Gz - 7MIUO9Eq//+cfHdRGXcSBgJO6HeO4hxOhIPbFBC4mOgLWIJrcCAA0IXI778UiByk8jdVrKtOmvyQq+Al - qcpfIAR8vI/rwGiRlDbib+GJWe8R3/9eraQhwssMIqLRONHrHMAENUEm4oqUK/8n8IanTvELgMDpis1b - luFvTSkbPjRL6zM4BVd1/+8v1c+PJYYljgpQ+csQKqlOseKvQHps17QqfYE9wh16dyumgE9CWbMJV4FG - RN2rQY6Ef7+b8BL7EKuV+F2qra7JcznduJPr95TH9m/NSh2T7Vhvv3QCPbjKHD8UJk9lge84g2h9fy9G - 3vz+eH1iQwYuN+psySQp/85ZtV6DSZEZ6JBTP2tWHrvv64euikPpb/ZSJHv9E1TkJlgBXWHaU6JvZ+oC - gN5Etp+KrNDOW/Mma5Pymv6ZyOjLZM0q1PEFAkHwDEiZddcpkNU6ztWeBsx1Mb6Bcp15AVd334t8LXHS - btXphZTudDdpKgKJo3wLh1Bx1qyOyWKYWAcAZHC16QhpJyboKFoCbZAyrDLvL4RWbZf/G7oTuRF5b4S+ - Su8t/GgH8I95/dHfxTprzRvuaMS600i8OVaOTxui/M1ArnEO2lddCn9RuaK5zu/cA3Fv/wbyFUK9/eTk - JuKze8GCUuFBPD+IZDbi3JegoI5iBVznFwCOJnraX9MV+suu32L5uxQr/8aGKX8T3I9fRduqVfA+14hU - VQq+pmtx987FiX+VY9YqPL8UvikVPkheX7KDAfO/DbECkjM8tSC/syIhI69LPlEjH5yY7PNMSs3+V+Qi - FQOUnyenPJiHVfk3Jy+B+PxT8ii/mFw20IdDsL0ParingshrIX5DOZEvYBFqZLy/s1SR9AMx7be15tM/ - A8rp5SlU/glyjN8Ah18bkGjU5LFY7nTu7ITnNydkvJHbfknfsItiufiyIOnsCO9/HNEqf8Dh4aD+2OFE - xRuq454kfey2KS3yeQM1DiYpfyskHq0uUFu/vYJy7kbIM5mjEmWSsgQvU8wg/Qlh6ChBoAtRJyZnKa33 - BIfDSGIRwt6azX/eMegxwzviBEE0+jbKeE2irm4GKvdCEZgnxXoEwm+cRZjLlTgF/UQaNoT/QtUyaxMh - SWoJSr0prEfesnKluxKFivkzkexT04eeEHH3nlqcEnPBM8DR/13UjQ+D3KnZQvkoam9/jrW4wMOJuUyl - Hh3/diDBOVcl/o4Pi2Z3Rdq4VaiKLY7QCtiTGBFbWyDk9QcOIVIw36Qj80/4/ba464XNlDsfeeDj8U3/ - wJ2RsyDxHnMt4YgpmTr1x+Lff59fZ8aM7F2afv8XZK2ZpvybeYzAfIeOQSon8w4gjfVa7KJMLyddBQYB - uKhrNVteq5DXpCWxm9D3ntZGMDHuJG7cnTSa/iUI94SR8FOF5Aqe6nwhToUu8PaWeMhI6wXA8PseS3DK - lhqm/HUIe2G0SpMK4br3iker7BY/iWbS+vHf/Y/imn0ocy+EuC78sL2e6MA8LO97Cg9vTUz+eZkam/UQ - 6wyS128Jriy3oW68u5xX71FaEKu08iWa/Euu5Y9yCO/RF2E9L4p5kU+z/EAPNfzjSQ4tbyDQE+nrKuxL - g8O+CkjvTaG9H5HN10tQoiX+nTAJF2g+/YcG4FxbjUUegY3W1uMJv853SQh8QVYPF8FzplX1CXkgdxN6 - PuzkEwBKUYf/c47S5/FyZESjU+16xQShCliBUVgBTeAwpnRDau8FAM4mFE7ME4slNKBxH83NPH6FhXI+ - LIty1UIT6d/01UQ9/okY0jLs9O9AyL58V5WRVvr2UmQRDmHyPNbuEQBDO51zJP1uO49XEDd5lpqXoOnd - M6i7oTB0HVQIAOph4r0+9FMn1VBT2O85Tc687+Gt7yvSO2mqWOOb5R0N7zkp7NOD+J2HEhxkzztXGE3Z - hk5qcMNcoB1AnsPOiqC+Ale40gisgAOJkTL32gDhgZ2JFUd3O6a0po9Z7NPM/wY9CDrLDjWNteoXaHBQ - 8pTXk0wk8xBOF0rj17ucu7AmZQy7C7ETFfinYpMR7ifZNwIroC2REPclx9+VaxL285CPLeb+D9B0/2/g - I9+/BinLl8v9B7J6e9XrykysRtFLvay5rbgoluBKsQZE86kcOEC6OHafVlzXN8UEoZDWqRiWLqWoadP1 - 3lGYgCuJDpCumhSLo+dChUn/EeZXV50NMMS/r6iYLl5RHtdg+kdWVEL49vbgH/AaSj0kQQ1HtlSsPF2N - vVgSMnCdTvDZ8evCAbkAoB7xDv45EhL8fgA3SZ5QCOU9hKy5jF+lL2RyTpv2UxFChn7700daVkqYi50I - uflrASDOQ1rzUxTX+hddKfGEd+5JpDy7OhcAtCWg/hrUCpRoAIDehLBjFby1A3AiKys+4c5Zh1kBveDw - 9KP8lYiwZAxXficasyhNACB9fwMfdSifhNVnUKhr+JzIcFTPDQC2JXRUWa6aj+2ifNcQQnqXivRMAfDP - lQEIeWjuSJh0j+O64zc34V4dCVMhKcDRUOxUAYCLv2eK4lrfFUafQSGPYRTx2rzx2vcSPvgkgnebA8VW - GgDAC+VYNZJADnYLCWlQ+jp4j/5IFPoC1FHLNCYkTddJlGpYfLmqYJppfK8CqlwUofQZFJ7/D0Ii01In - YiEv+r+JvP9tNABAIcoxXq11CcwcP8ywbo0kO8GBcj+U/s9sMKnHy1FnUBITACiBtUKJwlycUABo4uMq - 8LWc5BXgu/YiMHfXogjqr3fCfzQmphU+TGIZyR1qerwAC+4+uVJ2FU/7lgh13gylr8oGX3D0qJyMFAMA - GEX8xtEUItCYgUBX4h1blCeCXHsf9Tv/z9sQKJk+JiD++RpO/23hNXXL5BvvEEtqUPwS3Ou5F/91hBtr - Q1B8p2x057icjorhYKcgbIOEAkAR/EEqSWrr9BkM0AooJXIFvuuEokX+P69lrQuV+cYLm//VYJ5pp0H5 - i1HpNxhEG2GTi6xGTntpDAFgP+J8fZ8V2sAnEATqwz+kUjAUaJ9B4blDiO/UUQSAvQkLzr3x2/kEgIwL - rdGv8Lq3UCzQkSmszkKGYE3Iiu/IF6JSxAwAdiUmZq1Tb55QEOioq89gNpiGuf0JtRtLnXwFkWl0FcG5 - 0dbn/b9cuv9zU/lYx6/g49RvjJDU8xqSdvzIMpG+Ok4KIVzP5hK/eUQcHJ0+QeAgxavAElxBgwSAHQiO - QJ6+fYwIAJcQ7sVPOB1afLxwMZhdHPPxCDdnH0H5uYm2P+oJ/ohQ8cUa/8YxBoBmBJpukRJsk2wCOxVL - nYvuU/QhTQS9WlAg0JVAbMKvp6c5AFCPWIjzoCeCwcKT2R30zD18nvqt4NU3pV34QoBRLM1hwXF6j0IZ - 9oXZBLYrl/bbxj74Ku8OgvlJyF6kcBrwIqKSIoQpKBTJQzUSgGR8KH8xctafVyzhDPL0bxhXJfDRgMLx - e2yUAhA4QPHAWajCnBxQJGAc36dOssPrYZUAq9Z6u7QLG0TkLghDloiVcTEHgC6gQqd8Pwfi81IAAOWw - OlUczJ/o4DXM8W43EN6D63wT5+7gNQS42E8IMB8IEP5tNySemNgubKx494/5Zi9XzIKbLKaJJxgE2uEU - VeGvGK6zLkSRxYnrfFfHs7nE4x8tcMgfI5jwUuQwf2Jot6A/w8j/DnneT1K8Xj0iZsAl1CFYhGS1rML8 - 8AjVGQEQnPYlRCm4zh9UBA+81xyAz50GoCFPdBkaM/5icD+/cSYTfSjO/SbEBrHiVXGIGPtOKAhkkOmn - UkcyRewCpemd+hAAgOv8EU4TUK8A8IIf8kdF5W+FzfSHwcpf6bn/Wrw2eQYEErWKc3JumPReEVkB9dGB - d42ipdRAoxXQleAX4zp/eBH43JYRPNx1s8GXN4rlwk8RKI+iktfCpoYOcZNv7oMHcRY85sVJAwFpjror - WkpLnYQcTQDQAHU0JAC4i4DwgQGAi/K3Q7fZWsOVv0onKaaBG7wYVoAqCHPuiHNEgoykAIH0Lacr9hl8 - QyS58fkudQm0fvyadnIR2Ey9vuyYIADAZWO0QapwjeHK77tZZUw2eHuFzEA5ejTY4ZBMEhBo6DNYqcMK - UAAAfrCOLCI2ubjHbx8AD8rfCnej1TFQ/jUoaipJgcf7RJ/8CSsQJu2Tr0NTzOeohyKN2Di/4WMFAODy - VhGBCISHg04NsJjBITh8IEbK/4eOvIiYbPDtCS28C3Ek8Gvnjm7FX1QxEAROIBCqiuH13hEAwDsUAFgO - Xr6gGkC0ABPNqpgov5NN1TQlALC15jDsDNDQ7QXgL/YLBlGtgQvH5B0KvqtLIgCAt5UAIIBJa4Zy0pUx - Uv6VyE1IrPJL67SbYvOWQvfQBfAvXIv9tSlAtXEeaViou3PEILApsWXXGhx+JakAAJe8/js1tdoOU2ag - i0xaAOD8gCMyNchOm4TitJdzyCvwJdwCVqnNdfeB1GTRnkc80N5eS9OVZABwIfC4TaHqzAR51tT+fgFt - 7KGGzX8twm6T0FtiC8OAYFNiMdVMhy8gLQBQAj6Aqhgq/3I4exKt/IYDgExwwYllbmKyp9MBNwogkLoL - jSM6R7v7pNozFwBcFmMfQici0+RbZClaADDPKvgNV8oeMvlGyD37ipD74PXdF8EhmjwAcFmA7cEtuCam - 8kyQKdEWALT4E7Jgr9o9HxAEnNU6kJjMdrHpAHCQhkaczYkvaeLmOjcNp3+MAUCUuej+tK9qhykf83Ya - EQCuMxkAlHrAuZT1Do6hx19uAd0jhQAwOMZr5iRtcVrvU5BtGoYFQAWAK00GgFp05/UDAAfijhbnjfSx - U7yRhiGs3WGKxS6myTJUb+4WQrMOStPOSlUL2wcAkDIBHUrwckUA6AbSyLhvoP/3VUsXAPBmMPMSsH4i - uU3nAAGgGM5IimW5dcgA8AoVAMZQCEEkPvUHE3J69E+L+S+to59U4D8qKqa/CV6BaoN8OVcECACNiZ2E - ZjuJZSHlAfAkpSup1YCe+QAk0/8oAu+gyTLNOTXSNPwCAFP+0XPnzmkJxpqTUDY73YDU7+90WwHCnt+I - SBIy1SkrDwkA/sdiVYRTPUgAaEXkHDBZEtUFl7i5uvvI2/j3pEnfiT0g6iJz73QwPn2NZ68KmQCGJxD9 - MyAAOJjYnu4FJ4HJx+/WQ58MEiPQBQSvvCcAkBZ6aMwq/PLJkLSZ/8J6tsx6byEvyx15qv3qotfkduAc - 4Dn09zL5kMmnLjJRcxeoiWIzE03KX6bQWcnX3lJYo7UAcAQBqSY4XW88mv4HGE7mSb3/H5JiAOCb+mHF - uRtOLPctRaSlpYu0Qbrvo4RmmIWISo7TDAC8UefPRFagAzUAAKVB6FpWYAoteEW+ggWXEt+XEuQ19pWr - nQAAoHq1RXnJ69WJABL1kTr7BGH/5otuKbfvdsl1uYP4+2v1yicAUPsCHExtDLLYiZ96mIizY1rll0u+ - DKsngsGhwNMUHXfTdTlPXYCgIa4OE3zwFSxGaTE5Q9DlffZWYE4ao+H+TwUATl22ObU1GG+A0C/XBAkv - 0kmBEMF0eSjroytyQgCgl+L9exbyQIJik3J4JQ6Cn2qxwjt+kZXad2fpnarbg+WX8rvVAFYd/TYprcHe - cHoDUpqDcq/pWW4vK03EBQly/KXaASitbUvF1mxzdHbBKXBV4C3JTkYNALWS8FmxytMNCPL8bkvUHFD5 - LL/264TMqjUH5f0DGjkmFKVu2ZUZWIp/fpEw5U9lAlAOR+BDivN3WDZYQlm5dbxK8VIN/AEdiFyEnaD8 - KxVA53rRQepjHkqJyXYj+d84xBzDiaZwWR5UPDtm3H5ehNcv9LQA8D/5u6J1d2U2+Oo7UfooRqBW40Ds - J7btcpEMwpe85PcjRSZrfk3uoqknAE/RH034xoH/+03BueP1A16VQ4FSN59PEqb8a+DU6ZFW5ZfWeFdF - xbolZDKOxuAP9LPmT8DByNudb4yTnmfr/Q0svu9m1dvUV+OwLNIEAG3gqPaaBnyMCADHEE7tmSBidEPe - Mw0t9a3FQql2GsqC460ozUPo3aAC8q/hfh4WAHAZoOgQlK8v03BX/xpsUL9o8HG9BCp8HcrvNCXxGn2o - BD9CkRi68BpLnY+mDm4dfd439P7+9MyZFadUVEz/MOg4dgoAIAPuPZUTdceQrQAeWrvP0JqSXTSe/tQI - wBRYNGsf0JEQClwGZHWr9V9q2ERPR0Si+Zo1a4rAQKzynAfTGgLMsdn2VSjuqvVDeeXDCuiGoh9T9iQP - pZ8KINWZfXgt4R3eW0tBjj9ugvuM1wcMc8l+GmnQJFfj1N5VaCCRwT1U5XkPWABYZ7O1Voz0jHf8RyGD - wMlQPBPYi+/2k3WYJ0vzLsJ7jFgbyVN8wHjJQ9oN6YymUD/9y4X/zQ8ADE5zBCDHhrtdkZ9v+wgAoD7C - bcsjVv5H4awr0nz6UyjIa9fhtBQeMohQijlDypo63ZDQ38+gYaqTI2yjAgC+qJoSbAWoXPlq0GEobI5+ - J0FoWER9KFaBA6GtThoy4VmbQSe9vsuJ6/y+cK9bSvADOJVxdRAuMYGrb69s7p5xqgCwWOSPs6NIDPmq - ULu/pcP7rQgCjbEHwrQE5gN42uhmIxae1Z/gAFxrhckP2hiUTdTU2M3hbItS+T9CPXm+9E3fAGDHeteA - GxWjMsdF0KRDtATOJ5brqlKOfYyDsk4QVOTC864gvNenSFte70H1wErimR1n6tQp/MOOjzj2/6mYpZen - TsECgH6l2gY5EtQ5nYBy8SisAAe89sfeWR3AnlyI0unOQfYhyP6/xR4l1DlyPVJb4eWGUJJj5s6d07ui - YvqoiEt0exWaYAEAbrYAoFWhyhAhoc4pv2oemY2mZ58o3Oq9DGHCGg0n/lzQxh3u1o0ooG/qgOQkr++4 - fkt7qd7bKyKunDEj+w0DgPkRKf9EpGQWnGQBAG63AKBdoQ5X7BfwmhipieC9xX3Bszwvx1VyIUUHkOA0 - ATkOPcUwZ0jNRw4kMHr95pqMJTyspwKZQVTNOXt7nWAhFPS8BQDtG7CFQg28ozwX60qI0WQRtEQREc/R - f4zJ2DxyL7oM7QDnYqhNSIXfuJJoMbfKBwAckT8zXPkngfmEovxOyeaPFgAC2YQnKnrWJzt1JVFGWXIo - bzkSdtykvpMYlo22DXkDYsHT/W6l/LJDYZTByr+QcneUFmULMNNYANCvOBsS+0vInZbqmBBmJXIAFEUF - XMLvbkvo1VCDXJ+ifADgVPStNlD5q0HyUNfjnV92Vp2teFe1AOBNYU5WnN+FIlmInWfSvJ9EqEpcIPrM - 8j10Ox8NIIKUR8XQEUH5myK6ocolbwHA22ZsAkot1TyOThYAyBGYkUSneVsvAEDJKw7T47+lgvI3geff - DzuxBQDvVsBuik7kGpQYl/sxw3VIjOabWn8zIuf93yVcdpNByj9f5OMjKH8jxP395n5bAPC+KesqcgY6 - 67x/1ABgOlAI73Ak4WDzxskoPHxPze2X/CRXDHM4CAkA0BBpqjpyvi0A0KyAXj4qQ98BR15JyFIcMwdg - KZHH83tPzMPS6fmqAQDwIchKKMrPrzDXKTqkLAD4BwGuTBcppoevBgjcCuAPQ27CfjkaSTLbSdID5nZT - +SAKGwwk85+Sgn2vZz4L4UcuyYbbqdXNO3woUfnrgQugUuN72GpAuhXQAimxfjgcw5ZKtH+b6SLTwIEx - HKG0XVHdF2ougGL5Pb8CH+X5nYQf2Qmpg1EBwH9E5hSP9/7jNZBAuvVQ29MCABkE+kChksYQzRVvHir9 - hoJPs3nQICD5WSjl95Md/j8qADRRTPHUIZzcYGfi6b8j7jpBkDmcaQGAvFH53fqqBHaIki2VBbAOjg4K - CKRn9YBVotzHg/KDV0bk+BssOmZuuOH6Qu+5sY9MNK8llCUWAMibtU2Eh0jYsgQ8lAPgL9AGAtJzria8 - 0wpYxUWqALBLVk8PdopMQdqu15O/Pmqvg/RXWFJQ9Q3bV5EzIK6yCEVn+7rlNficz5Zg9KX0HVRLsBKU - a3TIJtV1hXqlSZM6MATG19HOYtpB3rQZ8DQuTxEIONRb14rVd6ogIPztsUQH9w1OtaWfH90/AMdaLpnK - pLsHcg9HNlHkpaPKVw6nmx1Ke4j7k55JGQA4DsPRciibso+k3JaXiZbIHsqWR9Z/S2gVGSaSehZ4rzIg - XE0I7zUPlVfWEah+FegJj3TaQIDvzzcRFcn4AIAdsQ+9/u4nDvefXwDgcmkIFYIV4Jjz6vnvTSiF1JGT - 0McCgO99dEyI1qRp8hOTAyhWgBRRGUZMqLrU934VXqBLQCE2UW4VEysKvE85yA3CRPFzLAD4BoC6aM+2 - KqUg8COSiKh8Ft2RjERJ/e2iEwAyCD8EZW7P9NIxRnifvSNIUrpT2aFiQUC+Uo5OKQCsQYp9awIAFKOr - US3hsLpaG9WadIebF9Ck3OclWUHYQBMiWLi1fe3s8A0C3ZC38Su85abKrxprSsTEshEij2CB+dqCSGU3 - T6TJ17lwPC33uQAUi4eHjiCc/v0jCinNEPnr7PANAm1dCm9Mk55I7OEn8OPIUanWsJeq0J8vk6ePhWN5 - DybmuDxXKIXez8IdkqW3hfbi/NuM4PmPirNwmchLYIcWEIiLZMBb2AWZdU9r0IPpckMblznqChJcSjbi - Idr3qNRbbaxmxZqQLdAyWrqGzIrw/jbEAkBqQUCOyZ+AgiA/0bGn5KuABDpXEv1uYwtdLXQs2OGaM+8u - 92j+Z1B9FaUD5xXHvLLDghRINu7M0rski1blyTmevT0S47w+60/oZjDlyBLJpi7OwPl5mUrX/d3WBvQs - mOb0e7PDgoJgDfwj6709tyzvuqQL11OgVhsnFiEFPQFHayLdeLvQS0tJJMsiBgDrB7Ajl4/gOKTfqjjB - T5KetzuxCK8SOhnsvhResJkmX8A9hcps8Xt1DIod35WVu6vaYUHgrySn2xV9Aq8LB2EjIuGH8/fNwwQA - p8zTTyouD2380+PpvwlSKU0AgI9BeWWtADvcQpuvKaaa7z5lyiT+jFOJ1vUyseY/8D0pheSG+1AkHrLY - yyMA7B1A+NFPmWcvCwB25LAE9sIeIR2GFRXTn5w5s2Igcg2o1+iWoe5HiQJaNSz3e9atVbH771xjWDrn - MHsNsCMHCJRl1drQr1JIcKtCh+KiqACgBHnHqxTNnt4e6v6bBEz3pSJfeM3ntiOVQLBDSISor0RyHZUQ - r4NieG4VwieFAGBrA3sV/gnKJwsAdrjtWc6kNSbgPfiryFYd+j6UQOBcAk+5KGMwWfnSIY/RlH+tW27S - VnFlRxKvAucFTFYzMiu0VY8aANqA9UQFxfq40SUZfP935FN7DbAjj14cqdgdyWu9f/fIexVKinsQ7vXU - j3lcrAWQpBwNQkwEgGVI/rB97e1w04u+AbEf8RDhaUbsO0lZeY78o4qKdBXSH+VndjEo/p+rkKm5BQA7 - XPSiHZNvAthzYwIp+NEEAj0UFfZPUIJ1Ee/V6MO2wmAAqPTUdtmONAIAz+x7X/N++w05MWbtNwkETlM0 - fWqAmP8CCcP5MWko8YDYNdYOOwQAeE/jPquB49nMvSblRN/ho1NPLRIc4kIcyYkdtrIAYEfAAMCvm+2N - 3mcCCHRGskwaSB5rQRlVbEHAWKs08NbdAQNAhdgsNy6TfpRB+fthcL5vYSMC5it+GECgGQB4fs3Fsck5 - kbKhRqXICrixUF8DOyJR/EawSDvjvwMHAc0AMEZM943F3pLon79NUTPIPawVYITyF4PB+ULQuf8IGYf0 - 86YxAYD3RSbq2OwpaTF4ssyClIDAU9opme2gnvotEEH6IQc5RxVIXZoZDgCca6NfbA8UKZvv4pS0h/6D - yX7WCohE8TMoL38WSp5vnVaAYLZuEOukAQB4GP3sWF8ppcVprEBzFOfWT60sCISq/E1h2lOS0H4H955p - AFALPoG6sd9D0iJtbmBdf1A94S8Xw4IWBAJTfH7d2h+nvgpJ7bAg+j0KV5GPFd6JU4p1TMTecVmw3mgE - mnQQmEnpAmuHkvJzJbnbp3/pfcchGMD7bq1ACvKBXOWXiL0jeWcHKdInx01eEB1NFgS0KX4DkLFM8NmV - xymrbRcQABxK5LGYEynBR4gLye82N2hYPNOlGt5oSxqiL7S3E5PHiJz5+eQjp5ozgHc/glDItgR7pSSx - B4YLffL4FFgB00TiUwsEvpx8g4itsrzIiCDIXYkAwCthL5PL4dOwsFsHUC5poowD4FkAUAvtbQdSmErN - 68It0IEBRgG8AMBScGHUT8X+cFng7WCGJRkAVuPKU25BwLPiOzRz5xHbY1Pp6HpGCADLQHe3QaosRJeF - 7gl+vSSDwALwJNiKwcL7oQR0WuMDJoP9nMmGEQHAclSQNkjl9dBl0f+GXO2khwb7WCsg78nfHvfhMELF - dwTV3KUAAFQh/6BhqveCy+Kf7qPPelzkdfQ5TD0ISGtfB9RqHyjSy6tQuR0ccC3AABcA4BbNLSKnX6oP - AmkTcEfIkITXDPA0z+cTk+mlB/g7Mbk55IKxb4Jk1xG6A/0q1R/8G52urPLn2BANUFdflXAQeBYdlVKz - EVwUvyH62n0acAMNN3nM4dYL8FtFarxFMPub2pBw4c3RCCdCdcJB4EknCy3JmyGHk68XlLAygrmvQdJN - 0IxATr4Lrws5XC7uscqff6M0Bk34sgSDQA2aorRJ4sbI4eRrCYWYFeG8L0aUIQwACJ2PMEkbpyFKPGcm - PEfgEbl8OM6bJMemL0Mh2EshOfk83f/Dngc76BOXQcux6QkHgQfEmHRcN0wO5d8YV7rZhsz3807arR3x - 2Uz9mcxIMAisAmFK9zieHDkUn4f2DkRor8agub49CA4AO4K3BA6P+O4YhnwpstSYDgJ57rkcyO6UwmCm - NHQ91Jrk8QSBYoDA5ISDwHfgFSwxGQjy1OqfCCboWgPnltf/b2QBIL53ygxqB8YZusF0Cb8vX+HmHIx6 - 4+ZQ/BI0hr0voJbY9v5vgWCa3HrsxYSTivDMsbGoHygzAQhyKP+G4N+fajgo8/k8057+yQEBnkl3m+En - jg6ZgSyyzlHFlfM4+Q4CC3Ic0rc/M765ph3kjcjrBy5KAcfganjTj5VzyUPocCNLKchcbjHQyZcvynKu - Vf5kgkBdmHbZFLALLUEKbd98QOBnkxfIYmsD38RPhoX2vHD/dbAAkFwQKIZSvB+zjalaR8BP3ueY7OaW - Y04FBA9/3wThs1cJRJemyEJEj2xGXsJBgEsXcMUvTEkXIp4XcT8SbpqLDMSapBHu+c/F9Jq1ElmIda3y - pwcEuF/geCYTUwICTk9CzpN/KaizW4h95YiyARyOxzB5Gs+Oa4emkQ7ttwWA9AHBlkweAu1yWoBgNbrK - vgXyCd6ZeRtU4TXLIc1ByrEPk0uYPIOEmcoYzwN3+t2L77bKn2IQaAjq50kpAgGZfHImfCNv5pC3UCG3 - KCF5FSuSUlxlhz4g4PTjo1PSojzNwq2fq3EFsspvQWA9T/bZCS8tTqtwy+VtJv3cfB92WCAQawm4k2xM - zO+4Vv4vvE/gUJlezSq/HYWsgRNSFilImixErcT+ctclq/h2eAWDzREnnmEVKjayrKJi+ij2v3tYfn07 - dABBKUqM/2OvBeYLU/45c+bM3mnmzBn2xLdDqzXQGNeCt220wHiH3wTbdt2OIHwDRSDhOA2x8yqrcEbT - p+1sQcCOoICgLaoMP0p4k5I4y+eI6lgAsCMQEHCIR84BocQKq3RGcige4xT82GFHEGCQQb48byn1TowL - ZJJaHv2Bw5hkhx1BWgQZ5JgfiEq5+QknJzU95/9HJtcj1bvcAoAdYV4NGiMWzfn6pqSAiMQU4aHaN5gM - QsVnqfUB2BElEDgcedfAFLXXg2Bq+2eCmOSkXHTpFgDsiBIIODd+ayb7MhmBoiPrNPSf588bip6HvgMN - bdddO+IABnVgFZyFU2umAV1x45LkMx8x/uFM9i5EfmoV3w7TwaAhTq9z0cyEN9BYapV9rdSA5PR1JpeB - 3LWDW4GPVXo74gwEDhhsAZbae3DS/ZZCB2IVCrDeAIFHb9CTZazS25EWMChHDXsfKMFrSGpZkLCWZzXo - 3jQJdRa3gauQX5GaemEytsOOpINBBmHFTmgPzrsdPcnkQyY/gNh0VUySclbApP+CyQtoJLIfEnWa5ep6 - bBXeDgsG63c84tx2m0CBeF3CKJyiUxEPXx6RtbACv70Mpvx7TF5mMgQVlTuhlqI+hZLcDjssGBTOOeBm - c1cmBzAZAOfi42DHGYsqxnloIyZLVZ6TuxKmuvjvF6Pl2mvC83mI8xQmhzE5mEl3UIs3oH6PHXbYoQcY - 6sDB2BBJMr3RysuR/vhfnj33FKjARWrwkTi5+0t/dwj6CjTFsxuoNByxw9zxX3s1tzbo4alPAAAAAElF - TkSuQmCC - - - \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/ViewSettings.Designer.cs b/HRServer-Exporter/HorseViewer/ViewSettings.Designer.cs deleted file mode 100644 index 81c876b..0000000 --- a/HRServer-Exporter/HorseViewer/ViewSettings.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace HorseViewer -{ - partial class ViewSettings - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Text = "ViewSettings"; - } - - #endregion - } -} \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/ViewSettings.cs b/HRServer-Exporter/HorseViewer/ViewSettings.cs deleted file mode 100644 index 3476d12..0000000 --- a/HRServer-Exporter/HorseViewer/ViewSettings.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace HorseViewer -{ - public partial class ViewSettings : Form - { - public ViewSettings() - { - InitializeComponent(); - } - } -} diff --git a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.deps.json b/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.deps.json deleted file mode 100644 index b4eaadf..0000000 --- a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": { - "HorseViewer/1.0.0": { - "runtime": { - "HorseViewer.dll": {} - } - } - } - }, - "libraries": { - "HorseViewer/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.pdb b/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.pdb deleted file mode 100644 index 7eb7929..0000000 Binary files a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.pdb and /dev/null differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.AssemblyInfoInputs.cache b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.AssemblyInfoInputs.cache deleted file mode 100644 index 5b88ba8..0000000 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c1acacc398364b2235094e04eb477b43d626615ca09a899c470dadb50d864894 diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.assets.cache b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.assets.cache deleted file mode 100644 index b3c4bb6..0000000 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.assets.cache and /dev/null differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.CoreCompileInputs.cache b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.CoreCompileInputs.cache deleted file mode 100644 index 3d97d8c..0000000 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -ea6c6acad67b11d21132a1fd251de5562d104515b4aed14cf174466865be750f diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.FileListAbsolute.txt b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.FileListAbsolute.txt deleted file mode 100644 index 5270983..0000000 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,19 +0,0 @@ -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\bin\Debug\net8.0-windows\HorseViewer.exe -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\bin\Debug\net8.0-windows\HorseViewer.deps.json -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\bin\Debug\net8.0-windows\HorseViewer.runtimeconfig.json -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\bin\Debug\net8.0-windows\HorseViewer.dll -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\bin\Debug\net8.0-windows\HorseViewer.pdb -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.csproj.GenerateResource.cache -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.GeneratedMSBuildEditorConfig.editorconfig -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.AssemblyInfoInputs.cache -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.AssemblyInfo.cs -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.csproj.CoreCompileInputs.cache -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.sourcelink.json -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.dll -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\refint\HorseViewer.dll -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.pdb -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.genruntimeconfig.cache -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\ref\HorseViewer.dll -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.ViewEditTable.resources -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.ViewMain.resources -Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\obj\Debug\net8.0-windows\HorseViewer.ViewSettings.resources diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.GenerateResource.cache b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.GenerateResource.cache deleted file mode 100644 index fce7fa5..0000000 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.csproj.GenerateResource.cache and /dev/null differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.designer.deps.json b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.designer.deps.json deleted file mode 100644 index 8599efd..0000000 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.designer.deps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": {} - }, - "libraries": {} -} \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.genruntimeconfig.cache b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.genruntimeconfig.cache deleted file mode 100644 index 3db34aa..0000000 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -ffedaeea08d4ef0a266e70099a78f7d889ef93fb9980a252d75ec09eae888a13 diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.pdb b/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.pdb deleted file mode 100644 index 7eb7929..0000000 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.pdb and /dev/null differ diff --git a/HRServer-Exporter/HorseViewer/obj/project.nuget.cache b/HRServer-Exporter/HorseViewer/obj/project.nuget.cache deleted file mode 100644 index 7c76c93..0000000 --- a/HRServer-Exporter/HorseViewer/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "J5TU+ZSOMN8=", - "success": true, - "projectFilePath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/FRMInstaller.Designer.cs b/HRServer-Exporter/Installer/FRMInstaller.Designer.cs new file mode 100644 index 0000000..70783f6 --- /dev/null +++ b/HRServer-Exporter/Installer/FRMInstaller.Designer.cs @@ -0,0 +1,359 @@ +namespace Installer +{ + partial class FRMInstaller + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FRMInstaller)); + lbl_Title = new Label(); + lbl_desc = new Label(); + btn_next = new Button(); + btn_cnl = new Button(); + tablessTabControl = new TablessTabControl(); + tabPage1 = new TabPage(); + tabPage2 = new TabPage(); + lbl_GoogleDrivePath = new Label(); + btn_next1 = new Button(); + lbl_contentdesc = new Label(); + label1 = new Label(); + checkBox2 = new CheckBox(); + checkBox_GoogleDrive = new CheckBox(); + tabPage3 = new TabPage(); + btn_next2 = new Button(); + lbl_runtimeinfo = new Label(); + btn_installRuntimes = new Button(); + lbl_aspnet8installed = new Label(); + lbl_dotnet8installed = new Label(); + tabPage4 = new TabPage(); + label2 = new Label(); + btnDone = new Button(); + tablessTabControl.SuspendLayout(); + tabPage1.SuspendLayout(); + tabPage2.SuspendLayout(); + tabPage3.SuspendLayout(); + tabPage4.SuspendLayout(); + SuspendLayout(); + // + // lbl_Title + // + lbl_Title.AutoSize = true; + lbl_Title.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point); + lbl_Title.Location = new Point(8, 3); + lbl_Title.Name = "lbl_Title"; + lbl_Title.Size = new Size(371, 21); + lbl_Title.TabIndex = 0; + lbl_Title.Text = "Welcome to the Horse Reality Exporter Installer"; + // + // lbl_desc + // + lbl_desc.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; + lbl_desc.Font = new Font("Segoe UI", 8.25F, FontStyle.Regular, GraphicsUnit.Point); + lbl_desc.Location = new Point(8, 31); + lbl_desc.Name = "lbl_desc"; + lbl_desc.Size = new Size(386, 250); + lbl_desc.TabIndex = 1; + lbl_desc.Text = "This tool will guide you through the installation of the Horse Reality Exporter.\r\n\r\nFor further reference please use the guide on Notion."; + // + // btn_next + // + btn_next.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + btn_next.Location = new Point(319, 284); + btn_next.Name = "btn_next"; + btn_next.Size = new Size(75, 23); + btn_next.TabIndex = 2; + btn_next.Text = "Next >"; + btn_next.UseVisualStyleBackColor = true; + btn_next.Click += btn_next_Click; + // + // btn_cnl + // + btn_cnl.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + btn_cnl.Location = new Point(8, 284); + btn_cnl.Name = "btn_cnl"; + btn_cnl.Size = new Size(75, 23); + btn_cnl.TabIndex = 3; + btn_cnl.Text = "Cancel"; + btn_cnl.UseVisualStyleBackColor = true; + // + // tablessTabControl + // + tablessTabControl.Controls.Add(tabPage1); + tablessTabControl.Controls.Add(tabPage2); + tablessTabControl.Controls.Add(tabPage3); + tablessTabControl.Controls.Add(tabPage4); + tablessTabControl.Dock = DockStyle.Fill; + tablessTabControl.Location = new Point(0, 0); + tablessTabControl.Name = "tablessTabControl"; + tablessTabControl.SelectedIndex = 0; + tablessTabControl.Size = new Size(410, 343); + tablessTabControl.TabIndex = 4; + // + // tabPage1 + // + tabPage1.Controls.Add(lbl_Title); + tabPage1.Controls.Add(btn_cnl); + tabPage1.Controls.Add(lbl_desc); + tabPage1.Controls.Add(btn_next); + tabPage1.Location = new Point(4, 24); + tabPage1.Name = "tabPage1"; + tabPage1.Padding = new Padding(3); + tabPage1.Size = new Size(402, 315); + tabPage1.TabIndex = 0; + tabPage1.Text = "tabPage1"; + tabPage1.UseVisualStyleBackColor = true; + // + // tabPage2 + // + tabPage2.Controls.Add(lbl_GoogleDrivePath); + tabPage2.Controls.Add(btn_next1); + tabPage2.Controls.Add(lbl_contentdesc); + tabPage2.Controls.Add(label1); + tabPage2.Controls.Add(checkBox2); + tabPage2.Controls.Add(checkBox_GoogleDrive); + tabPage2.Location = new Point(4, 24); + tabPage2.Name = "tabPage2"; + tabPage2.Padding = new Padding(3); + tabPage2.Size = new Size(402, 315); + tabPage2.TabIndex = 1; + tabPage2.Text = "tabPage2"; + tabPage2.UseVisualStyleBackColor = true; + // + // lbl_GoogleDrivePath + // + lbl_GoogleDrivePath.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + lbl_GoogleDrivePath.AutoSize = true; + lbl_GoogleDrivePath.Location = new Point(8, 275); + lbl_GoogleDrivePath.Name = "lbl_GoogleDrivePath"; + lbl_GoogleDrivePath.Size = new Size(38, 15); + lbl_GoogleDrivePath.TabIndex = 7; + lbl_GoogleDrivePath.Text = "label2"; + lbl_GoogleDrivePath.Visible = false; + // + // btn_next1 + // + btn_next1.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + btn_next1.Location = new Point(319, 284); + btn_next1.Name = "btn_next1"; + btn_next1.Size = new Size(75, 23); + btn_next1.TabIndex = 6; + btn_next1.Text = "Next >"; + btn_next1.UseVisualStyleBackColor = true; + btn_next1.Click += btn_next_Click; + // + // lbl_contentdesc + // + lbl_contentdesc.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + lbl_contentdesc.Font = new Font("Segoe UI", 8.25F, FontStyle.Regular, GraphicsUnit.Point); + lbl_contentdesc.Location = new Point(8, 24); + lbl_contentdesc.Name = "lbl_contentdesc"; + lbl_contentdesc.Size = new Size(386, 201); + lbl_contentdesc.TabIndex = 5; + lbl_contentdesc.Text = resources.GetString("lbl_contentdesc.Text"); + // + // label1 + // + label1.AutoSize = true; + label1.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point); + label1.Location = new Point(8, 3); + label1.Name = "label1"; + label1.Size = new Size(275, 21); + label1.TabIndex = 2; + label1.Text = "Select your data displaying service"; + // + // checkBox2 + // + checkBox2.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + checkBox2.AutoSize = true; + checkBox2.Location = new Point(8, 228); + checkBox2.Name = "checkBox2"; + checkBox2.Size = new Size(294, 19); + checkBox2.TabIndex = 1; + checkBox2.Text = "Microsoft Excel (Requires Microsoft Office Licence)"; + checkBox2.UseVisualStyleBackColor = true; + // + // checkBox_GoogleDrive + // + checkBox_GoogleDrive.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + checkBox_GoogleDrive.AutoSize = true; + checkBox_GoogleDrive.Location = new Point(8, 253); + checkBox_GoogleDrive.Name = "checkBox_GoogleDrive"; + checkBox_GoogleDrive.Size = new Size(177, 19); + checkBox_GoogleDrive.TabIndex = 0; + checkBox_GoogleDrive.Text = "Google Sheets (Free, limited)"; + checkBox_GoogleDrive.UseVisualStyleBackColor = true; + checkBox_GoogleDrive.CheckedChanged += checkBox_GoogleDrive_checked; + // + // tabPage3 + // + tabPage3.Controls.Add(btn_next2); + tabPage3.Controls.Add(lbl_runtimeinfo); + tabPage3.Controls.Add(btn_installRuntimes); + tabPage3.Controls.Add(lbl_aspnet8installed); + tabPage3.Controls.Add(lbl_dotnet8installed); + tabPage3.Location = new Point(4, 24); + tabPage3.Name = "tabPage3"; + tabPage3.Size = new Size(402, 315); + tabPage3.TabIndex = 2; + tabPage3.Text = "tabPage3"; + tabPage3.UseVisualStyleBackColor = true; + // + // btn_next2 + // + btn_next2.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + btn_next2.Enabled = false; + btn_next2.Location = new Point(319, 284); + btn_next2.Name = "btn_next2"; + btn_next2.Size = new Size(75, 23); + btn_next2.TabIndex = 4; + btn_next2.Text = "Next >"; + btn_next2.UseVisualStyleBackColor = true; + btn_next2.Click += btn_next_Click; + // + // lbl_runtimeinfo + // + lbl_runtimeinfo.AutoSize = true; + lbl_runtimeinfo.Location = new Point(8, 31); + lbl_runtimeinfo.Name = "lbl_runtimeinfo"; + lbl_runtimeinfo.Size = new Size(85, 15); + lbl_runtimeinfo.TabIndex = 3; + lbl_runtimeinfo.Text = "RUNTIMEINFO"; + lbl_runtimeinfo.Visible = false; + // + // btn_installRuntimes + // + btn_installRuntimes.Location = new Point(8, 49); + btn_installRuntimes.Name = "btn_installRuntimes"; + btn_installRuntimes.Size = new Size(116, 34); + btn_installRuntimes.TabIndex = 2; + btn_installRuntimes.Text = "Update Runtimes"; + btn_installRuntimes.UseVisualStyleBackColor = true; + btn_installRuntimes.Visible = false; + btn_installRuntimes.Click += btn_installRuntimes_Click; + // + // lbl_aspnet8installed + // + lbl_aspnet8installed.AutoSize = true; + lbl_aspnet8installed.Font = new Font("Segoe UI Emoji", 9F, FontStyle.Regular, GraphicsUnit.Point); + lbl_aspnet8installed.Location = new Point(8, 15); + lbl_aspnet8installed.Name = "lbl_aspnet8installed"; + lbl_aspnet8installed.Size = new Size(123, 16); + lbl_aspnet8installed.TabIndex = 1; + lbl_aspnet8installed.Text = "ASP .NET INSTALLED?"; + lbl_aspnet8installed.Visible = false; + // + // lbl_dotnet8installed + // + lbl_dotnet8installed.AutoSize = true; + lbl_dotnet8installed.Font = new Font("Segoe UI Emoji", 9F, FontStyle.Regular, GraphicsUnit.Point); + lbl_dotnet8installed.Location = new Point(8, 0); + lbl_dotnet8installed.Name = "lbl_dotnet8installed"; + lbl_dotnet8installed.Size = new Size(108, 16); + lbl_dotnet8installed.TabIndex = 0; + lbl_dotnet8installed.Text = ".NET 8 INSTALLED?"; + lbl_dotnet8installed.Visible = false; + // + // tabPage4 + // + tabPage4.Controls.Add(label2); + tabPage4.Controls.Add(btnDone); + tabPage4.Location = new Point(4, 24); + tabPage4.Name = "tabPage4"; + tabPage4.Size = new Size(402, 315); + tabPage4.TabIndex = 3; + tabPage4.Text = "tabPage4"; + tabPage4.UseVisualStyleBackColor = true; + // + // label2 + // + label2.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; + label2.Font = new Font("Segoe UI Emoji", 9F, FontStyle.Regular, GraphicsUnit.Point); + label2.Location = new Point(8, 10); + label2.Name = "label2"; + label2.Size = new Size(391, 271); + label2.TabIndex = 6; + label2.Text = "Horse Reality Exporter was installed successfully. Please exit the installer and continue the guide."; + // + // btnDone + // + btnDone.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + btnDone.Location = new Point(319, 284); + btnDone.Name = "btnDone"; + btnDone.Size = new Size(75, 23); + btnDone.TabIndex = 5; + btnDone.Text = "Done"; + btnDone.UseVisualStyleBackColor = true; + btnDone.Click += btnDone_Click; + // + // FRMInstaller + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(410, 343); + Controls.Add(tablessTabControl); + FormBorderStyle = FormBorderStyle.FixedSingle; + Icon = (Icon)resources.GetObject("$this.Icon"); + MinimumSize = new Size(426, 382); + Name = "FRMInstaller"; + StartPosition = FormStartPosition.CenterScreen; + Text = "Installer"; + tablessTabControl.ResumeLayout(false); + tabPage1.ResumeLayout(false); + tabPage1.PerformLayout(); + tabPage2.ResumeLayout(false); + tabPage2.PerformLayout(); + tabPage3.ResumeLayout(false); + tabPage3.PerformLayout(); + tabPage4.ResumeLayout(false); + ResumeLayout(false); + } + + #endregion + + private Label lbl_Title; + private Label lbl_desc; + private Button btn_next; + private Button btn_cnl; + private TablessTabControl tablessTabControl; + private TabPage tabPage1; + private TabPage tabPage2; + private Label label1; + private CheckBox checkBox2; + private CheckBox checkBox_GoogleDrive; + private Label lbl_contentdesc; + private Button btn_next1; + private TabPage tabPage3; + private Label lbl_aspnet8installed; + private Label lbl_dotnet8installed; + private Button btn_installRuntimes; + private Label lbl_runtimeinfo; + private Button btn_next2; + private TabPage tabPage4; + private Label lbl_GoogleDrivePath; + private Button btnDone; + private Label label2; + } +} diff --git a/HRServer-Exporter/Installer/FRMInstaller.cs b/HRServer-Exporter/Installer/FRMInstaller.cs new file mode 100644 index 0000000..51efdf0 --- /dev/null +++ b/HRServer-Exporter/Installer/FRMInstaller.cs @@ -0,0 +1,284 @@ +using System.Diagnostics; +using System.Reflection; +using Excel = Microsoft.Office.Interop.Excel; + +namespace Installer +{ + public partial class FRMInstaller : Form + { + private string googleDriveFolderPath = string.Empty; + private string appDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); + private string serverExecutableFileName = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\HR-Exporter\HRServer.exe"; + public FRMInstaller() + { + InitializeComponent(); + } + + private void btn_next_Click(object sender, EventArgs e) + { + this.tablessTabControl.SelectedIndex++; + if (this.tablessTabControl.SelectedIndex == 2) + { + if (!checkBox_GoogleDrive.Checked && !checkBox2.Checked) + { + tablessTabControl.SelectedIndex--; + MessageBox.Show("Please select at least one option."); + return; + } + this.tablessTabControl.SelectedIndex++; + btn_next_Click(sender, e); + return; + bool isDotNet8Installed = IsDotNet8InstalledCrossPlatform(); + bool isAspNetCore8Installed = IsAspNetCore8InstalledCrossPlatform(); + if (!isDotNet8Installed) + { + lbl_dotnet8installed.Text = "❌ .NET 8.0 is not installed!"; + } + else + { + lbl_dotnet8installed.Text = "✅ .NET 8.0 is installed!"; + } + if (!isAspNetCore8Installed) + { + lbl_aspnet8installed.Text = "❌ ASP.NET Core 8.0 is not installed!"; + } + else + { + lbl_aspnet8installed.Text = "✅ ASP.NET Core 8.0 is installed!"; + } + if (!isDotNet8Installed || !isAspNetCore8Installed) + { + btn_installRuntimes.Visible = true; + lbl_runtimeinfo.Visible = true; + lbl_runtimeinfo.Text = "To be able to run the application, you're required to update to the newest runtimes."; + } + else if (isDotNet8Installed && isAspNetCore8Installed) + { + btn_next2.Enabled = true; + lbl_runtimeinfo.Visible = true; + lbl_runtimeinfo.Text = "You have the newest runtimes installed! Please continue."; + } + lbl_aspnet8installed.Visible = true; + lbl_dotnet8installed.Visible = true; + } + else if (this.tablessTabControl.SelectedIndex == 3) + { + CopyDirectory(AppDomain.CurrentDomain.BaseDirectory + @"\Server", appDataPath + @"\HR-Exporter", true); + + string serviceName = "HRServer"; + ExecuteCommand($"create \"{serviceName}\" binPath= \"{serverExecutableFileName}\" start= auto"); + ExecuteCommand($"start \"{serviceName}\""); + Console.WriteLine($"The service \"{serviceName}\" was created successfully and started."); + var filePath = "HorseCollection.xlsm"; + try + { + // Mit "Streams" den Zone.Identifier löschen + Process process = new Process(); + process.StartInfo.FileName = "cmd.exe"; + process.StartInfo.Arguments = $"/c echo. > \"{filePath}:Zone.Identifier\""; + process.StartInfo.UseShellExecute = false; + process.StartInfo.CreateNoWindow = true; + process.Start(); + + process.WaitForExit(); + Console.WriteLine("Dateiblock wurde erfolgreich entfernt."); + } + catch (Exception ex) + { + Console.WriteLine($"Error: {ex.Message}"); + } + if (checkBox_GoogleDrive.Checked) + { + File.WriteAllText("GoogleDrive.dat", googleDriveFolderPath); + } + } + } + static void ExecuteCommand(string arguments) + { + var process = Process.Start(new ProcessStartInfo + { + FileName = "sc", + Arguments = arguments, + RedirectStandardOutput = true, + RedirectStandardError = true, + UseShellExecute = false, + CreateNoWindow = true + }); + + process.WaitForExit(); + if (process.ExitCode != 0 && process.ExitCode != 1073) + { + throw new Exception(process.StandardError.ReadToEnd()); + } + } + public void CopyDirectory(string sourceDir, string destinationDir, bool recursive) + { + // Get information about the source directory + var dir = new DirectoryInfo(sourceDir); + + // Check if the source directory exists + if (!dir.Exists) + { + MessageBox.Show("There was an issue running the installer. Please make sure that you're running the installer from within the root directory."); + Environment.Exit(-1); + return; + } + // Create the destination directory if it doesn't exist + Directory.CreateDirectory(destinationDir); + + // Copy all the files + foreach (FileInfo file in dir.GetFiles()) + { + string targetFilePath = Path.Combine(destinationDir, file.Name); + file.CopyTo(targetFilePath, overwrite: true); + } + + // If recursive, copy subdirectories + if (recursive) + { + foreach (DirectoryInfo subDir in dir.GetDirectories()) + { + string newDestinationDir = Path.Combine(destinationDir, subDir.Name); + CopyDirectory(subDir.FullName, newDestinationDir, recursive); + } + } + } + public static bool IsDotNet8InstalledCrossPlatform() + { + var versionPattern = "Microsoft.NETCore.App 8.0."; + var output = RunDotnetListRuntimes(); + + // Wenn Zeile mit "Microsoft.NETCore.App 8.0." vorkommt => .NET 8 ist installiert + return output.Contains(versionPattern); + } + + public static bool IsAspNetCore8InstalledCrossPlatform() + { + var versionPattern = "Microsoft.AspNetCore.App 8.0."; + var output = RunDotnetListRuntimes(); + + return output.Contains(versionPattern); + } + private static string RunDotnetListRuntimes() + { + var psi = new ProcessStartInfo("dotnet", "--list-runtimes") + { + UseShellExecute = false, + RedirectStandardOutput = true, + CreateNoWindow = true + }; + + using var process = new Process { StartInfo = psi }; + process.Start(); + var output = process.StandardOutput.ReadToEnd(); + process.WaitForExit(); + + return output; + } + + private void btn_installRuntimes_Click(object sender, EventArgs e) + { + var psi = new ProcessStartInfo + { + FileName = "winget", + Arguments = "install --id Microsoft.DotNet.SDK.8 --scope machine -e", + UseShellExecute = true, + Verb = "runas" // => UAC-Prompt erscheint + }; + + using var process = new Process { StartInfo = psi }; + try + { + process.Start(); + // Hier warten wir, bis winget-Installation abgeschlossen ist + process.WaitForExit(); + + // Optional: Winget-Exitcode auswerten (0 = Erfolg, != 0 = Fehler) + int exitCode = process.ExitCode; + if (exitCode != 0) + { + MessageBox.Show($"winget-Installation schlug fehl. Exitcode={exitCode}"); + return; + } + + // Jetzt prüfen, ob .NET 8 installiert ist + if (IsDotNet8InstalledCrossPlatform()) + { + MessageBox.Show(".NET 8 wurde erfolgreich installiert!"); + } + else + { + MessageBox.Show("Es sieht so aus, als wäre .NET 8 nicht installiert."); + } + } + catch (Exception ex) + { + MessageBox.Show($"Fehler: {ex.Message}"); + } + var psi2 = new ProcessStartInfo + { + FileName = "winget", + Arguments = "install --id Microsoft.AspNetCore.App.8 --scope machine -e", + UseShellExecute = true, + Verb = "runas" // => UAC-Prompt erscheint + }; + using var process2 = new Process { StartInfo = psi2 }; + try + { + process2.Start(); + // Hier warten wir, bis winget-Installation abgeschlossen ist + process2.WaitForExit(); + + // Optional: Winget-Exitcode auswerten (0 = Erfolg, != 0 = Fehler) + int exitCode = process2.ExitCode; + if (exitCode != 0) + { + MessageBox.Show($"winget-Installation schlug fehl. Exitcode={exitCode}"); + return; + } + + // Jetzt prüfen, ob .NET 8 installiert ist + if (IsAspNetCore8InstalledCrossPlatform()) + { + MessageBox.Show("ASP.NET Core 8 wurde erfolgreich installiert!"); + } + else + { + MessageBox.Show("Es sieht so aus, als wäre ASP.NET Core 8 nicht installiert."); + } + } + catch (Exception ex) + { + MessageBox.Show($"Fehler: {ex.Message}"); + } + btn_next2.Enabled = true; + } + + private void checkBox_GoogleDrive_checked(object sender, EventArgs e) + { + if (checkBox_GoogleDrive.Checked) + { + FolderBrowserDialog folderBrowserDialog = new FolderBrowserDialog(); + folderBrowserDialog.Description = "Select the folder where the Google Drive file is going to be located at."; + if (folderBrowserDialog.ShowDialog() == DialogResult.OK) + { + googleDriveFolderPath = folderBrowserDialog.SelectedPath; + lbl_GoogleDrivePath.Text = googleDriveFolderPath; + lbl_GoogleDrivePath.Visible = true; + } + } + else + { + googleDriveFolderPath = string.Empty; + lbl_GoogleDrivePath.Visible = false; + lbl_GoogleDrivePath.Text = string.Empty; + } + + } + + private void btnDone_Click(object sender, EventArgs e) + { + Application.Exit(); + } + } +} diff --git a/HRServer-Exporter/Installer/FRMInstaller.resx b/HRServer-Exporter/Installer/FRMInstaller.resx new file mode 100644 index 0000000..e0b127f --- /dev/null +++ b/HRServer-Exporter/Installer/FRMInstaller.resx @@ -0,0 +1,521 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Microsoft Excel gives you the following sheets: +- Overview +- Genetics +- Training +- Records +- Foal Calendar +- Foreign Horses +- Inbreeding Tester + +Google Sheets gives you the following sheets: +- Overview +- Genetics +- Training +- Foreign Horses +- Foal Calendar + + + + + AAABAAEAgIAAAAAAIACFWAAAFgAAAIlQTkcNChoKAAAADUlIRFIAAACAAAAAgAgGAAAAwz5hywAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAABYGklEQVR4Xu19B3Rc + 1bW2H8Tdlm1JLnJRnV6lUe/uNtgGTAmhPEogCSEECD2BBBJCS0ggBAKEkISA8zuE0E01xr2qWL33MhqN + NL3PaL5/7XPnjq6uJFumhffyZq1vzcy9d245+zu7nX3OTJv2FbwATPf5fIpgMHxxKBz+ZjAc/kMwHN4Z + GBl5PRAKtYRGRowcQpH3ib8HgkEGbju/LyTaPmIMhkeMQTqe9o2EjP6REaM/JAB9Z/tHj+ERFIG/VjAU + wZjtk9/rGIRHP9O9Ca7XEgqPvB4MjzwZCoW+EwgEcgHEA/gvcRv+j3uR0L1B76ZAMPByIBgyBUMjCI1g + YoRH/mMxgjCHMAdfwB8IhIJlvoDvXpfLlQ7gbHHbfm1fxNxwOKwdCY88FxwJdQRHQiBwgg4jGJoY4kb5 + T8IYAiDM2isY4tqNa7vQyXA4fG84HJZ8rTWD14tkX3Bkhy8YCgRHRA8q7vFiTNAw/ymIEiAC8Xb+FQwG + A8FgcGc4HFaJ2/7f+gqHw0uDIyOP+IMhWyA0ggD1dJ690QelBxvFyAiHcJjDyMjIfy5I2EKItofDYAiF + uO2hUMg1MjLyK4fDES+WxVf6AvCNUCh0tT8QNIlZfTqMa4T/wymAMRBohM5wOHwhyUEsmy/9BSA5EAp9 + 5A+EwpwNPzM7Pv4h/w+TYywBeK1JCIVGwoFA6GMAqWIZfWkvAJnBYKiXnLpRG/5/BPjyMJYA/HaeBMFg + CIFAcDAcDl/2pTuJfn9YHQgGWymkY44ec/b+t9vwUZ9lFOJjvkyc+toCIlD8+KNPP/30yzEJgXA4Lxik + ZAgv+P+UHk2NLuyB44Xw70QoFIo60sFgcMTvDz4fDodniuX3uV7hcDjP5w8MsJ4/gc0X39T/LogJIN7/ + 7wURYPSdaYJwMBh89AszB+FwOMPvDwwEgpSgiNj9/yPA1w5EgGAwyJMg4PeHrhPL8oxfLriWBYPBOopB + eafvy2gEuvmpQPy7rw6T2+CvC8a2E0UIIUcgECgWy3TKL7IjoZGRj5m9/5J7ATF3KhD/7v8wHoFAgL1H + /II+m8125iEi2Y9AKHB3aGQkzA9SfB0IINYIk0F8/i8Tn/Wan/d3k0HYVnR8IBDac8ZOIQ3o+IMBz5iB + iq8BAaYK8fm/DqD7Eqa9P+t9ip/1VOCOD4VDodCNYhlP+qLe7wv4dkYvGnXyTm8HxWycDOLjxTf+WSE+ + /78T0fugOJ21WQj+cADeUIDd60iQGyQLUgwfHuHAfits5/FtfaZtxjmFQROAZWJZT/gKBn3n0sCT+MJT + wVRvjD9evP3zQnw//26wdC24RA1CnCZ1BINw+wIIBUngNMjjRyjki2KqUYf42ScDyYRLFAV/d9rQEMCM + UChYS2wVX3AiiHu2+OKT4UyPnyrE9yO+39OB/82Z/laYnxeCXt5gAF6fD35vAP987W2UbNuOrOLV6B8Y + hJdC66APwYAXfr8bfr+HEYB+OhkBzrTt/H4//1saTl4nlvmYVzAY3BwIEAun1gBnciNfNaYqxIkIPNXf + CsELnF7Cz26/FxanA7f/+F4sVekxV67FojQl7v/lI3D5/XD6/RiwWPHsn/6M3Xv3s1zLqTSA+DlPB4oK + 6HmYNgqF9gM4Syx39qIdwaB/r+DgcRfnIW6wryNOdf9jnyOMcCCIoN8Pjy+AgI9UMRAcCSNAXjSzz0yD + YyQMBPxBBAMhBANBKt/C8coKPPnss7jtnntw1Xe+g29eey2+c8vNeOIPz6CxpQUujwe3/eSniJHqME+Z + iXkqA+ZJ9UgvXAO704UP9u+HLq8Y8xUaXPbt7yAQpLYfHWgT37P4OaeKyPOG/P6wXix79vL5fPJAIBAS + Xkh8cWHDiS/wdcNUCeCnHhcMoqGpCdsvvRzmITNz0EaoI4wEEA7z3nsIIyFy3gKwWa34/bN/RPHmbZAY + ciHNyoc8pxCSzHykGfKQllWA5Mw8JGgN0JduwGJFFuar8rFQk4dYVSbmKzKxSJGOS66/Hst0WizTZWF+ + Zja2XXEl/MERBCIO4hdBAF5WvCbw+4NPiWXPXsFg8AlxzxY3Ir9PfNwXBf68X8T5xfcufg7+M1UwhUJB + vP7eh5ifKEdeSSmOHD0Gn8+HoM+DcDCAMLuXAMyWITz17DNIz8uDJCMX8vz1kDGsgyR3NVKzS5CaWYQk + QxHi9YWYpytAjDYf87WFiEsvwnfuug/rz78EseoczNfnYaEhC3GGLMSn52CuwYDrb72ZJd0mIoD4+c4U + AgLY7HZ73BjhA5jl9/t7hGwRn+B/GqZCAHqRWkcgiMrqOsQmq7E4TYXYZBmuuPa7eO1fb2Pfp4fxr9fe + xc13/gTagmIkZeUhJa8YisK1UOavgzJvDeR5pZDmFCM1swBJhlyszMhFvC4PMaoCzKVebyjCw8//GVaX + A5dcfiXilDlYoClArD4PcdpsLNXlYVGGAb9/4XnQgNuXRQBOrkzGF4whQDAYPNfv52LGQIAVGIhOQD+i + m+Dx+XrnVwkhETiCk1fsRWjEDz9G4Cf7Tmp92AZVRj7ilQbEqnSI1eiRoMnAKm0Wkki155cirWA1pEVr + IS1aA3nRWsgLVkOWVwhJTh6SSOWnZ2OJxoA4tQELVNmYq8zFQlUu7n/qOTgCQbgDfmw8bztiNVlYoMtG + rC4bC3U5iM3IxRKtDifrG5jwCXzF9BdJAC4ioJBwZKwZGBkZeYQET8Kldxr8GXuC/5kE4E3JGA1AKj3o + Ze90DDl6ISpi9flx/y8exhK5HnEqPWJ1GUygiZn5SM4tRlpBKSSFayArWgNZ4WpI8kuQmluElKw8JGfm + YIU+G/EaA+LlmYiTZmGRJAvzU7OwesslsLh8rFM5nG5osguxUJWBeap0xCjTsUidjnidHpsuuhAer4fr + gF8SAXw+Py/fgaGhoRiBBhh5khtB4sFdcNQWC4X/P4cABDEBqObe5fbA5/UxR48VuNDzBnwwmYeQV7IO + y5V6LNYakGDIQaIhF8nZeUjLLYAkvwhpeUWc4HMKkZiZh5X6LCzXZGKpOhOLlJmYr8zEHKUBs2U6zJNp + 8dQf/0J2FwGvDwOmISTJdVgo02O+Uo+FCj0WytSIVyjx0qv/gM/t4rSvcN7EBM/0ecARgOUp1jDhk/0P + BGjIl6mGSQQsJoF4/9cXPAF4/8bicODJZ56Dw+eHb4QamyNAaMQHn8+DpqY2FKzdjKWaDCxLz8KqjCwk + G7KQmp2DtOxcpOTkIzm7AMlZ+ViZkcOEv0xlQLzCgIXyTObRf/v2u/D0jh344NBBWL1e+Mj+Bv146733 + EbtSipgUFRP+AokG8yVazJeqsXn7RRgcHGIC+jIJQGSk5w0EQvczAgQCgSzxQV938JppVEONP0YM/rg9 + +/cjbmUi7vv5L+B0ueDzBxAIU9w/wtKzvsAIOrp7cettt0NqyMaKjGykZBUglYSemY8VWTlYbsjBKm0O + lqiysUSahcUyA1IMeXjoiadgNFtYaEl5BObRU2qXaZggXnjpJcjyVuPRp57BgRNlkGcXIyZFjdlpWsxL + U+GGH9wCq9PJEkQ++i3lIxgRSHNFMMGznQnIDyAC+Hy+PYwAfr//Stox6iWO/9H/BvAEeP/Dj7AoVYOF + iRL89IFfwOV2IxSmmD8EjJD9pdStFx6XAzvffBNpuUVIyyFbTx5+HpYbspGQnokElQGL5elYLNdCX7IG + B8vL4CAVTtci751PHBEB6D0Ygs3jQfeQBR6/Fx6PA3uPHMNKTTZmp+owV5qO+DQlHnz0MXiplwYoPzF+ + Gp34uc4UHAFCRAAaIDp7mtPpvJI2Ev43EkAcBVTVNiEuRYsFMh0WJUmxaet5eP3dtzFoGWKZPbvDib0H + D+DbN1wPicHAej4v/FXpOczmL9NkYKlKh2UyFa7+/vfR0tsDf4jMCQlfEMJFMohBAH42s4dz6liCaSTA + jn939z7ES/SYnazF7FQF4pJl+Hj3fgTcQfi9/mhUEI0OJnjGqYCXMeU3OIfQFx4aGlpJGcAX/5MIQM5f + ftFaxEgUWCDVID5NjQVJKVip0iK9sBRyiuFTZUg0GJCUW4SkrOKo8FfosrBCZcAShRbxCgV+dM89sDnd + 8Ln9CHiD8IXBhZUR4VOPJTPgCY/AwwRPSoZGASOFtaER5vk/+8cXMX9FGmampmFWmhL6vFIMGIfg8vui + mcEvigBer5cnABwOh4p8gJ38AacjAB9Lng58SDmK8ef6sjHW++cGVpijGwhix46diE1IQ2yKEvFyNQv7 + 4tR6xOsNWGrIwTJDDlZk5bIQcFVmPlZm5mK5LgsJqgwslRuwQqHHL371GJweNxOKfyQMXyRU8/k9OFJ1 + EjV1TXCTo0kOVyjMBEnE8IcCOF5ejhtuvAlP/f4JOF02OFx2XHjppYhJkmB2mhxzU9Jw0x13wunyjhG+ + n0LEUHAMxM8thrDnE9w+L3x+P4KBAJxW6zoiwD+osf5TCEC2mMLA7990G+ITJVgsUWKxQofFKj0W6wxY + mpGNpelZLAJIIHWfnoUlOgOWqNOxVKFHgiwdN995Dxx+D7yBiIoOAx5qbJ8ff3juWcRmqKE/91y4nS7W + 4zmTwPkCFBFs3LwVc+cvwbwFcXjmuWfh8bnQ1NYKeUYO5iRLMSdVitiUVLzx9q4xGsAXCMIfDDB8FgLQ + sLTT62Gf/V4fbBbLTZQFrJiqYKcKn49UzCjGZxa/fAgJQGGr1+uD3x+AnxoxNAKby40777kPS1ZJsUyi + wTK5DglqAwv/lmgzsFibgVhNOssIUmZwsUqHJQo9tlz4TQxarfAEvfBSAzN1TpM1R2B3uaHOysF0gw7S + 1aVwezyMAMwXiPgFFHWcf8ElmD5nGWbMX4Lrb7gR/oAfPr8P73y4G7FJCsxJkmFOigTSjEx09fTBSwkc + pgEiQidndRICTCZLngAur4eZARr9NBtNL1AUYJzsR58VXycCcB6vH6/s+DsGBgbh8fjhp/KsoBdujxdv + v/sRSjaehxUSDZbL9Vgq1yFWrsEipRYL1DrEqDRYqNAiTqFFRvE6tPf0wutzwx/0sKFiQphlGMNo6+nD + ohQJZql0iEuRwmy3smtxvgBHAK/PhYamZpSsOxcZxWux6+NPuYIRn5eZjO/fcjfmJsowI0WK2clpuOKq + q5nGohDQ5+eGoE9lAiaTpZgAoUAQFrN55zSPz2tkDKSbmESAYow/+fhjOMHzpmD8jX4VYKFfiOxyAOu3 + XIjLr/8ejL39UU+Y7s0THMGw240Dhw7jqWdfwDU33Y5YmRqLFDom+BiZGguVGiSoNHj/w91cIiVMax9w + 6x+QBqBSL/L+W3r6MD9JgllyHRYkSvHR7t0srBQuABFm8/652N5PGiQS3pFpol4+bLEjs2QzpifLMDMl + GfNWpeDFv/2N1Sl4vZRQGusUisGbXbGseB/A4+feSQNYzEP/+wnAsnyBMM7dfhnmyfTIKFyNN959D16/ + H+GQD2G/FyG3F06rBf9v56vIWb0BizU0IJSOWKWeaYLFSjXue/gRzinzB9i6HUzoRAAmUNI2QXT3DzCB + zZaqMSdRiltvv531Un7lD44AwundocjaQKN5A18wgP3HytiI5OxVMsxKlSJRpUZdfRP8bjJhIc4ZnED4 + pyMA5TfIcSXTRASwEgG8fl+UAKQaGDsiqV9iu1iopyIAL3D+d/9uAhBY2tMbwo0334HZUj3mUQ4gRYbM + 0tW49a7b8chvHsP1P/wBpPlk91VYps9iBIhTpTMs0aQjvbAIRvMQ/NQuZFYES7j4wkEEw36ER/xwuTxQ + GrIwJ1mGuSkKJKs06OrthdtLKjzEESBaLMa9mHMqSBwF6ZwjI3j4V7/BggQJpiemYlZSGoo2bsHQsO2U + whcTgHwe0nQeD+f4kQmgKIC+UxRgHbLsnOYjHyBIAvziCMANKQsjgfGC+SLA9fDTpILJTvp9+OSTvViQ + LEdMshZzJErMlaoxn/LxMi3ilWos0qnZUG6COgeL1RlRAixV6/DYk08yB8xHdjei+nkC+EGC9WEk6Gae + 9R13/xgLyJNPkiEmRYbLr7qKpZwpQ0jaQFgvOBEB/CxiCcPpdOK8i76JOcuTMWOVDAslKnzvRz+ClxxB + 1sbkFH4BBHB7PUaKC3kbMdYUjG4bC7HaH2tCxBgnlK8SISrB9iPkCeHmO+7G7CQ55iYpsCBVjYVpasTJ + tMzeL6A8AMX51OsJymzEqwxQ5xYw1U4VvL5wCEEigGCYmVPlQYyEAnA5fairbYFUq8espBTMSZMhNlmK + H912J9xODxd/s5pLbt0fAjcvIDLvMkShKkcMcpx7+/ohVaVj5goZpifJMS8pBU89/zzcbh9G/EAwAM4v + CJCjO17lC0Gd2+P1MieQ0t9EVuYDTEQAOpjXBhNjagQg9p0ut/ClIzwC30gAI/4wHC4frvreTYhJVmFe + shrzUrVYKKUhWQ3mUxGIUo848v5VesQoKRxMxwOPPgqH1w83JXlI+NTvBTN8eAJQoYnV4kJ9XSsef+ZZ + zFqZiFkpEsxOUWBBkhTnbL8IJ+trEKDFs9hycJQRDLFys/AIFeMEMRIOUE0xIwCvhd/fvReLyBdYJcN8 + qRyLU1NxovwkAp4Q/F5O034uAnh9PkYAXui84IWCFJ9MTICJBE+NfzoC8MeLt08VfE8UmgJh+EffAxQG + sjJ3GlwZYQMtT/7xT1ilzsACGpaVaLBIrsN8JQ3LqhCTqsBcmRpzlVokpuvR2t0NH2XwKJ+PkfEEiMz6 + IRI47B6mAT4+dAQzliYwAsxIluEbyWmYkZiEBcmJKDznXFxy3fX4wT0/xj0PPYz7H3wE1TV1cLmdcLvt + LJrg5gWEWTu7fF489tunEZMoxxyZEnNTZbjy29fD56WxApITN8TLE4Fvc6HsmPA9Hub8MSdQSACP1xsl + AB1EEJJhYk0wNQKcDqcjyGSgEq6x56FG4M5FnznhRwgRDCHkp4JI2k4jYV4Egy4MDJvx8r/ewE9/8xRu + fOAhrMjJx9w0BRZQj5XQeL0at99zN7ObQgLwJkBMAILXE0RzUxf2HD2O2QnLMTM5DfNWrsLMlYmYniLB + zCQFZiZKcdaqNJydKMF/rUjF9GWpSJBq8Ppb78DvoZJ0riiH2vXo0eNo72yDy+OHvmAdZhIBZCqskCjg + dlEyhyaUcAQYlcdoj+d7PQmc4HS7YXe74HQ5hQTwGUmgpxb4qSEmAM1/844E4Q344Pa7IzcWhNtNN+OF + x+2Cn1KS5B0TSyN2jHprgM2dG3VmOIfGxzJl/oAXTpcd+/buwc8feRhXfu+7KN6yBRlFpUjTG5Cqy4Ay + Kw/6wtXIW38OSrdsx9ptF2LTedtxzvnbsfXCi/Gt/74a191wI2687Xbc8uOf4LLv34iU3ALMTJNgJiVf + GAE0MJSsQc/AALPbo5VS4+fqCU0BEa6row8HK6oxK2EVZqxKw5zERMxZnoI5CQrMSJRjOgl/RSrOSkjG + WcuScPbSlfivFUlYlCbFO++8wzQUpZRbmtsQvzQJq9RZaOofxPmXX8kIOkcmw5LkFNjsLpEZHksAHh5K + MHk9DNT7KRVMDiblFSwm885pbs8XTwDWE4NBxr7yyirc/8hvsPWSK5BVsgHa3GLo80pQtGELLrvuBvz2 + Dy+gsakDfl+IZdPCNGgiaHDWG7w+NLW04d5f/hLJOh1mpCRjRloapssUOEsqx4w0JaanKjBTosJ0iRJn + yzQ4S6pm79+QanB2ihbfSNHirGQNpidqMGuVBjMTNZiRRFBhRrIcZ6fI8I3ENMxZJYEyrxgnqmvh9FBb + TI0ABNIM/UYzyhtasThVjlmUzEmTIE6mwEN/+BO2XncD5HnFbNx/3ooUzFiyAjNil+O/lqVgZrICK7Xp + OHq8Aj6PH0bTILJL1iFBpsXhmlpo8wsxO5XMgBxLU9Jgd9JUsomitCkQIKIBzAOmFxkBKE8+keo/U0Lw + x1IPP1lVhUuvuBrqrEIY1pyDoq0Xo3jbJSjcehHyz70QuedcgKwN26AuWg95ZgEuu/o7OHj42Kg2CHD5 + +0HzEG69804sTknF3FVpmJusYHH2rCQ5ZierMSdJg3mJ6jGYk6LDHBpfZ1BhVnIai6VnrErBN1Ym4azE + ZExLTMK0lBSclSzBTOqZSWmYtyoRmy64CMcrT8LJ8u/Uq4WlcoSJw07eDxm0ONDUZYQsPQdzSNASFRLl + ajjsbgS9lOih+YJhWBxuHK+owhXXXIe5y1Jx9gopzkqRQJtTiOraeiYos9uLvmELaluasXDFSha6zpZI + kFlcCrc3CK9X7IxzBOBtP1P95PR53AxUsEImwOF0wOv2YGhg8NZpbo/X6PmCCOCn0SanE08983vI9ToU + nrMNq7dfhjXbv4m1F1yC1eddhNJtF6Jgy3bkEQE2boVh/blQr90IVfEaSPSZuO2ee2E0mhi7GxubkFdY + jNlJKzAnhYSvwuyVKsxIScOsFBlmJyswN0WFWKWWDekulGswN1WOGatIqLIIpOz79JVpOCshBWcvTcL0 + pcn4Bn1enoKZK1KRoNTiv2+8ER/v/YQN51KWkKVq/VTKdWYEsHn8aO8zY/N5F2GeTI1ZKj1T74ePH0fA + NwK/h6afBRCkgSmvHybLEC676lrMWpqI6atSMGtFMjQ5eThy/BicHh8Ghsz41pWXY27CcsxKVWCOVIoH + Hvs1XO7A5yCAkxFg2GT+PosCyNHhHcBTEWEyuKn3e7zwOpy4/2f3sVGswnO3Ys0FF2Ht9ouxdvulWH3+ + N1F63iUo3noRcs7ZgsxN58CwcRPS12+AZvVGKArXIC2nEEnpOShdtxUvv7ITakM2YlJIxafgrLRUzJaS + fVZjwxVX4NE//gkfHTqKxvYuDNpsMLtc6B4eQnVHO47V1GDP0aN4f99evPnRh3ht1y784523seON1/G3 + 1/6Jv/3zn3jp1Vfxz127cKisDBa7gwl3xD+CkJ8Lv0aLZEeji6mASDNgtOOuex/EArkWM9RqzJUq8NSz + f2QOJTmpNKjDPPfgCNweH7q7e6DWGTB7qQRnrUrFN5avwvxViTAUFSFRo8KsVSsxfWUS5iVJsUylRUtb + N3xOPzzk/AZC8Hj98PqolG1yAjhJ+E4HbE4H204EsJmnSIDJtvOg2NLn8eL5Z5+HLjML+ZvOwerzL4wS + YM0FnPBLtl2M/M3nI2vjuTBs2Iz0dRuhW7Me6hKaXlXKSq9W6XOwQpWBuFQZFqbJMEeiwPQ0OeZJZPj+ + 3fegobUNngBlK4Oslj9IDx6k/DjV0XFCDAdowucIRnwhhCm1xqo+I7VZ9Jnq7fwhTuBkalgEEeJ+z0/O + FBFgygiEYbd58ea7u7EwVYZ5KjXmSJW45Kpr2UgeRStMUBEC+PwUPfhw9MgxJKSoMCMhDdNXUNhIUUMa + ZielYnpyGmYmSxGTJMNDv3kCDqcXXpePaSoS/ukIQMJ3uJywOezjCeDxeoyUGHC5XFHQARMRQrhNCJfH + hcaGBqRnZCN37WYUnnseireeHyVBybaLUHjudhSccwFyN26Dbs1maEo3Ql2ygU2xkuQWIzW7EIkZuVih + y2SzZObLNZgnU2FemgTpJaux59AR+AJhjvEjfrhDfnhGAizJw6dASfAjgRFWhRPFCA3YhBlI9vQu3E+/ + HQlwAhenUz8LAYhMHk8APX2DWCVXI1auwny5mpWcGQdNTAOQoPicPj0Ty0+4Pfjn629hpUyDOQlJmLEi + FWevTMOMlcmYkZSMRalpePDRX8PppfOTgL3wkrmKCD4Ksax83lET4HIyM0D5AJfDyZmAiQjAQyzoyeD2 + OHHLLbcgO381stZtRUGEACXbLkDx1gtQtIUTft6m85C9fgt0pWTzN0CaTxMqC5GSlY/kjFwkpuewGbXx + ShXmKTSYL1OhZNMmdPT0wEvj+B5qMCDEei7ZZw7sMzVmRNj8djEC/sgYhei3RBwiABWKED4vAeheXS4f + vnX1txFHuQWFBgslCvzztdfGEcAbIUCA1eqFUNlQj+tv+iEk+iwkKtKhzCvAjT+5B/uPH4HdaYPfQ72d + ej8J3w2X2zsG0U5JMnW7oup/DAFon9MFY1/fA9Ocbo/R7faME75QE/BhBA/+Ijzbujo7oTdkspUvstdt + Rv7m81iPL9pyIdfrI4LPXHsOMlZvgr5gDRQF6yErWIPrbrsNO959F7ve341b774PsUoNYpUqzFfIkGpI + R11LKzwe6vmAn2kALtyiYVlx438d4PcFEfRSROTBzrfexoLEVCyUahGbpsaP7riLs/+UuqUQLmIGhOCH + e4kkVpsDHh+3boGTZOTmerTXz4V3JFR6F4Z6PHjBC0E+gN1BTiANCftgMg3uOCUBokSg9OEpCLDz1deg + y85HVulaZK7ZgJwNW1hvJ3XPBL9+CzLWnsN6vqZkHRQlxdCUlODVt96Cw+VgJoTO883LL0ecQo7ZKgUW + KeV4aedOeNyU7eKEzzXS5BnEybZ/lWDOHYuIPGjt6ceSNDkWyrQs5VyyYROr+pmIACRwsuX8doJQtUe3 + B/yMADw+HwHMO6c5nB4jlUaJhX4qAghNBmmJn/38Iejy1yCjZB0y16xD9vpzkbNha7TH69ZsYp6+evUG + KIrXQl5YhL++upNNxfK53PB7vKiqrkGCVIJFCjnmalVYfd55sNgpYUHqMsz1nKAfflpTZ4KGPxV4Yogh + Pu7zgE+CMd/C74XP64bN6UXhxi1YJNOx6V9U2EEzf/iezjmBY4nAawAxCXhnjxf4ZILnIRY+TwASPsHp + 8mDgiyLA7T/+GVR5a6AvWgND8WoYSjcgY/VGJvz00g1Ql66HomQd5CXr2MzazZdcCZvTBS8J3zcCnyeI + h3/1WyySKhGj1CBGqcBfd/wdHh8xnleZVAnrYxA3/jhEJmnQZ+HAiDhbOe53nwP8eak62O0j7UgZtwCu + +f6tTAPMl2sRK5Giqq4hagao2FMYETBNQD4EOZIi715MALHAOZsfsfsTCJ8RwOGAze5kk1+IAH39JkoF + e40UhoiFfirwhOC9y1vvuhuq7Hzo8oqQUVAKQ9FqZJSshb50LTSla6AtWgdV8XpIC1ZDmVuK5/744hh1 + 53H7sPn8S7BIokGcXINlChU6OnvhoN5whk4Ym9pF4RaVTgco7ubK1EcLVMaeT6wV+MKNKCK1epOBPx9P + NK8vYqd9QdgdXjz0+BOIV2ZgvjIDcTIlDhw+ynIFvEYjgo9R+xHVTqqeqXsiAQneQ6H6aLg+TiaRAR/x + dh4OhwMOhxMOuxNOpx1OpxvNzT07pzndRIBTawAxxAS47/5fQJmRw0igziuCpqAEmsLVUBWvhqKoFKrC + tZAVrWULLKQZCnC8rDLKbnpoi9UOiTYTsXIqytAip3QN3E4vI4CP/SPG1HtriECFm5HFnMjzZ+8CAghN + wDgNIaq6/awEcHsCMA4M48kX/hIlwEKZEu++/yEjB2m0UxEgquajgucglsVUQQSw2wmjBGhq6t45zeH2 + RAlAaVwe4hMIwasUCiuIAH947k+QajKgyMqDPLcAivxSFt+Tly8pXM16fkpBKZIKSpCWno2ePiPX8yNa + gHLf8akKxKoNiFXrcMU130bIMwIXC5Mo502O4BTrBgIBeF1OtLZ14OX/908MWuwsRcqPmXPDp+NNAg++ + 50XhFzhgAvA2fDwBvKxtBs1WtLV14+mXdiBWkc4RQK7EW+++B483CLeXejmNco518jyRAZwvigC8PIkA + VqsNVqsdDoeNjco2jxLAx+yH00k/4H4kPtGYk0bGltlv3G7s3XsAEoUOkvRsSLJzWWKHYvyUvBIk5ZWw + FTZW5hZhRV4RUvSZ6KUSKx8RgHvw42UVWExj8OoMLNLo8O0bbkTIFYKLJnSwBuIIwNTzBBASgFR+XX0t + itdvQoJCj3XbLoSFiikjJKDr8RqATRRh4AlADic3SYNl7U5DAI4EXO0BqxmkAg6PC+ahIXR196GhsQ2P + PvF7LFYZEKMyIE6pwYe79zDtwMgvIIDYxk+VAFRvSBBvj+4XEsBmZwQgDUAFrG2tfTunuZ0eo8/ti3qG + BKGnOBH4pAOFEgQ6sT4jFzJdHuRZBUjLKUBKbhESc4qwIqcES+k9sxAJucVIUmWgq7sbXh+N9lFix4+y + sgoslaoZARZqdbj6hzexUUEXFatSmlncKyPgp0mNmS4VDKCxpRkr5RqspNm86nS22FPQT/4EzQOIRBSR + Hsx73LwQiASUZfNT/QERYRICRIkQMRGkZVweL4aHh9DX14fWjm7UN7fj3l88jKWaHCxQZyJWqcSho8eZ + BqDYfkICRMC3rRhiWZxOVhT2ESinYLU5YbHZYXNYmTPY10c1gU6P0ePyRrxD7mD+pPx34XYxEeimaDTx + ph/eBpWhCLLMfKRk5SIpOx8rswuxPKsIS7IKsNxQwL1LtSzk89JwJkUArMc2YinTAAYs0OpwyVVXMYGd + jgDCeJi+cwTww2K3QZ6RzSZ0rtJn4ebb7uZGyiiNHOBibmEv5gnAniXimfPeuFjgQpBJoTUGnaRSPU7Y + LEMY6O9DV1c3Wtq7GAGuuuEmLFIaEEPTzpQqNHX2wO0Jsmt5/eQsctfjhf5ZCSCWFQ+SKwl/2GKLgghg + tTvR00MVQW5vlAA8JiKCWPhjbsLhxKv/2gVleiHTALRw0kpDLlZkFWCpIR+LswqwwlCAOEMu4lM0OHDw + EBM+By+7wTSdAQvIBOjTocnNhcflg4t6uUAdigkgBue4BZhvosqihRqzsDI9G+u2bIfL64OLGtAbEbQw + ChE0Og3B2kgjegJwUk+dQPBCuJ1u3HTrj/Do00+hu6cPPV1daO/o4AjQ0o7cdRtZgelCdSb0xathd9O1 + gkxb8ASYSs+nznYmghcSgH8n4VusHAHoe08PVQS5x2oAoUqZMgFcLjQ1dUCuz4MypxApmdlYZchBgiEP + S9JzEW/IRYI+H7HpuYhNVOHTvftZI3j95ORRTw7g3Iu+xVbPIgLEp6SivrYB7ohTRaNeBF7ViwUfNQGR + MJBGvTTZBcwEJBrykFm6Fg42lZtU9qgHz3o/Gw3kUq+kySgnQotFdZsGMWilVCynrqlUSyx8gnlwGEkK + LZZqDbj3ocfR3tGN1rY2NLd34N0PP0G8RMUcwFh1Jr53y22MWC5vgFUbeShf8O8mAKWCKSSgXijs/ULw + FxOD3z/stGHIZIMsuxD6NWtxxXeuZ4M7yzLysEyfiXhaUkWdhzh9PpalqlBRfpI5NLRsuoslPQJ4/Kln + sVidiRiNFksVKjzy6K/h89DoFtlJrpfySZFxRBAIhByytrZWpGgNWKHPwUpDPjJK1sNOlbDMrnPHRe0u + CTgwAncgCKvbjfqmRvzgjtuQmp+HZG0WjpfVMoeV1epFhnOF16PSqvMuuhTx6gwsVmpx9/0/R0NLK+pb + mnHldTcgXkoOYCYWa9PxxpvvwGr3wBEhgIMqgT28GR1LAF7gvL81WdsLNfdE4Gw/bwLsGLZYGQHot93d + lAkUEUAM2i4mhPDitH/IZcPAkA2aNRvxi6d+jx3/eBWp+mws0+VgGY3u6TOwRJmJWG0OVsnU6OrsYQRw + 0Jg0JTW85Lh1IZHm4ql0iFGqkVWyBhaLk1sqJTI4wjeSOFnCC4O33R/s3o3lSh0SdJlYlZGJcy+9kjU6 + eezktAlTrVxdXQh2bwBV7Z2obOthdQtzZXrMTdXjwkuvhc8RwAiNRNI1BHE7cyR9Qfzjn/9iyat4mRKL + ElPwwsuv4FB5BVYqdIil1cPUBizRZ2Lj+Rfj8MEyeN1BeDxB9vy8kIWC53GqHi8W8FhBU0+3R0Hfh4at + bGrZ0LAFVrsFNocTnZ0mSgW7jS6nJ3oCMQEIYsELb4JdxGVDZ88ASi+8FF29Jrz+r7eQqs1CgjqbLZG+ + SKtBPK2Jp8lgtpnCMspuOTxe2L0+1vgBbwC33XE34mRqbkauVIlfPfl7uF3U40YdNU7IwmQJpyGiJAgE + cffPHmCze5Zq05GYrsNdDzyAxpZe9JsssFOJm8ABJMJYXW40dvehoqUH1e19+MGP7kBsUiqb6r1EIseb + 77zPSOD3heGlegNhGOinBSCdKNm4DksUCixMlSNv7XrccMedWKIm4WcgVmtgy8clZuRBkVmI3zz1Bwzb + yaSOFbiQCOPMrEgDiDvnqYhAwh8lAk8AF0cAp4AAdJD4RDwpxIKPHm+n/TZ0dffjRH0z7BYX3nzjfaSq + DVhGqo96gVqDOCKAOh1bLrqEKw1nDpeXLYnm8PgR8HjR2dGFVHU6FiWrECNRY7k6HYfKT7KScq6ShsrM + I+Ph9JnK0VhFEmkGbukTKu/KXr0W8Souq5ii0+KTQwdR09CB2pYu1Hd2obvPiEGLFaZhK7oHTajv7UFN + Zw+qW42o7hjC2/tOID6F6g3lrAwtzZDDfBzyFdyUm6AEFQv/eBL4cfjoYSQqVYhV0HQzBeLlCsSR8GnB + CZ0ByykkzcxHUn4xUnMKcfGV16K+oQ1OJwnXA7vbw0wQDfnS6KzDSaaXYnyOAGJBRzvfuF4+Fvx285AF + g2YLBoeGYbENjxLA7fYaKSnAn2QyLSAEL3yeZWarjdXlmaxWmO12/OP1t5CmzcAyKu1SpiOW5svLyQwY + 8OBjj7OSZiHbeRtI9vDpZ57F4hQFYqR6LFBlIH31GnT3m+ByUUbPCSelWoVOE2kSNlGF6uTd+PPfXsZS + uZYRj7RAsjYdb3/4Ieo7u1Hf1YO6zh40dfWipc+IZuMA6nv7UN3dg5MdPahs72Oo7RzAd394JxYmyzEv + VYkFqQoUrN+Exs4O5rd4Q4A3xDmwniDNPQwj5AvhJw88gFiVAgtVSixUKBCn0WCpLgMr2JKzedwCk7mF + kOaXsjGRjLw1eOHFV2Cxe2D1eGGh9Dql2qO5+9HRO3Hn42UhJAEv8MnIICQAnYv5AB4PRwBeqGJhi8Ez + UEgA1pusHIgI9//qcSxXabGE5topdFgkVyNGqsVymRYna+oZ48VeLu8AUXy67dJvYb5EiVlKHeapNdh8 + 8cUYdtgQYLWHIq/Z64eTVSW70W8yIbNoNTfBk5Z7VegQL+eWdrnshh/gL6++ivK6BjR19KGusxeVnT0o + 7+jByfZ+nGwfQGXbICpajahrM6KqvguZxRsQm6jAvCQZZsqkWLv1PPT3mBDycvWG5H94Rij05Kp6hm02 + 5K5ZizilEjEKOeLUaizXZ0aFT8vLpuQWQpJXDFluCWRZRUhSG3DxldfhyPFKuB00f59SyRFz4Bp1/njh + C2XAy0GoBU5FAKYFxASgMJCcQJ5NvN0QmwDxfuGFjEPDGLBYYBweRrfRiPTS1WzKNS21EiujVTaoKEKN + q757I2wsFcmFlBPZPwqL6psaoMgtwGyZGrMVKixISkVFXS08FDq5A2OOp9ieilKdbifu/unPsFydxQjA + YwmZAqUO8Ur6qxYZlijUyN20FZfdcDPuefhx/PZPL+G5na/h5bc/wP9771PsePcTvPTG+/jzP97CnQ// + CjGJErbYw6w0OZs2VrBuE2obmhF0cSttuWkWFFsJjJsW/8ab72KJTIF5SjmrbFquM4wKP6cQaXnFDGyx + 6bxihsT0XCQqdbj8muvxziefYsjlht3phdM+Vv0LO+hEQp+IACT0UZAWGCVANA9AI0T8D/gTCIUtFrjw + M52wb2gIxmELmjq7cPFVVyGO2UIVFspUWCBVYq5CDmlWDmoa25gDaGN+g5Mxm2yg0+GFw+WFk+Jwsuku + G8656BI2FWqeVInFaQq0dffCQZqKIgeW2+bGK5wuN1wOB/7x+r+QpM3AUgWt4pnBFnxK0Bi4RR3VWsRT + dKHQY5ZEhZlJEsxdmYaY5YRkzFm+ErMTVmLOskTMoPr8ZUmYtSKFTSY5OykFMxJTMSeJpo3JMFsiRZoh + E8ePl7Pafl8owLSAj+YjUu2C248LL7sSsWqadq7EMm0Gkik5llPIhE0LTssKS7gVx2kFchohzS/l1h7W + 071rsHrb+djxj3/BanEyc+ngCTCB6hcLXCx4ks8ouO/MB7A7RzUAXUAoeB5CZ0O8T0gAutnv/uhOrEjP + YhWwtAonLcI4T6LAnDQplur0+OjT/bAMO2BxudhqWrxaY06Oww+Hk3ozTWZ0Y+ebbyBWosTMNAXmShTY + dsXVsDm8cDndGPbYYXU74XI62BQnu9uJT/d8Ak1RPpZp07FKacBKVSZbxHm5jkLRLCzRZrJVPxYp09lk + ktkrpZgVwcyENMxcmooZS1MxcxmHWbRteRq+QeXZK9Mwe1UaZidKMDdJijkpcrZsyyqdDvuoUpkNIdO8 + RRpICrBS9WPHq7CKkj8qDeLVWqzQZzHHj8ZHpAUlkBetYfURyuL1UBStY5AXrkUaDZpl52F5ugHL5Eps + vfgSNHV0wOlws2Fci2PUFIsJICYCL/yxGoC2DTECkGyjTiARQChcIQGEtmYi+08n/d51P8QimQbTlRrM + p3VvU2nZU5p/r8QqTQb+9c4u2IYdsFkcsDipNGmUANSrnVTp6vQh4PSis70bitxCzJJoMEuixRK5GnuO + HIOdectOWFzcOciMUIP87V+vQZKThSXpOqZuEzVZWKHJwipSqzTPgNLQGZSRzGIEof/1mZ+oxKxlvOBT + MH1JCqYv5t7p+0zat1yCGaukmLlCwggxazlNHZOxmUczpTLMkkiRpDfgo0/2IegJIkRJKwpNKUT1+nH7 + PfchQaPDYjW3CGVCBo2UFkFTuAWa4q3QrDkX6nWboFp7DlRrzoFm3RYoSjchsbAUSzNzsDQ9A/EqJe78 + yU/gsLtgtzkxbB9v+09FgLGC57XAEIYsZnaOjs6BndO8Xh8zAROdjAcvfGHPF6K/14zv3/5jLKJVtVJp + 8QU54qRqXHL1dSirqcOwjWJPGoBwwOrg/A1C1LN1OeCl7VYHtn6LFnNSYo5UgwVpCjz5hz/A6qTf2Rlo + ufdhO4VDLrzw179hlU6L5ZT1I+GnZyMpIwdJhnykklrNL0FKfilSc0uwMi8fa88/DyaLFXWtnXjjvY/w + zIt/xWO/exoP/uZJ/PxXv8Uvfv0Efvn4k3jot7/DTx/5FX78yKP4+e9+j9/99WW89PpbeO/AITYTeV6y + BLMkCsyiv5eRqLBj56sIeChf4YMz6Gdh4ZDZjPTCErYA5QKNHnFaPW7/6YN48a+v4tvfuwM567Yhfe05 + 0G+6ALpN26HduB3q9ecjtWAdlhvysSwjG4u1elz631fBRprY6oDZNl42PMQCFwreNDgE48AgjANmDJgG + YR4ejGiAAU4D0BgxHczbd16wYhKIL8ofNxhxME6UV7OG2vHm26hubsEwsdVqw7DDArPdgmE7OTEuDNvs + 3D6HE1YigdPOJizSahzzZAo2N59Kw6647joM2YZgddox5KQGsGKIpoFZrPjZzx9EIlOvBiTpchgo/ZzK + /tihBPKSDUgpXo/UkvWQF2+EsrgUHx46AKvDxsIrbqx8tLaBZs7SX7yxGjuWnfTC6ac8g4+lpGk9YFrm + pbG5FWu3nI+5qySYnciZqVipAk8//yIzYW7yCygn4fHgbztfRQLNWVSnY55KB1VeCVpa2+GxedHZZ8b7 + ew7h8Rf+htsf/g2uue1eXHPbfSjcdikSM/LZOAZlMjeefxHsDg9sVucYAoh7+lhbPwoS/oDJjH6jif1Z + ZT+NcQybmTzb2qgkzOkxErvEwp5I4GIIb0JMGCF4tcWOt1hhttkxRD3Z6YTV5YLV4WArdi+V0zIoWsTI + NUgvKEZbeydsdiuG3U4Mu5xs4cVeUz9+cOsPkahUYpXOwBqKFnKmBZ1pkgmVoClLCOdAWroZElaJvAG/ + fuZ5mJ0udi5xVo2HOC0rBL+dwrQB8xCuve57iFmeyiZ0EgkWydNxy133snQrJdYoQUTabevF32IFIfOU + XLHLdTf/AFazDQMWcrwtMJEDPWTFwLADJosbdzz8OPtfgpX6bKzU0Ujm+bA6vbBaXUx7TdT2JGihRmad + ckzP50AE6BskAliZVulo69w5zeFwRzUAL0ihChGfeCKc7rgxpCF1Rb3YbucI4HbjUFk5UrV6xErliJEq + EadW4p2PPoadJkbYKRligdVhQXVDHc7dfgFWqVRI1OiQSDF2Ri6bU0hr+tMEU+3qDdCuXgflms1Qr9kE + beka/PCuH2PISg6jDxZWHcsNcPEmSBhj8/v4DJw4TGXvlMdw+PDgQ49gwcpUtvLHPEU2FqmycO4l30J9 + SwvTKl63C5XV1VilTsd8KgtT67A4XYPjJ6thslPiZpiNPPYNDqPfbEW/2YFfPP08IwBbml6XjY3nX4gh + mxvDFgcLt4VtTqDeTeB7uhBM6NTzjSb09Q+g1ziAHpMJpqGIE9jRuXOazeZgBOBVhlD4YhKIv/PgfzeR + wCcCJYsIFBH0Dg6i5JytWEzr90toCpUEP3nkFxiyWWG1WmG12WB1WvHe7o+hLyxFMjl36dlIpv/yycxF + anY+pHklUeHr19CE0w1Qrt/MZh5fdMXl6Ok3sl5JkyqHSdiOycc3eIi1Aw8bxeUUozvczJQ99cwfsDhJ + ivmKDMTocxGfmQd16VrsPkxTuVysSHTbNy/l5jqqtFioS8fTzz6PYdsQhqxDGBgaZgToG+QI8PiLLzMC + kEaj/MCac8+D2eLC8LAD/eahcbIhwRNIBmLhj+n9RAKjaQwB2lo7OAKQuqeNdDMmli0aT4KJCMGDfst+ + RyQRqCke5ki6mMegzcFgtjvxxq4PsEyuRbw8HfFyLTZecD76h01s3ryJeojVig93fwKZIY/9IWNSRgHS + souYRy3LKYQivxjKorVs7oF+3Wbo122CfuMmaDdtxgX/fSU6e3ui5dAkQJpsMhUC8KCcOc1hIF+FfJYh + pwsWF036cMFGhbFuB958dxeS0vOxSJuHhfoCLMwqgLK0hBWkkr9RsnEzW48whtYcVuvxuyefht0yDLPV + DBMl0IYs6Bsk2PG7l3awnAEtU78qIxcF6zbDQvbfYoNxEhvP44wIYLWjtbmVCGA3Dltt6B8aYqBsHh0g + vtCpQKqJfkfZQIJZTJBImjiaLrY6Gcw2F176+6tIoIoZahyNFrqCAtS3tmGA2E2JC5MFTz3/AqTFa5FY + tAaS/GLIaW5h/lq2uoiWlp1Zuwm6dZuRvuFc6DecA+36Ddh+zbVo6+llyRMmSEE6e4yAJ0h3C0GhJpkq + HqS1eNBQtpUmXLq8OFnXhKz1W7EoswALCouw/Ue3wGR34C87dmCZSocFNCai0GGJXIG9Bw7BYbHDTBrA + QoIfYiaACPD03/7G8gXLswrYn1KVbN4G27ATRuswjKaxvVwoaPpMQp5I8FEzQAQYMME4OIThYSuamyYg + QJ/ZDOPgqF2ZiF1ikGriyUPgNchkBDBZyOHhUNPQwkrF4zR6LCQ/QKHGpf99DUwDVlhMVpj6Tejo7cNz + O/6J/77pDjzw6ydxyXdvgn7NudCu3QbduvOgX38OE37Gxi3sXVOyHu98spepaoqfo+p7igQQ5j8o9iaH + lXwWMls8CXhC2JweuOyUqHGgqqUB22/5Ib5z78/Q1mPErg8/QkpGBmJUWszXpGORUo0LLruMc8Is3ODN + oNUWdQIHhl34w44dbLxgRXYRVmXmYuMFl2B40Ia+ITP6B0blIBawWNhC28+DyvG7jQMsEhgasqCpqXnn + NKvVbiS1TbaYBx0gZhLPMqFnGb0ZgfCFBODBa4aJCGC2OfHXV3ay+fNLaIlWuZ6t23ffz36JQeMQG+Dp + 6+9HZ8cAPt1zDB98+Aka2tvwxB//hKwNW6Bft5URgITPsGkrdOvOQeHGbahubIXNToKfuKhFLHix8HkC + kPCZ4yogAJGCgcyD3YXGplbsPnQIuw8cQu+AGa+9/S4k+nTEUTqcLTqthzo/H8fLTsBsph5ox9CQgw1J + 95strC0GrR488/LLSMzKZwRIzMrDxgsvg3nAgp5BCuPGevWT9fRTEmBgAH0DgzCbhzkCkA9gHrawHQSy + Eb0DJvQNmDivkX4sOiltJ9AxRBYiDWkOHrSw8hhEiMETwcgGkLgHHyAtYXPg4cefxHKFHrGyDLZS51Kp + Bg88+BD6h0zoGBxAa58R5TVNeO/D/SirPIk+kwk733kP2ZvOh3YjqX5adWQLMjZsgXrTFjYRtWTLdtS0 + dEYcQDcsLgo7R2vkxMIWhr/Rz1Ybs9P0l2+KzFyc860rce9Dj+H1Xe+ha8AIs92G9t5+HDxRgaPl1Wze + 3ZMvvoAYgwbzFDLESGhcJAOqvGLsP3YMw8PDjACUNyHHzmRzYsBKRHBg2ObBr5//E/enlFmFSMrKx7e+ + exMGBszoM/ajr8/EHFoCLwMe/HaSFwcjugl9/egi9Pajs7cPXUYj+k3mUQLY7U5mAoQagEggBBO0kAAD + 3Hbh8UIS8OZE6FcICSA0N0wzWMgrdeMXjz6BBGUmW/BpkSoDS2Qa/OzBX2Jg0MYeqqm5C8eON2Pv0Vo0 + NLejs9+Ed/YeRN4525j3n04O4LpNUK/fzBaeolnJq7deiGbKJ1DNg9vJOW4TlMAJCSAEzXlo7+mBLq8Q + y7SZiNPnIlZlwDKZGsukUpRs24q7f3o/Wjq60d5vxDU33Yh4hQpzaMEqmQqL5BrkrN/M1iIymQdgJodZ + 4LnTINogEW3YDpfTi3t+9SRSSf2n5zLcft8DTAsO9PWir5frwQQS5EQQ7+8k7dnfj46+vigoj0F/UtnM + m4Bhq32MIM+UADyEWmAiCAXPg5FicAhWs52Nft117wNYotRhkTob82XpbIWNn//8EQybrOjpHkBVQzcO + V3XgcGUDWrt6WM84UVmFbZddwUjAC15bupGB/IG1F1yExq4e2B2jI2vCns8TQBy98JrguT+/hARdFhaT + r5KRgzhdLityWaTUYbZSwVb0ePHFVyDNy8dsHa0JpEFMih5zpCqUbtnCCkTN5gHYzAOwkJM9yIdzwzAO + DuJkbQ2a2trg9Hhw5c13sBzAcipp12Xjod8+jX7jAIx9PUyF8wIVC14scLHg23t7o+AJ0NTQvHOaxWIb + Q4CJwNS90JYYOZaNMRsiMkwVRIJeyiOYrRii8WqLBT/68U/YHzSR7VwgV2ORRI1fPPgQBgeH0dJlRE1j + B47XtqGyqR2dfb0YGBxgHv/l198AXeE66AnF66GhEbeitdAWr2MZNarTpxT0RD7AZASg4y+84ttYlFGE + uMxsLMsyIK2gmCOpSssKVubLlVik0mCuUoVZCgVmKqiuUYNvXXMt2nu6YLFZMDQ0hGFS/YLwjTrTX//+ + D6hzCrBcocEKjZ4bxaR6Sk0mVmgysevDvejr7UdPTyfae0cFKRb8VAnQ1tODgcj1a2vr35w2PGw1UkKD + hMgLcxyox0f8AbIr9HmsDeK0BA/SEJwfMYi+iI8wEXji9JB2YP6CGSYrOYtDuPmue7CU/mBZSSt3axGb + KmN/otA3MICObiOq2zpRVt+M5vZudJp6YbQMo3/IirvuewCKrGKo8lZDXbAGmsK1bHq6rmgtirdcgPLm + VrZIA9XbkUawsIElwUCXIGcxZLOj1zQERV4pFmUWIT4rExsu3o7uITNuueceVvC6QKHFfJUaMxRKzJIr + Wf3CfLkMN9x1O4zDZgxauDB5kFVOUQrXBjOZAPMwfvv7Z5CozcIyVTqWazOZE7xMncH+oWyxKh0p+my0 + dZLw+9h0Ovq/oo6eXmbLybafDmT7iQQkeCERWL7HZEZ5eUX7tKFhi5EeVNibJwNvW0joYm9zIvAeqljw + YohNAlv3z2LD3T/9JeLl9C/bGiwgBzFVicd/9xTLD7R3daGuoQ0nKhrR0tOLfkqT0piGzYnn/vIyNDlF + UOWvgSp/HTS0PgHNVi5cjexN56KmlaIDIoAnMrI42vvpunymknC0spoVliykv5MzZOChZ5/Bu3v3oGDj + Rvb/AnPkasyWyzFbrsAsmZytcPbMS3+ByWLGwDDVSdrG+kCDFqZ+jxw/wQRMAhdWMCVo0rFYo2f/UnbR + ldeyAtau7l4264hHb58RPaQVTgMiARGAer2QACzpNzCIEyfKjdPMQ8NGCnWEKv10EJsEMT4rAXiHkVTU + 0CDlEBy49a6fslLxBYpMLFAYEJ+mwB//+AKGBwfR1dmPyppOvL1rDxo6emGmcjMaO7DbseuDj1lNnzx3 + LVT5qyHPK4W0oBRp+SVYs/U8dPaaYGMaYGyRK4XE0YSV3Y73Pt3LysoWaenv4ZWIVysRn65HXHoG5mn0 + mK3SYLZCgVmSFKQV5OLjo/thNJswZKbUOa1KTgM/o44vC/kGzWxUUZmZj+VqGsqmkvFcBhoEorqFlWoN + 3tz1Pjq7exkBhCQgAvCfo8IWEITf3t3LmQChBiAyDA5bGAGOHy8zThscHOrmCSC2J5OBhSF9k0NMCDGB + xOCJENU05iEMDJKDNIRes5n9RSvVF8TIqb5QhcUyNfsbuEGzGU2dvXjv0xO4+va7sOfECVY5Y7eTp+/F + sROVyCvdAFlOMWR5JYwAqVSGlbsaWy64BK3tnSzME458moa52kY+b0Fxeaw6nf3d+0KpDAsUcszXZmCO + Lgvz1JTho38YU2HTxRehqrUBXUP97B/ETSYb+obNDCR4/hnp2cg89hsHceMtd2G5OoMRgPL/NJqZROMA + WTm4/pab0dXdic7ObnREICaCEJ1dPePQ0d3DBC4E/f8BFfH29w/QcvSMAO9TJS4J4lTeJSHqgfKxZcTW + kHcqJACLQ8lniEAscP584u3R/WZqLPILzOgxm9A3OICbbrsDsWkqzJOQytUiQabBy6/8Py6e7Tbhitvu + gHTtJjz53B+ZKaA6Q5fDixPlVcgsXgdJzmrICkohzStCUnYJUgz5KFq3mdXmD1FSym7h7LSZG9sgT5kI + +Nunn0GcJoNVNc+j5drlGszWZGIeTfYwGHD+NdfilTfeQscAZdn60Ws2odfEDfD0DA2w+xdqux7TYKQD + 9ePwsQokazOQoNRjlSYLyfo8rEjPZ1VLnxw8jLau9qjw2zu6mFDFgudJMU749Luu7jHePznKrV3kA1jR + 02/CifJK4zRaKYrKsiYKLybzKIX2hN47e0aZSaqnq388eYQQE0G8nQffaF19dN4B3HTrXViQpGAl4zFy + HVaodNj5rzdYvv/OX/4Sy4s2sn/5uvm2O+Fw0GqYftgcHny67wBUuauRll0CSVYhkrMo1cqVi2Wt2Ygj + J6pgG7JhmNT1kHVM+vvPL+9gi0nHJKUhNk3Blrr7zp334c//eA3VTU3sPwX4dhPe80Qg7dZHnYKSMkyY + /bjxtjuxVKLEMqkWy6R6LNdm47s334G2rj40d3aiXaQBxILmCcAfI0R7V7eo9/egpbOXDTx19Q/iZE1D + 2TSjyfQE1aFPJuCJIFYrHaIboty9+FyMKCKSib+LESVCnxHGbhOMfUO4/OrrEJeShnlyDWapNEjQ61Fb + 34SXXnkZK3NXY5E2C8slapysaoTT4WMmgWYuvfbmO5Cl5yNJR8Os2ViRmYeEvBJINp8HddFmfPjWxxg2 + 2ZkzKUyttnf14I1d72Pn62/gSHklS/a0G41o7+tBZ183Ovu55+Kfj79v8TMQaH8POWaCtiqvqYMqIwtL + UmVYnKaEIisXJ6rq0NrRg+bubrR10HTzLlYcQ+/jhBzZz2PMvs5upvIJLV1daO3qRmtXHxt46uwdQGdv + /0+ntbV1/oCqdM+UAPyJCZ3d3MPwqqdtAtvDiDLJeXkiTPa9jRya7j7mT7R0dmLL9otYinWmQos5ai1+ + +6e/or+rA+q8dYhT5yFeloFfPvJbOOxeWGxUSWNnMfjfX9mJNE0Glqs0WKnOxApDMdZ991bot18NbcFG + 1Dd3YGBwtJCCrtfbN4iePjO6ewfR1TvINRwlZIwmdBlN6DRygj0dmfnnof8CFvbovj4jXnrl71ieRgSQ + 4dm//IV1qPbOHjRSW4oELAYRQ4gx+zq6mOBHMUqAtu5+0l5501pbO75PvYQ8RoovxUKbEKRa6OYiIFsT + tTu0jS5E7I0c397NoYty0b2cyaB4lsW0kbiWIfJdSJQ2MjNkVsje9fSip78flVXViEuTY5ZUiTlKNe55 + 4hl4HC7cevu9iNMUYJEiA5vOuxgWqxvDVheb528eNMNsMuPOe36CpTI5Fiso3MrB9x56DOtvuhNJpdtx + 208egGmQG+Pg/BfKpw+gq8+ETkLvAFPbvd396O0ZQF+viYVpQgJM1pGoHahNKJan1DIfz9Pzkhn5zdPP + 4Lof3ISW7i5GcmrD5i5OiKcSuBgtHRxa6b2zk5mRUZAW6GWRSGtXPzmnqmmt7e3fM9FgQz8lWHrQOoYx + HIRqhNDWOZ6JQrR2jv0db8fE9msiEPvFhBOqTCIBDY1mlK5liZeZcil++vAj8NhseOed97BEk4VF6nQk + a9LR1TeIIbODG5GMjGS+9PIrWCKRIUamZRM3b/rlw7j2wceRcO4VSMspQVMrjTGMFahQqIykkXth3nfE + 3Am1oxDituOFMaZ9BFqPvvP7WVtPIOTJQFHNWIGPB/kB5KA2tfdwBGjp6FjT2trOvGlGAMHNTobTEYCY + J3xAoY9wOkxEAKFdIw1Co4NZ6zcyAsxKS8F9Dz4Ap3UYjU3NWKk3IEapY/81sPvAEQybHSyFzA9fP/fH + FxCXnIo5aSqWZbz1/l/itieew4LN27EgPQ/Pvfi3qMB5ofCCZYISEID5O9SjJxA+/+xCAoiFIYaYJASx + kMWg5fB4tLR1RH9HE0rE4PZ1MQI0tnYFHA5H/LTOzk5VXV0DqxAhwYqFPRGmQgDhwwuTGacDHcs3KI9o + Y3d2c72uvx95G87l/uNvVSLSC3Lwu2eexc8f/TXiZfTPWjQap8RjTzzFVi7hCyhIA/zu909jYWIyZqcq + MFuixHKDASsKcjFHm8GyjedfetkYB5XAC5UngPB+SZ3z+4SqfrKefzqIjxcLXAwxARrb2xnEwifQeUkD + dBvNaGzrqgTwX9N6e3vj6uobA5QbJmaTcMlbFN+IEOPsEv1GCEHvJzCn8Ewg0gDUyORDkF0kLUXrDK65 + 8FLMTpJg3sokzElKQUyyFAvTFIiRyDFXIscsmQqXXHkthow2GFkhBQ2+mPHEk09jwfJkzEqVsf/y+0Za + GmbIJJgjpf/jUbKSrcr6JnT3GNHVa2T+By9Udj8Rf4a34TwBeBJ8VsFPBqZNhYjYeFqDSIimtnY0trWj + oa2NQSx8jgCdbPCsvceEptaeP02jF7GgqamlidhEPYX1YLrIKW5eTADe5n9ZEDYqkau334i151+MOYlp + mL8iETMSk9k/g81mf9WailkpKZiRpoA2rxg9PZSSJhMwjH7jEH7zxO8xf3kypien4qzUVJydmorpaRJM + l0oxQyrFfJkMz+/YweLltg4ucSIUqBjCe4sKTfCZGp7vlZ8F4rYXnlcIXvCnI0CPyYiGlh7UNnRcwwhA + r6amlj/V1NaxahYiAmPYBBfl8UUTQHx+MYTHEgHauzpx0eX/jdgVKYhZmoCY1DSs1Gew8XjdmjXI2LQR + ho1bkL/hHJRX1zHBEwH6+s146vfPIiaB/s1zJc5evgIzVq7C7JQULJDK2EKOi7Ua3PfYo2jtNbKQqaWr + Z9z9TARe0OJGnyoBxAI8lSAnOrf4d8Jz03HcPbajz2zCydpWNDa26aIEaGvr2lZWXsnGyHmBih9QiH8X + AbjPFCK1oqOzj6Y2oaWNCNuDDqaujWjr6UdLbx9aOwfQ1mVk6WqK5XnU1TWjsqoeFY3NONnUgrrmdtS2 + daC+owtNXT1o6Ohm52trp889aKBwbIJ7EkMsmDOFWIBTJYD4eDGEBKC2a+/twcmaFofJZJoXJUBtbe28 + ypN1wz09gyzlSra2pasXzR3daGrvRlPH2AdsJg0hxAQNMhHENz/ZdjHGnodUWQdaKcsVyTlQfUB7Vx/a + u/rR1sU5Yh3dfWijhAqLuclW90btN4GcIfpO52ghAvNgPg2RoAuNHZ1onOB+eIh78VR69GTH1be2Tgjx + 78WY7Hj+ex1PorZ29BhNqGlqQ11j+2tR4fOvurqW16urW2AesrEaOib4KE4vpH8HOFZ3o5nSph2Uw+iL + 2uyJINY8E2kf8T7xNXmcSsgTCUYsoNMd90WgrrUVtW2taOxoR3NbOysGPV5Zh6aW9qvE8p/W1tb77fLy + ejYG3856f8+EBOBVCi+AUzXSmeJ05+P3j3EK6b2zl4EjQN84wYudtM8Cuv5EPXeyHi0GL5TJtov3T/W7 + GHUtLQzsc2sralpb2H3RmAaZy6q6ZltfX1+8WP7TenvtcTU1bfaW1i5W197QOqoFGts7T/nQXxV4Ioh7 + MU+AKMT7J+nN4vOfCpM1/EQC5QUgFkxtc/O4fbRNCPH2030fD7pOBC0tjAB0X9T7a+oa0dDS9ahY9tFX + Y2Pri+UV1bBandxAAtnBNnI0Jma2+CE/LyZrdLHgxL2TsltjId4/2otPhcl6uvAe+R4mBu0TEuCzgCfI + RBgv6IlR19zGUEu2nt5bmpgGbGrvQm1Tq6e5uXmlWO7RV3e3UVN5st7f0d6N3t5+llsWJhfEEAvw80J8 + /skIICaKeP+ZHscfK76u8BlPJ6Cpgn9O8XbCqc4vFnRNUxODeDtFNSyyiRCgoa2ZldtV1NSjoaX97yz7 + N9mLdtY3tu6oKK9iYwPkODQKGkJ8U2IBiveLIT7+TCEWilhYYoFPtl94HvE5hRDf/6kEJDxGDPExQvCC + 5DHZfv6exMeLQYIn1DS2oqG1A63dZL7bUFnX4K9patKLZT7u1dDQqq2qqvM2N7dys3HaO07ZIBOxcjKI + j/+8EN/P5KB7F94/952zlcJzcg1e3djIwN+38PPpQMdWNTREQd/p3OLjhMcLcbr9p8ZYAjS2daLL2Iuy + 6mqaE/HKKXs//4qkhh85dryMlS6RGaB/7J6IBLQSBkEsmC8b/PXF36P3JdQQdO/N7WPA2cnRz3yD1TS2 + oKaxeZxAxNefCLyw+OPFwuMFKjxeeIz4O08g7p5aUB0BzaYmVNc3o7qhGbWNrQK0oLqBzkNt0soKVypq + 62m7tcNoTBbLetIXZYnq6htPUnaQSEBmQEiA6lYOVa3NDDUt4xvk3wkhCepa21DT2hFFdWsHqlraI2hD + dTMvfA5cQ48X2OkgPl5MADGhxNt5nKyvZ4hqEBK2AJVNETRy71XNbQK0oipyDXJo6fmPVVSHG1rabhfL + +LSvrq6urPKKkw76P5+O3t4xBCChn2xtRmUE1SICiB9K3FhTxUSNKoT4eDHYcS0tONnWPgaVrW0cWtpw + srmVNayQALzqPhOI1b7wuxjC/bzAJ4NQ+FUNLShvmgDNLdyztJCP0Mw0Hw1pHy4rQ0V1/Z7m5vBMsXyn + 9Gpsbv7+kaPHRxpb21gsLTYB4gbnIW4c8f6vFly+XwjeTk6EmibO0RI/gxhCYZ5O4KeCWOBiiDWAGDxx + ufvnOinVMJDwT1RV9VdXN6WK5TrlF4Czq6pqXzx8/ARTKUQCatS6ljY20ZK3n7VNzahlHigHcU+dKsTC + ExNNbOvFx4vPFz0vuz8KkYgMHDiHj9suhPi3PMQEEGPS4xrIVpOwOJs9DhFbPiHYvoigo2iNgPte1UDX + oGtRBNGKLpMZB8sqceB4ma+8tuE8sUzP+GU2m+eXVVUf2n/0aDT1WtvMM47DyaZmVDQ1RkF2aFxDTAHi + Rp8qeAKIz0c42diIimYOlS1NONk8VqgnBfdNoO/icxBO11t5bTDuuLpGtn7QZChvaEJ54+lRRsc1NKGi + sYWB/a6hKapJqEOwnl9RhYNlFf6TDc03TMnrn8qrtqNjWVlV1bG9hw8zFUMjhaNqpw2Vzc0ob25EeVMD + Q2XjeFU3GXhBEMQ9WiwE8X4xxMfTuauamrh740nQLCYId8+EsqYGVJzm3sWCPx2q6ptQVd88Kcobm1F2 + SjThBBGA/95An7nv9FvSACR8svlHyitopRJ/eV3DFyd8/kUkOFFVdfTTgweZeqJBF54EfOgkbqyp4Msk + wFQgvp/TQSzg0+F0BDgtIs4f/53XHPx3WlGNzPOR8nIcPnHCUtXcevkXLnz+1d3dHVtRVbXz04OHwpV1 + dWwGENnS6gbypNuiGPcQETC7JYxlo44Mj9FwjIE/TiQssQkQqnThccw2MnCfa0grREDfq5iAGsZCLHTR + frGAJ8PY89A9cWB2ndqjjoP4exVT61w4WNPYhOr6NoYqQl0bqmoJzThZW88V4nR04tCx4zh45OhgTWNj + oVhmX/grHA7PrKipef6TAwfC5GlS+TSNwFXVE0s5MjAbFVFRQlQ0tTAwNUb2LPJ9QjRyx5GdOxlpeNYD + Gxo4mx6x2ZUCm03HVDbUcyqdVHtjPYfI97KG+lE08p/rojjRUIfy+joQuXnQd+ExY87RUI+KBk7gwt8Q + KmprJ8SJunocr2/AifpGnGhoxIn6huj3svpGVNQKf1uHippGBr59K+sozOti6yMdO1mFvYeP4siJ8uqG + htZMsay+tBdFBzWNjd8/cOyYY/f+/az3dvYNsDCEVB5n1yJ2q2kCROzZuHhWDJ44tXVjCMDbbB7CnldR + X4/jEWGeCnSMEPy2sgkIMPa39RFMTBih8PnP5TU1UXACb8Txhgjoc+Q7kaCibiyZqKaxsraBgUxvc08v + Khqa8PHBI9h7tCx0vKrmuaPNzTFiGX0lr9bubs2R8vL9H+zZg0/2H2DOCJVj0Y1W1DSMsVUTIZp8mSC+ + JUSPjdjecep5ErssFsgXCSbcmlpU1o7fN+aYSQhQwYTZODlEBCirrmHtStEXhXkfHT6Ajw4fxuGqms6q + lvbz7r///rPEcvlKX83NzTMrqmtvP3DkhPWT/Yex/+gJ1DW1oa2zD40tnaimIkxSXfWtqKhrQXkt2bx2 + VDe0s8WeCOMSG/VtDNV1rRwidjKKZi6Fy4P3IcQEE4dcYgdKvJ0Dbaf9nMrlv08E2l/R0IoyytARGluZ + Gi+va0RFfROH2roxBOBBgj5ZRxqL0yIMdXU4WV2LyuoaRuy69jbUd7Qzrbbv+DF8evQIDlVW26qb2h5t + bGwcX9Xz73xRlFBR0/CT4xU17Z8eOoZPDh7B8ZO1aKIK264eNFKasr4RJ0md08NHezQ5ZGN7Pc27J5C6 + P8mSHJSiFaCuGTUR0OdxGuOUAp4KAehcZM5a2efJUFlL5ol6NKnpes5U1TSgsroBFVR5XFWP8pqxGmBU + E3BagtqjqrYONfUNaGppQzuVttGfWDa34tNjx7Brz0F8cqgMR082DB2vrn+svr4zQdz2X6tXd3f37OMn + ay785PCRD97fd8C7a89e7DtylA1JMla3tLAhZlaI0U6FGB2s/Ky+pYOBK9PmihmpnIkWdOIHO6r5wRuW + sh1NRPG/5ULS0dw+v59P/0Y1jGCfEGyEkN0D3Q/9/fsoaFttE2ks0lx0vsjnBopuGqOZRvKDuDEFug+6 + zmjGkhxVPnFF+XoK39poEk5bB+oaGlFWUQnqPB/tPYT39x/C7mMnggcrGz6ubOi4prl56N9j5z/ri2LR + 6uq2pUdraq769ETljt3HykwfHD6O9w8exe79x7DvcBkOHKnAkbJqGrHC8coalFXV4URVPQ6frMPhk/U4 + VtuEY7WNOFpTz6G6Dkdr6nCklsNheq+pY78l0Hl4HC2v4j5Xcp+PVhBGr0XvR8pOjgE7rpyOr8HR8loc + q6Bz17P3oxX0nQPtp/tm7yfrcaSqAQcrarG/vBr7K6uw/2QV9lVUYm95BfszjMMRHDpRhgPHjuHTQ4fw + yYED+GDPp3j7o4/w5ocfYteePdh98CA+PXxi8GB5zbvH65p+UtfTI/3SYvqv+lVbWzvjSEWF9OCJqvP3 + HDp288cHjrzw0b5Dr3+472DLR/uPGD/ad9j40b4jxg/2HjK+t+c4w/t7Txjf33Pc+OE+Dh/vLzN+fOCE + 8cN9hxk+PnDUSL/9cO8h9rv39xw0vvfJgej7e3sOGt+nffsOs8+7PtnP9rHj93B4n47/5KDxvd37jbs+ + 3mfctfug8Z2PDxt37T7CQNd/f8+J6L2wz5H7e++To+zzB3vLjB/sKzN+uK/MuGvPIeM7n+yP4v29B40f + 7KP74PDBvkPs/Z3d+4zv7T3QQm2w/1jZi4fKqn6w90i5ktpJ3HZf5uv/A/b6SXSeyF+3AAAAAElFTkSu + QmCC + + + \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.ViewMain.resources b/HRServer-Exporter/Installer/HR-Collector_Icon.ico similarity index 96% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.ViewMain.resources rename to HRServer-Exporter/Installer/HR-Collector_Icon.ico index a12e152..29496e5 100644 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.ViewMain.resources and b/HRServer-Exporter/Installer/HR-Collector_Icon.ico differ diff --git a/HRServer-Exporter/Installer/HorseRealityExporterIcon.ico b/HRServer-Exporter/Installer/HorseRealityExporterIcon.ico new file mode 100644 index 0000000..5d33a86 Binary files /dev/null and b/HRServer-Exporter/Installer/HorseRealityExporterIcon.ico differ diff --git a/HRServer-Exporter/Installer/Installer.csproj b/HRServer-Exporter/Installer/Installer.csproj new file mode 100644 index 0000000..8fe3c79 --- /dev/null +++ b/HRServer-Exporter/Installer/Installer.csproj @@ -0,0 +1,27 @@ + + + + WinExe + net6.0-windows + enable + true + enable + app.manifest + HorseRealityExporterIcon.ico + + + + + + + + + + + + + C:\Program Files (x86)\Microsoft Visual Studio\Shared\Visual Studio Tools for Office\PIA\Office15\Microsoft.Vbe.Interop.dll + + + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/Installer.csproj.user b/HRServer-Exporter/Installer/Installer.csproj.user new file mode 100644 index 0000000..657c730 --- /dev/null +++ b/HRServer-Exporter/Installer/Installer.csproj.user @@ -0,0 +1,14 @@ + + + + <_LastSelectedProfileId>Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\Properties\PublishProfiles\FolderProfile.pubxml + + + + Form + + + Component + + + \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/Program.cs b/HRServer-Exporter/Installer/Program.cs similarity index 86% rename from HRServer-Exporter/HorseViewer/Program.cs rename to HRServer-Exporter/Installer/Program.cs index 384d467..7f79a7b 100644 --- a/HRServer-Exporter/HorseViewer/Program.cs +++ b/HRServer-Exporter/Installer/Program.cs @@ -1,4 +1,4 @@ -namespace HorseViewer +namespace Installer { internal static class Program { @@ -11,7 +11,7 @@ namespace HorseViewer // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new ViewMain()); + Application.Run(new FRMInstaller()); } } } \ No newline at end of file diff --git a/HRServer-Exporter/Installer/Properties/PublishProfiles/FolderProfile.pubxml b/HRServer-Exporter/Installer/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..316064a --- /dev/null +++ b/HRServer-Exporter/Installer/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,18 @@ + + + + + Release + Any CPU + C:\Users\SvenK\Desktop\Horse Reality Exporter + FileSystem + <_TargetId>Folder + net6.0-windows + win-x64 + true + true + true + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/Properties/PublishProfiles/FolderProfile.pubxml.user b/HRServer-Exporter/Installer/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..e33a410 --- /dev/null +++ b/HRServer-Exporter/Installer/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,10 @@ + + + + + True|2024-12-31T15:32:15.4476946Z||;True|2024-12-28T23:01:32.2818479+01:00||;True|2024-12-28T19:42:18.4076168+01:00||;True|2024-12-28T19:16:29.0769132+01:00||;True|2024-12-28T18:54:56.8838956+01:00||;True|2024-12-28T16:21:12.5823676+01:00||;True|2024-12-28T15:05:13.4192695+01:00||;True|2024-12-28T13:26:06.8314521+01:00||;True|2024-12-27T18:05:18.9048630+01:00||;True|2024-12-27T18:03:06.8436570+01:00||; + + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/TablessTabControl.Designer.cs b/HRServer-Exporter/Installer/TablessTabControl.Designer.cs new file mode 100644 index 0000000..8c1b05e --- /dev/null +++ b/HRServer-Exporter/Installer/TablessTabControl.Designer.cs @@ -0,0 +1,36 @@ +namespace Installer +{ + partial class TablessTabControl + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Komponenten-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + } + + #endregion + } +} diff --git a/HRServer-Exporter/Installer/TablessTabControl.cs b/HRServer-Exporter/Installer/TablessTabControl.cs new file mode 100644 index 0000000..b79c2d2 --- /dev/null +++ b/HRServer-Exporter/Installer/TablessTabControl.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Installer +{ + public partial class TablessTabControl : TabControl + { + private const int TCM_ADJUSTRECT = 0x1328; + protected override void WndProc(ref Message m) + { + // Intercept the TCM_ADJUSTRECT message + if (m.Msg == TCM_ADJUSTRECT) + { + // Adjust the rectangle to hide the tabs + if (!DesignMode) + { + m.Result = (IntPtr)1; + return; + } + } + base.WndProc(ref m); + } + } +} diff --git a/HRServer-Exporter/HorseViewer/ViewSettings.resx b/HRServer-Exporter/Installer/TablessTabControl.resx similarity index 100% rename from HRServer-Exporter/HorseViewer/ViewSettings.resx rename to HRServer-Exporter/Installer/TablessTabControl.resx diff --git a/HRServer-Exporter/Installer/app.manifest b/HRServer-Exporter/Installer/app.manifest new file mode 100644 index 0000000..4d5c3f9 --- /dev/null +++ b/HRServer-Exporter/Installer/app.manifest @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/HorseCollection.xlsm b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/HorseCollection.xlsm new file mode 100644 index 0000000..d7cf2c0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/HorseCollection.xlsm differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.deps.json b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.deps.json new file mode 100644 index 0000000..ee57830 --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.deps.json @@ -0,0 +1,68 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Installer/1.0.0": { + "dependencies": { + "Microsoft.Office.Interop.Excel": "15.0.4795.1001", + "Microsoft.Vbe.Interop": "15.0.0.0" + }, + "runtime": { + "Installer.dll": {} + } + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4795.1000" + } + } + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "runtime": { + "Microsoft.Vbe.Interop.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + }, + "office/15.0.0.0": { + "runtime": { + "office.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + } + } + }, + "libraries": { + "Installer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "hashPath": "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512" + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "office/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.dll b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.dll similarity index 52% rename from HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.dll rename to HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.dll index 61c1c1e..b740f97 100644 Binary files a/HRServer-Exporter/HorseViewer/bin/Debug/net8.0-windows/HorseViewer.dll and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.dll differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.exe b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.exe new file mode 100644 index 0000000..3c9e2e1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.exe differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.pdb b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.pdb new file mode 100644 index 0000000..5c5f30c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.pdb differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.runtimeconfig.json b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.runtimeconfig.json new file mode 100644 index 0000000..f9988b2 --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Installer.runtimeconfig.json @@ -0,0 +1,15 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ] + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Microsoft.Office.Interop.Excel.dll b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Microsoft.Office.Interop.Excel.dll new file mode 100644 index 0000000..9d6d158 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Microsoft.Office.Interop.Excel.dll differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Microsoft.Vbe.Interop.dll b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Microsoft.Vbe.Interop.dll new file mode 100644 index 0000000..6c91b03 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Microsoft.Vbe.Interop.dll differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Server/HRServer.exe b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Server/HRServer.exe new file mode 100644 index 0000000..a99da5f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/Server/HRServer.exe differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/office.dll b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/office.dll new file mode 100644 index 0000000..1c82961 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/office.dll differ diff --git a/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/office.xml b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/office.xml new file mode 100644 index 0000000..e0a7c79 --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Debug/net6.0-windows/office.xml @@ -0,0 +1,17424 @@ + + + + office + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a button control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a value that indicates if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Returns a value that indicates if the specified command bar control is a built-in control of the container application. + + + Returns or sets a value that indicates if the face of a command bar button control is its original built-in face. + + + Returns or sets the caption text for a command bar control. + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + + + Copies the face of a command bar button control to the Clipboard. + + + Returns a value that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Returns or sets a value that indicates if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the ID number for the face of a command bar button control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context ID number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns or sets the type of hyperlink associated with the specified command bar button. + + + Returns the ID for a built-in command bar control. + + + Returns a value that indicates the index number for an object in the collection. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns a value that indicates if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns a value that indicates the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Returns or sets an IPictureDisp object that represents the mask image of a object. + + + Moves the specified command bar control to an existing command bar. + A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a Visual Basic procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a value that an application can use to execute a command. + + + Returns a value that indicates the parent object for the specified object. + + + Pastes the contents of the Clipboard onto a command bar button control. + + + Returns or sets an IPictureDisp object representing the image of a object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets the shortcut key text displayed next to a button control when the button appears on a menu, submenu, or shortcut menu. + + + Returns or sets the appearance of a command bar button control. + + + Returns or sets the way a command bar button control is displayed. + + + Returns or sets the information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Returns or sets a value that indicates if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + Reserved for internal use. + + + + A Delegate type used to add an event handler for the event. The Click event occurs when the user clicks a object. + Required CommandBarButton. Denotes the CommandBarButton control that initiated the event. + Required Boolean. False if the default behavior associated with the CommandBarButton control occurs, unless it’s canceled by another process or add-in. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when the user clicks a object. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + Represents a combo box control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Adds a list item to the specified command bar combo box control. + Required String. The text added to the control. + Optional Object. The position of the item in the list. If this argument is omitted, the item is added to the end of the list. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar or command bar control is a built-in command bar or control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Removes all list items from a command bar combo box control (drop-down list box or combo box) and clears the text box (edit box or combo box). + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Returns or sets the number of lines in a command bar combo box control. + + + Returns or sets the width (in pixels) of the list for the specified command bar combo box control. + + + Determines if the specified command bar or command bar control is enabled. + + + Runs a procedure, command, or user action depending on the specified object. + + + Returns or sets the height of a command bar control or command bar. + + + Returns or sets the Help context Id number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + Reserved for internal use. + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns or sets the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Returns or sets an item in the command bar combo box control. + Required Integer. The list item to be set. + + + Returns the number of list items in a command bar combo box control. + + + Returns or sets the number of list items in a command bar combo box control that appears above the separator line. + + + Returns or sets the index number of the selected item in the list portion of the command bar combo box control. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a Visual Basic procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Removes an item from a command bar combo box control. + Required Integer. The item to be removed from the list. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets the way a command bar is displayed. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text in the display or edit portion of the command bar combo box control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar or command bar control. + + + Reserved for internal use. + + + + A Delegate type used to add an event handler for the event. The Change event occurs when the end user changes the selection in a command bar combo box. + The command bar combo box control. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when the end user changes the selection in a command bar combo box. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + A collection of objects that represent the command bars in the container application. + + + Returns the object whose property is set to the running procedure. + + + Returns a object that represents the active menu bar in the container application. + + + Checks or unchecks the check box control for the option to show menus in Microsoft Office as full or personalized. + + + Creates a new command bar and adds it to the collection of command bars. + Optional Object. The name of the new command bar. If this argument is omitted, a default name is assigned to the command bar (such as Custom 1). + Optional Object. The position or type of the new command bar. Can be one of the constants listed in the following table.ConstantDescriptionmsoBarLeft, msoBarTop, msoBarRight, msoBarBottomIndicates the left, top, right, and bottom coordinates of the new command barmsoBarFloatingIndicates that the new command bar won't be dockedmsoBarPopupIndicates that the new command bar will be a shortcut menumsoBarMenuBarMacintosh only + Optional Object. True to replace the active menu bar with the new command bar. The default value is False. + Optional Object. True to make the new command bar temporary. Temporary command bars are deleted when the container application is closed. The default value is False. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Commits the rendering transaction. Returns Nothing. + + + Returns or sets an Integer value indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Determines if the Answer Wizard dropdown menu is enabled. + + + Determines if toolbar customization is disabled. + + + Determines if the font names in the Font box are displayed in their actual fonts. + + + Determines if shortcut keys are displayed in the ToolTips for each command bar control. + + + Determines if ScreenTips are displayed whenever the user positions the pointer over command bar controls. + + + Executes the control identified by the parameter. + Identifier for the control. + + + Returns a object that fits the specified criteria. + Optional . The type of control. + Optional Object. The identifier of the control. + Optional Object. The tag value of the control. + Optional Object. True to include only visible command bar controls in the search. The default value is False. Visible command bars include all visible toolbars and any menus that are open at the time the FindControl method is executed. + + + Returns the collection that fits the specified criteria. + Optional . The type of control. + Optional Object. The control’s identifier. + Optional Object. The control’s tag value. + Optional Object. True to include only visible command bar controls in the search. The default value is False. + + + Returns True if the control identified by the parameter is enabled. + Boolean + Identifier for the control. + + + + Returns an IPictureDisp object of the control image identified by the parameter scaled to the dimensions specified by width and height. + IPictureDisp + Identifier for the control. + The width of the image. + The height of the image. + + + Returns the label of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns a value indicating whether the toggleButton control identified by the parameter is pressed. + Boolean + Identifier for the control. + + + Returns the screentip of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns the supertip of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns True if the control identified by the parameter is visible. + Boolean + Identifier for the control. + + + Reserved for internal use. + + + Returns a object from the collection. + Required Object. The name or index number of the object to be returned. + + + Determines if the toolbar buttons displayed are larger than normal size. + + + Returns or sets the way a command bar is animated. + + + Returns the parent object for the specified object. + + + Releases the user interface focus from all command bars. + + + Reserved for internal use. + + + Reserved for internal use. + + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when any change is made to a command bar. + + + Reserved for internal use. + + + A Delegate type used to add an event handler for the event. The OnUpdate event occurs when any change is made to a command bar. + + + Reserved for internal use. + + + + + + Represents a custom task pane in the container application. + + + Gets the Application object of the host application. Read-only. + Object + + + Gets the Microsoft ActiveX® control instance displayed in the custom task pane frame. Read-only. + Object + + + Deletes the active custom task pane. + + + Gets or sets an enumerated value specifying the docked position of a object. Read/write. + + + + + + Gets or sets an enumerated value specifying a restriction on the orientation of a object. Read/write. + + + + + + Gets or sets the height of the object (in points). Read/write. + Integer + + + Gets the title of a CustomTaskPane object. Read-only. + String + + + True if the specified object is visible. Read/write. + Boolean + + + Gets or sets the width of the task pane specified by the object. Read/write. + Integer + + + Gets the parent window object of the object. Read-only. + Object + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user changes the docking position of the active custom task pane. + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user changes the visibility of the custom task pane. + + + Reserved for internal use. + + + + + + + + + Represents a single in a collection. + + + Adds a node to the XML tree. + Represents the node under which this node should be added. If adding an attribute, the parameter denotes the element that the attribute should be added to. + Represents the base name of the node to be added. + Represents the namespace of the element to be appended. This parameter is required to append nodes of type or , otherwise it is ignored. + Represents the node which should become the next sibling of the new node. If not specified, the node is added to the end of the parent node’s children. This parameter is ignored for additions of type . If the node is not a child of the parent, an error is displayed. + Specifies the type of node to append. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the appended node for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a value that indicates whether the is built-in. Read-only + Boolean + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the current from the data store (IXMLDataStore interface). + + + Gets the root element of a bound region of data in a document. If the region is empty, the property returns Nothing. Read-only. + + + + + + Gets a object that provides access to any XML validation errors, if any exists. If no validation errors exist, this property returns Nothing. Read-only. + + + + + + Gets a String containing the GUID assigned to the current object. Read-only. + String + + + Allows the template author to populate a from an existing file. Returns True if the load was successful. + Boolean + Points to the file on the user’s computer or on a network containing the XML to be loaded. + + + Allows the template author to populate a object from an XML string. Returns True if the load was successful. + Boolean + Contains the XML to load. + + + Gets the set of namespace prefix mappings used against the current object. Read-only. + + + + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets a object representing the set of schemas attached to a bound region of data in a document. Read/write. + + + + + + Selects a collection of nodes from a custom XML part. + + + + Contains the XPath expression. + + + Selects a single node within a custom XML part matching an XPath expression. + + + + Contains an XPath expression. + + + Gets the XML representation of the current object. Read-only. + String + + + + + + + + + + + Occurs after a node is deleted in a object. + + + Occurs after a node is inserted in a object. + + + Occurs just after a node is replaced in a object. + + + + + + + + + + + + + + + + + Represents a collection of objects. + + + Allows you to add a new to a file. + + + + Optional String. Contains the XML to add to the newly created . + Optional . Represents the set of schemas to be used to validate this stream. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Returns . + + + Gets a object from the collection. Read-only. + + + + Required Object. The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Selects a custom XML part matching a GUID. + + + + Required String. Contains the GUID for the custom XML part. + + + Selects the collection of custom XML parts whose namespace matches the search criteria. + + + + Required String. Contains a namespace URI. + + + + + + + + + + + Occurs just after a object is added to the collection. + + + Occurs just after a object is loaded. + + + Occurs just before a object is deleted from the collection. + + + + + + + + + + + + + + + + + Represents a collection of objects attached to a data stream. + + + Allows you to add one or more schemas to a schema collection that can then be added to a stream in the data store and to the Schema Library. + + + + Optional String. Contains the namespace of the schema to be added to the collection. If the schema already exists in the Schema Library, the method will retrieve it from there. + Optional String. Contains the alias of the schema to be added to the collection. If the alias already exists in the Schema Library, the method can find it using this argument. + Optional String. Contains the location of the schema on a disk. If this parameter is specified, the schema is added to the collection and to the Schema Library. + Optional Boolean. Specifies whether, in the case where the method is adding the schema to the Schema Library, the Schema Library keys should be written to the registry(HKey_Local_Machine for all users or HKey_Current_User for just the current user). The parameter defaults to False and writes to HKey_Current_User. + + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Returns . + + + Gets a object from the collection. Read-only. + + + + Required Object. The name or index number of the object to be returned. + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + Required Integer. The index number of the object. + + + Gets the parent object for the object. Read-only. + Object + + + Specifies whether the schemas in a schema collection are valid (conforms to the syntactic rules of XML and the rules for a specified vocabulary; a standard for structuring XML). + Boolean + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + Represents the Answer Wizard in a Microsoft Office application. + + + Returns an Application object that represents the container application for the object. + + + Clears the list of files for the current AnswerWizard, including the default list of files for the Microsoft Office host application. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an collection that represents the list of files available to the current AnswerWizard. + + + Returns the Parent object for the specified object. + + + Resets the list of files for the current AnswerWizard to the default list of files for the Microsoft Office host application. + + + The AnswerWizardFiles collection contains all of the Answer Wizard files (with the file name extension .AW) available to the active Microsoft Office application. + + + Creates a new reference to an Answer Wizard file and adds it to the collection. + Required String. The fully qualified path to the specified Answer Wizard file. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Required String. The name of the file to be deleted, including the fully qualified path, file name, and extension. + + + Returns a file name string from an collection. + Required Integer. The index number of the Answer Wizard file name string, or the file name, to be returned. + + + Returns the parent object for the specified object. + + + Represents the Microsoft Office Assistant. + + + Resumes or suspends Office Assistant Help during a custom wizard. + The number returned by the method. + Specifies the change to the Office Assistant Help session. + The animation the Office Assistant performs when it is suspended or resumed. + + + Returns or sets an animation action for the Office Assistant. + + + Returns an Application object that represents the container application for the object. + + + True if the Office Assistant balloon delivers application alerts when the Office Assistant is visible. + + + True if the Office Assistant appears when the user presses the F1 key to display Help. + + + True if the Office Assistant provides online Help with wizards. + + + Returns a value that indicates the last recorded balloon error. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Displays an alert and returns an Integer that indicates which button the user pressed. + Sets the title of the alert. + Sets the text of the alert. + Determines which buttons are displayed on the alert. + Determines the icon that is displayed on the alert. + Determines which button is set as the default button of the alert. If this argument is set to a value greater than the number of buttons, an error is returned. + Always set this to msoAlertCancelDefault. Any other setting may return an error. + True if the alert is displayed in a message box or False if the alert is displayed through the Office Assistant. + + + Releases the variable returned by the method. + The number returned by the StartWizard method. + True to indicate that the user completed the wizard successfully. + The animation the Office Assistant performs if is set to True. The default value is msoAnimationCharacterSuccessMajor. + + + True if the Office Assistant provides information about using application features more effectively. + + + Returns or sets the path and file name for the active Office Assistant. + + + True if the Office Assistant balloon presents a list of Help topics based on keywords the user selects before clicking the Assistant window or pressing F1. + + + Displays the Office Assistant and the built-in "What would you like to do?" Assistant balloon for standard Office online Help. + + + True if the Office Assistant displays high-priority tips. + + + Returns the text associated with an object. + + + True if the Office Assistant displays Help about keyboard shortcuts. + + + Sets or returns the horizontal position of the Office Assistant window (in points), or the distance (in pixels) of the command bar, from the left edge of the specified object relative to the screen. + + + True if the Office Assistant provides suggestions for using the mouse effectively. + + + Moves the Office Assistant to the specified location. + The left position of the Office Assistant window, in points. + The top position of the Office Assistant window, in points. + + + True if the Office Assistant window automatically moves when it's in the way of the user's work area. + + + Returns or sets the name of the specified object. + + + Creates an Office Assistant balloon. + + + True if the Office Assistant is enabled. + + + Returns the Parent object for the specified object. + + + True if the Office Assistant window appears in its smaller size. + + + Resets the application tips that appear in the Office Assistant balloon. + + + True if the Office Assistant displays application and programming Help. + + + True if the Office Assistant produces the sounds that correspond to animations. + + + Starts the Office Assistant and returns an Integer value that identifies the session. + True to display the Office decision balloon. The Office decision balloon asks the user whether he or she wants help with the active custom wizard. It isn't necessary to use the property to display the Office Assistant if you specify True for this argument. + The name of the callback procedure run by the Office decision balloon and the branch balloon. The branch balloon allows the user to choose between custom Help you've provided for the wizard and standard Office Help. + A number that identifies the balloon that initiated the callback procedure. + The animation the Office Assistant performs when this method is used. The default value is msoAnimationGetWizardy. + False to display the Office decision balloon. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + + + True if the Office Assistant displays a special tip each time the Office application is opened. + + + Sets or returns the distance (in points) from the top of the Office Assistant, or from the top edge of the specified command bar, to the top edge of the screen. + + + True if the specified object is visible. + + + A collection of all the objects in the specified chart. + + + Returns . + + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object (you can use this property with an OLE Automation object to return the application of that object). Read-only. + Object + + + Returns the number of objects in the collection. + Integer + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only + Long + + + Returns a single Axis object from the collection. + + + + The axis type. + The axis. Optional. + + + Returns the parent object for the specified object. Read-only. + Object + + + Represents the balloon where the Office Assistant displays information. + + + Returns or sets an animation action for the Office Assistant. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the type of balloon the Office Assistant uses. + + + Returns or sets the type of button displayed at the bottom of the Office Assistant balloon. + + + Returns or sets the name of the procedure to run from a modeless balloon. + + + Returns the collection that represents all the check boxes contained in the specified balloon. + + + Closes the active modeless balloon. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the heading that appears in the Office Assistant balloon. + + + Returns or sets the type of icon that appears in the upper-left portion of the Office Assistant balloon. + + + Returns a collection that represents the button labels, number labels, and bullet labels contained in the specified Office Assistant balloon. + + + Returns or sets the modal behavior of the Office Assistant balloon. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets an integer that identifies the Office Assistant balloon that initiated the callback procedure. + + + Prevents the Office Assistant balloon from being displayed in a specified area of the screen. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + + + Displays the specified balloon object and returns a constant. + + + Returns or sets the text displayed after the heading but before the labels or check boxes in the Office Assistant balloon. + + + Represents a checkbox in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified checkbox in the Office Assistant balloon is checked. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the text associated with an object. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets the text displayed next to a checkbox or label in the Office Assistant balloon. + + + A collection of objects that represent all the check boxes in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object. + Required Item. The index number of the check box or label to be returned. + + + Returns the name of the specified object. + + + Returns the parent object for the specified object. + + + Represents a label in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the text associated with an object. + + + Returns the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets the text displayed next to a check box or label in the Office Assistant balloon. + + + A collection of objects that represent all the labels in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object. + Required Integer. The index number of the check box or label to be returned. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Represents bullet formatting. + + + Gets an object that represents the object. Read-only. + Object + + + Gets or sets the Unicode character value that is used for bullets in the specified text. Read/write. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the font that represents the formatting for a object. Read-only. + + + + + + Gets the bullet number of a paragraph. Read-only. + Integer + + + Gets the parent of the object. Read-only. + Object + + + Sets the graphics file to be used for bullets in a bulleted list. + The file name of a valid graphics file. + + + + Returns or sets the bullet size relative to the size of the first text character in the paragraph. Read/write. + Single + + + Gets or sets the beginning value of a bulleted list. Read/write. + Integer + + + Returns or sets a constant that represents the style of a bullet. Read/write. + + + + + + Gets or sets a constant that represents the type of bullet. Read/write. + + + + + + Determines whether the specified bullets are set to the color of the first text character in the paragraph. Read/write. + + + + + + Determines whether the specified bullets are set to the font of the first text character in the paragraph. Read/write. + + + + + + Gets or sets a value that specifies whether the bullet is visible. Read/write. + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + Provides information about the digital certificate. + + + Specifies that the digital certificate is available for signing. + + + The holder of a Private Key corresponding to a Public Key. + + + The issuing authority of the certification. + + + The expiration date of the certificate. + + + A hash of the certificate's complete contents. + + + Provides the results of verifying a digital certificate. + + + The verification resulted in an error. + + + The certificate is currently being verified. + + + The certification is currently unverified. + + + The certification is valid. + + + The certification is invalid. + + + The certification has expired. + + + The certification has been revoked. + + + The certification is from an untrusted source. + + + Represents the color of a one-color object or the foreground or background color of an object with a gradient or patterned fill. + + + + Returns an Application object that represents the container application for the object. + Object + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only + Long + + + Returns the parent object for the specified object. Read-only. + Object + + + Returns an Integer value that represents the red-green-blue value of the specified color. + Integer + + + Returns or sets an Integer value that represents the color of a Color object, as an index in the current color scheme. + IntegerReturns a Long value that represents the red-green-blue value of the specified color. + + + Returns an Integer value that that represents the color format type. + Integer + + + Used only with charts. Represents fill formatting for chart elements. + + + Returns an Application object that represents the container application for the object. + Object + + + Returns or sets the fill background color. + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + Returns or sets the foreground fill or solid color. + + + + + + Returns the gradient color type for the specified fill. Read-only + + + + + + Returns the gradient degree of the specified one-color shaded fill as a floating-point value from 0.0 (dark) through 1.0 (light). Read-only. + Single + + + Returns the gradient style for the specified fill. Read-only + + + + + + Returns the shade variant for the specified fill as an integer value from 1 through 4. The values for this property correspond to the gradient variants (numbered from left to right and from top to bottom) on the Gradient tab in the Fill Effects dialog box. Read-only + Integer + + + Sets the specified fill to a one-color gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + Required Single. The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light). + + + Returns the parent object for the specified object. Read-only. + Object + + + Returns or sets the fill pattern. + + + + + + Sets the specified fill to a pattern. + Required . The type of pattern. + + + Sets the specified fill to a preset gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + + + Returns the preset gradient type for the specified fill. Read-only. + + + + + + Returns the preset texture for the specified fill. Read-only. + + + + + + Sets the specified fill format to a preset texture. + Required . The type of texture to apply. + + + Sets the specified fill to a uniform color. Use this method to convert a gradient, textured, patterned, or background fill back to a solid fill. + + + Returns the name of the custom texture file for the specified fill. Read-only. + String + + + Returns the texture type for the specified fill. Read-only. + + + + + + Sets the specified fill to a two-color gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + + + Returns the fill type. + + + + + + Fills the specified shape with an image. + Optional Object. The filename of the image. + Optional Object. An value that indicates the format of the picture. + Optional Object. A Double value that specifies the picture stack or scale unit (depends on the argument). + Optional Object. An XlChartPicturePlacement value that indicates the placement of the picture. + + + Fills the specified shape with small tiles of an image. If you want to fill the shape with one large image, use the method. + Required String. The name of the picture file. + + + Returns or sets a value that determines whether the object is visible. Read/write. + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integerc + + + + + + + Returns the parent object for the specified object. Read-only. + Objects + + + + + + + + + A collection of all the ChartGroup objects in the specified chart. + + + Returns an Application object that represents the container application for the object. + Object + + + Returns the number of objects in the collection. Read-only + Integer + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + Returns . + + + Returns a single object from a collection. + + + + Required Object. The name or index number for the object. + + + Returns the parent object for the specified object. Read-only. + Object + + + + + Returns an Application object that represents the container application for the object. + Object + + + + + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + + Gets or sets the height of a command bar control. + + + + + Gets the horizontal position of the specified control (in pixels) relative to the left edge of the screen. Returns the distance from the left side of the docking area. + + + + + + + + + Gets the name of the built-in object. + + + + + + + Double + + + + + + + Gets the distance (in pixels) from the top edge of the specified control to the top edge of the screen. + + + Gets or sets the width (in pixels) of the specified control. + + + Reserved for internal use. + + + + + + Returns or sets a color that is mapped to the theme color scheme. Read/write. + + + + + + + + + + + Represents a COM add-in in the Microsoft Office host application. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the state of the connection for the specified object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets a descriptive String value for the specified object. + + + Returns the globally unique class identifier (GUID) for the specified object. + + + Returns or sets the object that is the basis for the specified object. + + + Returns the parent object for the specified object. + + + Returns the programmatic identifier (ProgID) for the specified object. + + + A collection of objects that provide information about a COM add-in registered in the Windows Registry. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a member of the specified collection. + Required Object. Either an ordinal value that returns the COM add-in at that position in the COMAddIns collection, or a String value that represents the ProgID of the specified COM add-in. + + + Returns the parent object for the specified object. + + + Reserved for internal use. + + + Updates the contents of the collection from the list of add-ins stored in the Windows Registry. + + + Represents a command bar in the container application. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Determines if an individual menu is enabled to use adaptive menus. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar or command bar control is a built-in command bar or control of the container application. + + + Returns or sets a string that determines where a command bar will be saved. + + + Returns a object that represents all the controls on a command bar or pop-up control. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Determines if the specified command bar or is enabled. + This property returns True if the specified command bar is enabled; False if not enabled.Setting this property to True causes the name of the command bar to appear in the list of available command bars. + + + Returns a object that fits the specified criteria. + Optional . The type of control. + Optional Object. The identifier of the control. + Optional Object. The tag value of the control. + Optional Object. True to include only visible command bar controls in the search. The default value is False. Visible command bars include all visible toolbars and any menus that are open at the time the FindControl method is executed. + Optional Boolean. True to include the command bar and all of its pop-up subtoolbars in the search. The default value is False. + + + Returns or sets the height of a command bar. + + + Reserved for internal use. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + + Returns or sets the distance (in pixels) of the command bar from the left edge of the specified object relative to the screen. + + + Returns or sets the name of the specified object. + + + Returns the name of a built-in command bar as it's displayed in the language version of the container application, or returns or sets the name of a custom command bar. + + + Returns the parent object for the specified object. + + + Returns or sets the position of a command bar. + + + Returns or sets the way a command bar is protected from user customization. + + + Resets a built-in command bar to its default configuration. + + + Returns or sets the docking order of a command bar in relation to other command bars in the same docking area. + + + Displays a command bar as a shortcut menu at the specified coordinates or at the current pointer coordinates. + Optional Object. The x-coordinate for the location of the shortcut menu. If this argument is omitted, the current x-coordinate of the pointer is used. + Optional Object. The y-coordinate for the location of the shortcut menu. If this argument is omitted, the current y-coordinate of the pointer is used. + + + Returns or sets the distance (in points) from the top edge of the specified command bar to the top edge of the screen. + + + Returns the type of command bar. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar. + + + Represents a button control on a command bar. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + Is True if the face of a command bar button control is its original built-in face. Read/write. + + + + + + + Copies the face of a command bar button control to the Clipboard. + + + + + + + + Gets or sets the Id number for the face of a CommandBarButton control. Read/write. + + + + + + Sets or gets a MsoCommandBarButtonHyperlinkType constant that represents the type of hyperlink associated with the specified command bar button. Read/write. + + + + + + + + + Gets or sets an IPictureDisp object representing the mask image of a CommandBarButton object. The mask image determines what parts of the button image are transparent. Read/write. + + + + + + + + Pastes the contents of the Clipboard onto a CommandBarButton. + + + Gets or sets an IPictureDisp object representing the image of a CommandBarButton object. Read/write. + + + + + + + + + + + + + + Gets or sets the shortcut key text displayed next to a CommandBarButton control when the button appears on a menu, submenu, or shortcut menu. Read/write. + + + + + + + + + + + Represents a combo box control on a command bar. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the number of lines in a command bar combo box control. The combo box control must be a custom control and it must be a drop-down list box or a combo box. Read/write. + + + Gets or sets the width (in pixels) of the list for the specified command bar combo box control. Read/write. + + + + + + + + + + + + + + Gets or sets an item in the CommandBarComboBox control. Read/write. + The list item to be set. + + + + Gets the number of list items in a CommandBarComboBox control. Read-only. + + + Gets or sets the number of list items in a CommandBarComboBox control that appears above the separator line. Read/write. + + + Gets or sets the index number of the selected item in the list portion of the CommandBarComboBox control. If nothing is selected in the list, this property returns zero. Read/write. + + + + + + + + + + Removes an item from a CommandBarComboBox control. + The item to be removed from the list. + + + + + + + + + + + + + + + + + + + + Represents a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar control is a built-in control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. Set to True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Determines if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context Id number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the Parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + A collection of objects that represent the command bar controls on a command bar. + + + Creates a new object and adds it to the collection of controls on the specified command bar. + Optional Object. The type of control to be added to the specified command bar. Can be one of the following constants: msoControlButton, msoControlEdit, msoControlDropdown, msoControlComboBox, or msoControlPopup. + Optional Object. An integer that specifies a built-in control. If the value of this argument is 1, or if this argument is omitted, a blank custom control of the specified type will be added to the command bar. + Optional Object. For built-in controls, this argument is used by the container application to run the command. For custom controls, you can use this argument to send information to procedures, or you can use it to store information about the control (similar to a second property value). + Optional Object. A number that indicates the position of the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is added at the end of the specified command bar. + Optional Object. True to make the new control temporary. Temporary controls are automatically deleted when the container application is closed. The default value is False. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Required Object. The name or index number of the object to be returned. + + + Returns the Parent object for the specified object. + + + Represents a pop-up control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar control is a built-in control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Returns a object that represents the menu displayed by the specified pop-up control. + + + Reserved for internal use. + + + Returns a object that represents all the controls on a command bar or pop-up control. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Determines if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context ID number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns or sets the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the menu group that the specified command bar pop-up control belongs to when the menu groups of the OLE server are merged with the menu groups of an OLE client - that is, when an object of the container application type is embedded in another application. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the Parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + A collection of objects that represent the command bars in the container application. + + + Reserved for internal use. + + + + + + + + + + Commits the rendering transaction. Returns Nothing (null in C#). + Specifies a handle to the window in which to commit the rendering transaction. + + + + + + + + + + + + + + + + + + + + + + + + + Gets a CommandBars + collection. Read-only. + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + Represents a Microsoft Office system contact card. + + + Returns an Application object that represents the parent Office application for the ContactCard object. + + + Closes the contact card. + + + Returns a that indicates the application in which the ContactCard object was created. + + + Displays the contact card at the specified x-coordinate position outside the specified rectangle. + + that determines whether the card is displayed as a hover card or as a fully expanded card. + Specifies the x-coordinate of the left side of the rectangle where the card is not displayed. + Specifies the x-coordinate of the right side of the rectangle where the card is not displayed. + Specifies the y-coordinate of the top side of the rectangle where the card is not displayed. + Specifies the y-coordinate of the bottom side of the rectangle where the card is not displayed. + Specifies the x-coordinate position of the left edge of the card. + Determines if there is a delay before the card is displayed. + + + Provides the status of verifying whether the content of a document has changed. + + + The verification resulted in an error. + + + The content of the document is currently being verified. + + + The document has not been verified. + + + The content of the has been verified and is valid. + + + The content of the document has been modified since it was digitally signed. + + + An object used to remove a portion of an image. + + + Gets the Application object of the host application. + + + Gets a 32-bit integer that indicates the application in which the Crop object was created. + + + Gets or sets the height of the image that is to be cropped. + + + Gets or sets the x-axis offset of the image that is to be cropped. + + + Gets or sets the y-axis offset of the image that is to be cropped. + + + Gets or sets the width of the image that is to be cropped. + + + Gets or sets the height of a shape that is used to crop an image. + + + Gets or sets the location of the left-side of a shape that is used to crop an image. + + + Gets or sets the location of the top of a shape that is used to crop an image. + + + Gets or sets the width of a shape that is used to crop an image. + + + + + + + + + + + + + + + + + + + + + + Occurs when the user changes the docking position of the active custom task pane. + The active custom task pane. + + + Occurs when the user changes the visibility of the custom task pane. + The active task pane. + + + Represents an XML node in a tree in a document. The object is a member of the collection. + + + Appends a single node as the last child under the context element node in the tree. + Represents the base name of the element to be appended. + Represents the namespace of the element to be appended. This parameter is required to append nodes of type or , otherwise it is ignored. + Specifies the type of node to append. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the appended node for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Adds a subtree as the last child under the context element node in the tree. + Represents the subtree to add. + + + Gets an Application object that represents the container application for a . Read-only. + Object + + + Gets a collection representing the attributes of the current element in the current node. Read-only. + + + + + + Gets the base name of the node without the namespace prefix, if one exists, in the Document Object Model (DOM). Read-only. + String + + + Gets a collection containing all of the child elements of the current node. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the current node from the tree (including all of its children, if any exist). + + + Gets a object corresponding to the first child element of the current node. If the node has no child elements (or if it isn’t of type ), returns Nothing. Read-only. + + + + + + Returns True if the current element node has child element nodes. + Boolean + + + Inserts a new node just before the context node in the tree. + Represents the base name of the node to be added. + Represents the namespace of the element to be added. This parameter is required if adding nodes of type or , otherwise it is ignored. + Specifies the type of the node to be added. If the parameter is not specified, it is assumed to be a node of type . + Used to set the value of the node to be added for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + Represents the context node. + + + Inserts the specified subtree into the location just before the context node. + Represents the subtree to be added. + Specifies the context node. + + + Gets a object corresponding to the last child element of the current node. If the node has no child elements (or if it is not of type ), the property returns Nothing. Read-only. + + + + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the next sibling node (element, comment, or processing instruction) of the current node. If the node is the last sibling at its level, the property returns Nothing. Read-only. + + + + + + Gets the type of the current node. Read-only. + + + + + + Gets or sets the value of the current node. Read/write. + String + + + Gets the object representing the Microsoft Office Excel workbook, Microsoft Office PowerPoint presentation, or the Microsoft Office Word document associated with this node. Read-only. + Object + + + Gets the object representing the part associated with this node. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets the parent element node of the current node. If the current node is at the root level, the property returns Nothing. Read-only. + + + + + + Gets the previous sibling node (element, comment, or processing instruction) of the current node. If the current node is the first sibling at its level, the property returns Nothing. Read-only. + + + + + + Removes the specified child node from the tree. + Represents the child node of the context node. + + + Removes the specified child node (and its subtree) from the main tree, and replaces it with a different node in the same location. + Represents the child node to be replaced. + Represents the base name of the element to be added. + Represents the namespace of the element to be added. This parameter is required if adding nodes of type or , otherwise it is ignored. + Specifies the type of node to add. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the node to be added for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Removes the specified node (and its subtree) from the main tree, and replaces it with a different subtree in the same location. + Represents the subtree to be added. + Represents the child node to be replaced. + + + Selects a collection of nodes matching an XPath expression. This method differs from the method in that the XPath expression will be evaluated starting with the 'expression' node as the context node. + + + + Contains an XPath expression. + + + Selects a single node from a collection matching an XPath expression. This method differs from the method in that the XPath expression will be evaluated starting with the 'expression' node as the context node. + + + + Contains an XPath expression. + + + Gets or sets the text for the current node. Read/write. + String + + + Gets the XML representation of the current node and its children, if any exist. Read-only. + String + + + Gets a String with the canonicalized XPath for the current node. If the node is no longer in the Document Object Model (DOM), the property returns an error message. Read-only. + String + + + Contains a collection of objects representing the XML nodes in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a count of the number of objects in a collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a namespace prefix. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object of the object. Read-only. + Object + + + Gets the prefix for a object. Read-only. + String + + + Represents a collection of objects. + + + Allows you to add a custom namespace/prefix mapping to use when querying an item. + Contains the prefix to add to the prefix mapping list. + Contains the namespace to assign to the newly added prefix. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Allows you to get the namespace corresponding to the specified prefix. + String + Contains a prefix in the prefix mapping list. + + + Allows you to get a prefix corresponding to the specified namespace. + String + Contains the namespace URI. + + + Gets the parent object for the object. Read-only. + Object + + + Represents a schema in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the specified schema from the collection. + + + Gets a String that represents the location of a schema on a computer. Read-only. + String + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Reloads a schema from a file. + + + + + + + + + + + + + + + + Represents a single validation error in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the object representing a data validation error. + + + Gets a number representing a validation error in a object. Read-only. + Integer + + + Gets the name of an error in a object. If no errors exist, the property returns Nothing. Read-only. + String + + + Gets a node in a object, if any exist. If no nodes exist, the property returns Nothing. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets the text in the object. Read-only. + String + + + Gets the type of error generated from the object. Read-only. + + + + + + Represents a collection of objects. + + + Adds a object containing an XML validation error to the collection. + Represents the node where the error occurred. + Contains the name of the error. + Contains the descriptive error text. + Specifies whether the error is to be cleared from the collection when the XML is corrected and updated. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + Represents a Document Inspector module in a collection. + + + Gets an object that represents the creator of the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of the object. Read-only. + String + + + Performs an action on specific information items or document properties depending on the Document Inspector module specified. + An enumeration representing that staus of the document. Status is an output parameter which means that its value is returned when the method has completed its purpose. + Contains the results of the action. Results is an output parameter. + + + Inspects a document for specific information or document properties. + An enumeration representing that status of the document. is an output parameter which means that its value is returned when the method has completed its purpose. + Contains a lists the information items or document properties found in the document. + + + Gets the name of the module represented by a object. Read-only. + String + + + Gets an object that represents the parent of the object. Read-only. + Object + + + Represents a collection of objects. + + + Gets an Application object that represents the creator of the object. Read-only. + Object + + + Gets the number of items in the object. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets the object specified by the index. Read-only. + + + + The index number of the object. + + + Gets an object that represents the parent of a object. Read-only. + Object + + + The DocumentLibraryVersion object represents a single saved version of a shared document that has versioning enabled and that is stored in a document library on the server. + + + Returns an Application object that represents the container application for the object. + + + Returns any optional comments associated with the specified version of the shared document. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a document library version from the collection. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the date and time at which the specified version of the shared document was last saved to the server. + + + Returns the name of the user who last saved the specified version of the shared document to the server. + + + Opens the specified version of the shared document from the collection in read-only mode. + + + Returns the parent object for the specified object. + + + Restores a previous saved version of a shared document from the collection. + + + The DocumentLibraryVersions object represents a collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a Boolean value that indicates whether the document library in which the active document is saved on the server is configured to create a backup copy, or version, each time the file is edited on the Web site. + + + Returns a object from the collection. + Required Integer. The index number of the DocumentLibraryVersion returned. + + + Returns the parent object for the specified object. + + + A collection of objects. + + + Creates a new custom document property. + Required String. The name of the property. + Required Boolean. Specifies whether the property is linked to the contents of the container document. If this argument is True, the argument is required; if it's False, the value argument is required. + Optional Object. The data type of the property. Can be one of the following constants: msoPropertyTypeBoolean, msoPropertyTypeDate, msoPropertyTypeFloat, msoPropertyTypeNumber, or msoPropertyTypeString. + Optional Object. The value of the property, if it's not linked to the contents of the container document. The value is converted to match the data type specified by the type argument. If it can't be converted, an error occurs. If is True, the argument is ignored and the new document property is assigned a default value until the linked property values are updated by the container application (usually when the document is saved). + Optional Object. Ignored if is False. The source of the linked property. The container application determines what types of source linking you can use. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Required Object. The name or index number of the document property returned. + + + Returns the Parent object for the specified object. + + + Represents a custom or built-in document property of a container document. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a custom document property. + + + Returns or sets the source of a linked custom document property. + + + Determine if the value of the custom document property is linked to the content of the container document. + + + Returns or sets the name of the specified object. + + + Returns the Parent object for the specified object. + + + Returns or sets the document property type. + + + Returns or sets the value of a document property. + + + Describes a single Picture Effect parameter. + + + Gets an Application object that represents the container application for the EffectParameter object. + + + Gets a 32-bit integer that indicates the application in which the EffectParameter object was created. + + + Gets the string name of the EffectParameterparameter. + + + Gets or sets the value of the EffectParameter object. + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the EffectParameters object. + + + Gets the count of the number of objects contained within the EffectParameters collection. + + + Gets a 32-bit integer that indicates the application in which the EffectParameters object was created. + + + Returns . + + + Gets an object at the specified index or with the specified unique identifier. + Specifies either an integer representing the index or a string representing the location of the . + + + + + + + + + + Provides the methods for setting up permissions, applying the cryptography of the underlying encryption and decryption, and user authentication. + + + Used to determine whether the user has the proper permissions to open the encrypted document. + Integer + Specifies the window that is called to display the encryption settings. + Contains the encrypted data for the current document. + The user interface displayed by the encryption provider add-in. + + + Creates a second, working copy of the object’s encryption session for a file that is about to be saved. + Integer + The ID of the cloned session. + + + Decrypts and returns a stream of encrypted data for a document. + The ID of the current session. + The ID of the stream of data. + The encrypted data stream. + The data stream before decryption. + + + Encrypts and returns a stream of data for a document. + The ID of the current session. + The name of the encrypted stream of document data. + The data stream before encryption. + The data stream information after it has been encrypted. + + + Ends the current encryption session. + The ID of the current session. + + + Displays information about the encryption of the current document. + object + Specifies the encryption information that you want. + + + Used by the object to create a new encryption session. This session is used by the provider to cache document-specific information about the encryption, users, and rights while the document is in memory. + Integer + Specifies the window that is called to display the encryption settings. + + + Saves an encrypted document. + Integer + The ID of the current session. + Contains the encryption information. + + + Used to display a dialog of the encryption settings for the current document. + The ID of the current session. + Specifies the window that is called to display the encryption settings. + Specifies whether you want the user to be able to change the encryption settings. + If True, the encryption for a document will be removed during the next save operation. + + + + + + + + + + + + + + + + + + + Provides file dialog box functionality similar to the functionality of the standard Open and Save dialog boxes found in Microsoft Office applications. + + + Determines if the user is allowed to select multiple files from a file dialog box. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a String representing the text that is displayed on the action button of a file dialog box. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an constant representing the type of file dialog box that the object is set to display. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets an Integer indicating the default file filter of a file dialog box. + + + Returns a collection. + + + Returns or sets a String representing the path and/or file name that is initially displayed in a file dialog box. + + + Returns or sets a constant representing the initial presentation of files and folders in a file dialog box. + + + Returns the text associated with an object. + + + Returns the Parent object for the specified object. + + + Returns a collection. + + + Displays a file dialog box and returns an Integer indicating whether the user pressed the action button (-1) or the cancel button (0). + + + Returns or sets the title of a file dialog box displayed using the object. + + + Represents a file filter in a file dialog box displayed through the object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the description of each object as a String value. + + + Returns a String value containing the extensions that determine which files are displayed in a File dialog box for each object. + + + Returns the Parent object for the specified object. + + + A collection of objects that represent the types of files that can be selected in a file dialog box that is displayed using the object. + + + Adds a new file filter to the list of filters in the Files of type list box in the File dialog box, and returns a FileDialogFilter object that represents the newly added file filter. + Required String. The text representing the description of the file extension you want to add to the list of filters. + Required String. The text representing the file extension you want to add to the list of filters. More than one extension may be specified and each must be separated by a semi-colon (;). For example, the argument can be assigned to the string: "*.txt; *.htm".Note Parentheses do not need to be added around the extensions. Office will automatically add parentheses around the extensions string when the description and extensions strings are concatenated into one file filter item. + Optional Object. A number that indicates the position of the new control in the filter list. The new filter will be inserted before the filter at this position. If this argument is omitted, the filter is added at the end of the list. + + + Returns an Application object that represents the container application for the object. + + + Removes all list items from a command bar combo box control (drop-down list box or combo box) and clears the text box (edit box or combo box). + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a file dialog filter. + Optional Object. The filter to be removed. + + + + Returns a object that is a member of the specified collection. + Required Integer. The index number of the FileDialogFilter object to be returned. + + + Returns the Parent object for the specified object. + + + A collection of String values that correspond to the paths of the files or folders that a user has selected from a file dialog box displayed through the object. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a String that corresponds to the path of one of the files that the user selected from a file dialog box that was displayed using the method of the object. + Required Integer. The index number of the string to be returned. + + + Returns the Parent object for the specified object. + + + Represents the functionality of the Open dialog box accessible by the File menu. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Begins the search for the specified file(s). + Optional . The method used to sort the returned file(s). + Optional . The order in which the returned file(s) are sorted. + Optional Boolean. True to include files that have been added, modified, or deleted since the file index was last updated as part of the file search. The default value is True. + + + Returns or sets the name of the file to look for during a file search. + + + Returns or sets the type of file to look for during a file search. + + + Returns a collection. + + + Returns a object that contains the names of all the files found during a search. + + + Returns or sets a constant that represents the amount of time since the specified file was last modified and saved. + The default value is msoLastModifiedAnyTime. + + + Returns or sets the folder to be searched during the specified file search. + + + Determines if the file search is expanded to include all forms of the specified word contained in the body of the file or in the file's properties. + + + Determines if the specified file search will find only files whose body text or file properties contain the exact word or phrase that you've specified. + + + Resets all the search criteria settings to their default settings. + + + Returns the collection that represents all the search criteria for a file search. + + + Refreshes the list of currently available objects. + + + Returns a collection. + + + Returns a collection. + + + Determines if the search includes all the subfolders in the folder specified by the property. + + + Returns or sets the word or phrase to be searched for, in either the body of a file or the file's properties, during the file search. + + + A collection of values of the type that determine which types of files are returned by the method of the object. + + + Adds a new file type to a file search. + Required . Specifies the type of file for which to search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a value that indicates which file type will be searched for by the method of the object. + Optional Integer. The index number of the object to be returned. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + Gets a collection of objects. + + + + + + + + + + + + + + + + + + + + + + + Contains font attributes (for example, font name, font size, and color) for an object. + + + True if the font is formatted as all capital letters. Read/write. + + + + + + Gets an object that represents the application the object is used in. Read-only. + Object + + + Gets or sets a value that specifies whether the numbers in a numbered list should be rotated when the text is rotated. Read/write. + + + + + + Gets or sets a value specifying the horizontal offset of the selected font. Read/write. + Single + + + Gets or sets a value specifying whether the font should be bold. Read/write. + + + + + + Gets or sets a value specifying that the text should be capitalized. Read/write. + + + + + + Gets a value indicating the application the object was created in. Read-only. + Integer + + + True if the specified font is formatted as double strikethrough text. Read/write. + + + + + + Gets a value indicating whether the font can be embedded in a page. Read-only. + + + + + + Gets a value specifying whether the font is embedded in a page. Read-only. + + + + + + Gets or sets a value specifying whether the text for a selection should be spaced equal distances apart. Read/write. + + + + + + + Gets a value indicating whether the font is displayed as a glow effect. Read-only. + + + + + + Gets a value indicating whether the font is displayed as highlighted. Read-only. + + + + + + Gets or sets a value specifying whether the text for a selection is italic. Read/write. + + + + + + Gets or sets a value specifying the amount of spacing between text characters. Read/write. + Single + + + Gets a value specifiying the format of a line. Read-only. + + + + + + Gets or sets a value specifying the font to use for a selection. Read/write. + String + + + Gets or sets the font used for Latin text (characters with character codes from 0 (zero) through 127). Read/write. + String + + + Gets or sets the complex script font name. Used for mixed language text. Read/write. + String + + + Gets or sets an East Asian font name. Read/write. + String + + + Gets or sets the font used for characters whose character set numbers are greater than 127. Read/write. + String + + + Gets the parent of the object. Read-only. + Object + + + Gets a value specifying the type of reflection format for the selection of text. Read-only. + + + + + + Gets the value specifying the type of shadow effect for the selection of text. Read-only. + + + + + + Gets or sets a value specifying the size of the font. Read/write. + Single + + + Gets or sets a value specifying whether small caps should be used with the selection of text. Small caps are the same height as the lowercase letters in a selection of text. Read/write. + + + + + + Gets or sets a value specifying the type of soft edge effect used in a selection of text. Read/write. + + + + + + Gets or sets a value specifying the spacing between characters in a selection of text. Read/write. + Single + + + Gets or sets a value specifying the strike format used for a selection of text. Read/write. + + + + + + Gets or sets a value specifying the text should be rendered in a strikethrough appearance. Read/write. + + + + + + Gets or sets a value specifying that the selected text should be displayed as subscript. Read/write. + + + + + + Gets or sets a value specifying that the selected text should be displayed as superscript. Read/write. + + + + + + Gets a value specifying the color of the underline for the selected text. Read-only. + + + + + + Gets or sets a value specifying the underline style for the selected text. Read/write. + + + + + + Gets or sets a value specifying the text effect for the selected text. Read/write. + + + + + + Represents the list of files returned from a file search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a file name from the list of file names represented by the object. + Required Integer. The index number of the Answer Wizard file name string or the file name to be returned. + + + Reserved for internal use. + + + + + + + + Represents a glow effect around an Office graphic. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the color of text formatted as glow. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the radius value of the glow effect for the object. Read/write. + Single + + + Gets or sets the degree of transparency of the specified glow as a value between 0.0 (opaque) and 1.0 (clear). + + + Represents one gradient stop. + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object. Read-only. + Object + + + Gets a value representing the color of the gradient stop. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets a value representing the position of a stop within the gradient expressed as a percent. Read/write. + Single + + + Gets or sets a value representing the opacity of the gradient fill expressed as a percent. Read/write. + Single + + + Contains a collection of objects. + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Removes a gradient stop. + The index number of the gradient stop. + + + + Adds a stop to a gradient. + Specifies the color at that the gradient stop. + Specifies the position of the stop within the gradient expressed as a percent. + Specifies the opacity of color at the gradient stop. + The index number of the stop. + + + Adds a stop to a gradient and specifies the brightness, as well as the transparency, of the color. + Specifies the color at that the gradient stop. + Specifies the position of the stop within the gradient expressed as a percent. + Specifies the opacity of color at the gradient stop. + The index number of the stop. + Specifies the brightness of the color at the gradient stop. + + + Gets a object from a collection. Read-only. + GradientStop + The name or index number of the object returned. + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + Reserved for internal use. + + + + + + + + + + Represents a top-level project branch, as in the Project Explorer in the Microsoft Script Editor. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the collection that is included in the specified HTML project. + + + Opens the specified HTML project or HTML project item in the Microsoft Script Editor in one of the views specified by the optional constants. + Optional . The view in which the specified project or project item is opened. + + + Returns the Parent object for the specified object. + + + Refreshes the specified HTML project in the Microsoft Office host application. + Optional Boolean. True if all changes are to be saved; False if all changes are to be ignored. + + + Refreshes the specified HTML project in the Microsoft Script Editor. + Optional Boolean. True if the document will be refreshed; False if the document will not be refreshed. + + + Returns the current state of an object. + + + Represents an individual project item that’s a project item branch in the Project Explorer in the Microsoft Script Editor. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Determines if the specified HTML project item is open in the Microsoft Script Editor. + + + Updates the text in the Microsoft Script Editor with text from the specified file (on disk). + Required String. The fully qualified path of the text file that contains the text to be loaded. + + + Returns the name of the specified object. + + + Opens the specified HTML project or HTML project item in the Microsoft Script Editor in one of the views specified by the optional constants. + Optional . The view in which the specified project or project item is opened. + + + Returns the Parent object for the specified object. + + + Saves the specified HTML project item using a new file name. + Required String. The fully qualified path of the file to which you want to save the HTML project item. + + + Returns or sets the HTML text in the HTML editor. + + + A collection of objects that represent the HTML project items contained in the object. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns the object that represents a particular project in the Microsoft Script Editor. + Required Object. The name or index number of the HTML project item to be returned. + + + Returns the Parent object for the specified object. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + Provides a means for developers to create a customized help experience for users within Microsoft Office. + + + Clears the default help topic previously defined in the method. + The ID of the default help topic. + + + Performs a search from the Office Help Viewer based on one or more keywords. Keywords can be a word or a phrase. + Represents the search keyword or phrase. + Optional, the namespace registered within the host application. + + + Sets a help topic as the default topic that will be displayed when the user opens a help window. + The ID of the default help topic. + + + Displays the help topic specified by its ID in the Office Help Viewer or, for help topics that ship with Office, in the Help window of the current Office application. + Optional, the ID of the help topic. + Optional, the namespace registered within the host application. + + + An object that provides the ability to manipulate blog entries. + + + Contains information about the provider. + The name of the blog provider. + Represents the name displayed in the user interface. + Represents how many categories are supported by the provider. + Specifies whether table padding is recognized. + + + This method returns the list of blog categories for an account so Microsoft Office Word can populate the categories dropdown list. + Represents the GUID of the account registry key. + Represents the HWND of the host window. + The current document. + A list of categories supported by the provider. + + + Returns the list of the user’s last fifteen blog posts that Microsoft Office Word then displays in the Open Existing Post dialog. This method does not actually return the blog post contents. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Office Word is calling from. + The current document. + Contains the titles of the last fifteen posts. + Contains the dates of the last fifteen posts. + Contains the IDs of the last fifteen posts. + + + Returns the list and details of user blogs associated with the specified account. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Contains all blog names under the current account. + Contains all blog IDs under the current account. + Contains all blog URLs under the current account. + + + Opens the blog specified by the blog ID. It is called by the Open Existing Post dialog based on the item selected by the user. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + The ID of the post. + Contains the HWND for the window Microsoft Office Word is calling from. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + + + Hands off the current post so it can be published by the provider. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + Specifies whether this is a draft version of the post. + The ID of the original post if this post has been republished. + Specifies what is displayed in the publish bar. + + + Hands off the current post so it can be republished by the provider. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + The ID of the original post. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + Specifies whether this is a draft version of the post. + Specifies what is displayed in the publish bar. + + + Called from the Choose Account dialog when the provider’s name is chosen in the Blog Host dropdown or when the user requests to change a provider’s account in the Blog Accounts dialog box. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Word is calling from. + The current document. + Indicates whether this is a new account. + Indicates whether Microsoft Office Word’s picture user interface needs to be displayed. + + + Represents an object that provides the ability to manipulate blog images. + + + Enables picture providers to offer themselves as an upload location for blog pictures. + The ID of the picture provider. + The friendly name of the picture provider. + + + Allows a picture provider to display the user interface needed to guide the user through setting up a picture account. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + The ID of the provider. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + + + Used to post a picture object to its final destination in a blog. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Represents the name of the image file. + The URI of the picture. + + + Reserved for internal use. + + + + Reserved for internal use. + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + Used to create a custom task pane. + + + Creates an instance of a custom task pane. + + + + The CLSID or ProgID of a Microsoft ActiveX® object. + The title for the task pane. + The window that hosts the task pane. If not present, the parent of the task pane is the ActiveWindow property of the host application. + + + An interface that provides access to the method that is used to create an instance of a custom task pane. + + + Passes an object to a Microsoft ActiveX add-in that can then be used when creating a custom task pane. + The object is used by an add-in to create a task pane. + + + + + + + + + + + Represents the interface through which the methods of a object are accessed. + + + Performs some action on specific information items or document properties by using a custom Document Inspector module. + Specifies nn object representing the container object. + Specifies the unique identifier of the active document window. + Specifies an enumeration that indicates the status of the action. + Contains the results of the action. + + + Gets information about a custom Document Inspector module. + Represents the name of the module. + Represents the description of the module. + + + Inspects a document for specific information items or document properties by using a custom Document Inspector module. + An object representing the container document. + An value that represents the results of the inspection. + Contains a list of the information items or document properties found in the document. + Indicates to the user what action to take based on the results of the inspection. + + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a Contact card. + + + Gets the address in a Contact card. + + + Gets the value that represents the address type for the Contact card object. + + + Gets an Application object that represents the container application for the IMsoContactCard object. + + + Gets an value that represents the type of a Contact card. + + + Gets a 32-bit integer that indicates the application in which the IMsoContactCard object was created. + + + Returns the calling object. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value that indicates whether the data table changes font size when the data table size changes. Returns True, the default value, if the font size changes with data table size changes. Read/write. + Variant + + + Provides access to properties that determine visual characteristics of a data table border. Read-only. + IMsoBorder + + + + Deletes a data table. + + + Provides access to properties that determine the characteristics of the text in a data table. Read-only. + ChartFont + + + + Gets or sets a Boolean value that specifies whether the data table has a horizontal border. Read/write. + Boolean + + + Gets or sets a Boolean value that specifies whether to display a border around a data table. Read/write. + Boolean + + + Gets or sets a Boolean value that specifies whether the data table has a vertical border. Read/write. + Boolean + + + Gets the Parent object for the IMsoDataTable object. Read-only. + Object + + + Selects a IMsoDataTable object. + + + Gets or sets a Boolean value that specifies whether to display the legend with the data table. Read/write. + Boolean + + + Reserved for internal use. + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides access to functionality that lets you send documents as emails directly from Microsoft Office applications. + + + Returns a collection. + + + Sets or returns the introductory text that is included with a document that is sent using the MsoEnvelope object. The introductory text is included at the top of the document in the e-mail. + + + Returns a MailItem object that can be used to send the document as an e-mail. + + + Returns the Parent object for the specified object. + + + Reserved for internal use. + + + + + A Delegate type used to add an event handler for the event. The EnvelopeHide event occurs when the user interface (UI) that corresponds to the object is hidden. + + + A Delegate type used to add an event handler for the event. The EnvelopeShow event occurs when the user interface (UI) that corresponds to the object is displayed. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user interface (UI) that corresponds to the object is hidden. + + + Occurs when the user interface (UI) that corresponds to the object is displayed. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents the object passed into every Ribbon user interface (UI) control's callback procedure. + + + Represents the active window containing the Ribbon user interface that triggers a callback procedure. Read-only. + Object + + + Gets the ID of the control specified in the Ribbon XML markup customization file. Read-only. + String + + + Used to store arbitrary strings and fetch them at runtime. Read-only + String + + + The interface through which the Ribbon user interface (UI) communicates with a COM add-in to customize the UI. + + + Loads the XML markup, either from an XML customization file or from XML markup embedded in the procedure, that customizes the Ribbon user interface. + String + + + The object that is returned by the onLoad procedure specified on the customUI tag. The object contains methods for invalidating control properties and for refreshing the user interface. + + + Activates the specified custom tab. + Specifies the identifier of the custom Ribbon tab to be activated. + + + Activates the specified built-in tab. + Specifies the identifier of the custom Ribbon tab to be activated. + + + Activates the specified custom tab on the Microsoft Office Fluent Ribbon UI. Uses the fully qualified name of the tab which includes the identifier and the namespace of the tab. + Specifies the identifier of the custom Ribbon tab to be activated. + Specifies the namespace of the tab element. + + + Invalidates the cached values for all of the controls of the Ribbon user interface. + + + Invalidates the cached value for a single control on the Ribbon user interface. + Specifies the ID of the control that will be invalidated. + + + Used to invalidate a built-in control. + Specified the identifier of the control that will be invalidated. + + + Returns information about the language settings in a Microsoft Office application. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the locale identifier (LCID) for the install language, the user interface language, or the Help language. + Required . + + + Determines if the value for the constant has been identified in the Windows Registry as a preferred language for editing. + Required . + + + Returns the Parent object for the specified object. + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + Specifies the format for an e-mail message. These formats correspond to the formats supported by Microsoft Outlook for e-mail messages. + + + Plain text. + + + Hypertext Markup Language (HTML) formatting. + + + Rich Text Format (RTF) formatting. + + + Represents a collection of properties describing the metadata stored in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets an Integer indicating the number of items in the collection. Read-only. + Integer + + + Gets ID of the application in which the object was created. Read-only. + Integer + + + + Gets a property's value specifying its name as opposed to its index value. + + + + Contains the name of the property. + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Gets the schema XML for the object. Read-only. + String + + + Validates all of the properties in a collection object according to a schema. + String + + + + Represents a single property in a collection of properties describing the metadata stored in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the ID of the object. Read-only. + String + + + Gets a Boolean value that specifies whether the meta property is read-only. Read-only. + Boolean + + + Gets a Boolean value that specifies whether the meta property is required. Read-only. + Boolean + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets the data type of the object. Read-only. + + + + + + Validates a object representing a single property value according to a schema. + String + + + + Gets or sets the value of the object. Read/write. + Object + + + Specifies the buttons to be displayed when issuing an alert to the user with the DoAlert method of the Assistant object. + + + OK button. + + + OK and Cancel buttons. + + + Abort, Retry, and Ignore buttons. + + + Yes, No, and Cancel buttons. + + + Yes and No buttons. + + + Retry and Cancel buttons. + + + Yes, Yes to All, No, and Cancel buttons. Can only be used if the varSysAlert argument of the DoAlert method is set to False. + + + Specifies behavior when the user cancels an alert. Only is currently supported. + + + Default behavior for canceling an alert. + + + Not supported. + + + Not supported. + + + Not supported. + + + Not supported. + + + Not supported. + + + Specifies which button is set as the default when calling the DoAlert method of the Assistant object. + + + Default to first button. + + + Default to second button. + + + Default to third button. + + + Default to fourth button. + + + Default to fifth button. + + + Specifies which icon, if any, to display with an alert. + + + Displays no icon with the alert message. + + + Displays the Critical icon. + + + Displays the Query icon. + + + Displays the Warning icon. + + + Displays the Info icon. + + + Defines how to align specified objects relative to one another. + + + Align left sides of specified objects. + + + Align centers of specified objects. + + + Align right sides of specified objects. + + + Align tops of specified objects. + + + Align middles of specified objects. + + + Align bottoms of specified objects. + + + Specifies the animation action for the Office Assistant. + + + "Idle" animation action. + + + "Greeting" animation action. + + + "Goodbye" animation action. + + + "Begin speaking" animation action. + + + "Rest pose" animation action. + + + "Major success" animation action. + + + Major "Get attention" animation action. + + + Minor "Get attention" animation action. + + + "Searching" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Printing" animation action. + + + "Gesture right" animation action. + + + "Noting something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Working at something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Thinking" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Sending mail" animation action. + + + "Listens to computer" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Disappear" animation action. + + + "Appear" animation action. + + + "Get artsy" animation action. + + + "Get techy" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Get wizardy" animation action. + + + "Checking something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Look down" animation action. + + + "Look down and left" animation action. + + + "Look down and right" animation action. + + + "Look left" animation action. + + + "Look right" animation action. + + + "Look up" animation action. + + + "Look up and left" animation action. + + + "Look up and right" animation action. + + + "Saying" animation action. + + + "Gesture down" animation action. + + + "Gesture left" animation action. + + + "Gesture up" animation action. + + + "Empty trash" animation action. + + + Specifies a language setting in a Microsoft Office application. + + + Install language. + + + User interface language. + + + Help language. + + + Execution mode language. + + + User interface language used prior to the current user interface language. + + + Specifies the length of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states in the specified shape range. + + + Short. + + + Medium. + + + Long. + + + Specifies the style of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states. + + + No arrowhead. + + + Triangular. + + + Open. + + + Stealth-shaped. + + + Diamond-shaped. + + + Oval-shaped. + + + Specifies the width of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states. + + + Narrow. + + + Medium. + + + Wide. + + + Specifies the security mode an application uses when programmatically opening files. + + + Enables all macros. This is the default value when the application is started. + + + Uses the security setting specified in the Security dialog box. + + + Disables all macros in all files opened programmatically, without showing any security alerts. + + + Specifies the shape type for an AutoShape object. + + + Return value only; indicates a combination of the other states. + + + Rectangle. + + + Parallelogram. + + + Trapezoid. + + + Diamond. + + + Rounded rectangle. + + + Octagon. + + + Isosceles triangle. + + + Right triangle. + + + Oval. + + + Hexagon. + + + Cross. + + + Pentagon. + + + Can. + + + Cube. + + + Bevel. + + + Folded corner. + + + Smiley face. + + + Donut. + + + "No" symbol. + + + Block arc. + + + Heart. + + + Lightning bolt. + + + Sun. + + + Moon. + + + Arc. + + + Double bracket. + + + Double brace. + + + Plaque. + + + Left bracket. + + + Right bracket. + + + Left brace. + + + Right brace. + + + Block arrow that points right. + + + Block arrow that points left. + + + Block arrow that points up. + + + Block arrow that points down. + + + Block arrow with arrowheads that point both left and right. + + + Block arrow that points up and down. + + + Block arrows that point up, down, left, and right. + + + Block arrow with arrowheads that point left, right, and up. + + + Block arrow that follows a curved 90-degree angle. + + + Block arrow forming a U shape. + + + Block arrow with arrowheads that point left and up. + + + Block arrow that follows a sharp 90-degree angle. Points up by default. + + + Block arrow that curves right. + + + Block arrow that curves left. + + + Block arrow that curves up. + + + Block arrow that curves down. + + + Block arrow that points right with stripes at the tail. + + + Notched block arrow that points right. + + + Pentagon. + + + Chevron. + + + Callout with arrow that points right. + + + Callout with arrow that points left. + + + Callout with arrow that points up. + + + Callout with arrow that points down. + + + Callout with arrowheads that point both left and right. + + + Callout with arrows that point up and down. + + + Callout with arrows that point up, down, left, and right. + + + Block arrow that follows a curved 180-degree angle. + + + Process flowchart symbol. + + + Alternate process flowchart symbol. + + + Decision flowchart symbol. + + + Data flowchart symbol. + + + Predefined process flowchart symbol. + + + Internal storage flowchart symbol. + + + Document flowchart symbol. + + + Multi-document flowchart symbol. + + + Terminator flowchart symbol. + + + Preparation flowchart symbol. + + + Manual input flowchart symbol. + + + Manual operation flowchart symbol. + + + Connector flowchart symbol. + + + Off-page connector flowchart symbol. + + + Card flowchart symbol. + + + Punched tape flowchart symbol. + + + Summing junction flowchart symbol. + + + "Or" flowchart symbol. + + + Collate flowchart symbol. + + + Sort flowchart symbol. + + + Extract flowchart symbol. + + + Merge flowchart symbol. + + + Stored data flowchart symbol. + + + Delay flowchart symbol. + + + Sequential access storage flowchart symbol. + + + Magnetic disk flowchart symbol. + + + Direct access storage flowchart symbol. + + + Display flowchart symbol. + + + Explosion. + + + Explosion. + + + 4-point star. + + + 5-point star. + + + 8-point star. + + + 16-point star. + + + 24-point star. + + + 32-point star. + + + Ribbon banner with center area above ribbon ends. + + + Ribbon banner with center area below ribbon ends. + + + Ribbon banner that curves up. + + + Ribbon banner that curves down. + + + Vertical scroll. + + + Horizontal scroll. + + + Wave. + + + Double wave. + + + Rectangular callout. + + + Rounded rectangle-shaped callout. + + + Oval-shaped callout. + + + Cloud callout. + + + Callout with border and horizontal callout line. + + + Callout with diagonal straight line. + + + Callout with angled line. + + + Callout with callout line segments forming a U-shape. + + + Callout with horizontal accent bar. + + + Callout with diagonal callout line and accent bar. + + + Callout with angled callout line and accent bar. + + + Callout with accent bar and callout line segments forming a U-shape. + + + Callout with horizontal line. + + + Callout with no border and diagonal callout line. + + + Callout with no border and angled callout line. + + + Callout with no border and callout line segments forming a U-shape. + + + Callout with border and horizontal accent bar. + + + Callout with border, diagonal straight line, and accent bar. + + + Callout with border, angled callout line, and accent bar. + + + Callout with border, accent bar, and callout line segments forming a U-shape. + + + Button with no default picture or text. Supports mouse-click and mouse-over actions. + + + Home button. Supports mouse-click and mouse-over actions. + + + Help button. Supports mouse-click and mouse-over actions. + + + Information button. Supports mouse-click and mouse-over actions. + + + Back or Previous button. Supports mouse-click and mouse-over actions. + + + Forward or Next button. Supports mouse-click and mouse-over actions. + + + Beginning button. Supports mouse-click and mouse-over actions. + + + End button. Supports mouse-click and mouse-over actions. + + + Return button. Supports mouse-click and mouse-over actions. + + + Document button. Supports mouse-click and mouse-over actions. + + + Sound button. Supports mouse-click and mouse-over actions. + + + Movie button. Supports mouse-click and mouse-over actions. + + + Balloon. + + + Not supported. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Determines the type of automatic sizing allowed. + + + A combination of automatic sizing schemes are used. + + + No autosizing. + + + The shape is adjusted to fit the text. + + + The text is adjusted to fit the shape. + + + Indicates the background style for an object. + + + Specifies a combination of styles. + + + Specifies no styles. + + + Specifies style 1. + + + Specifies style 2. + + + Specifies style 3. + + + Specifies style 4. + + + Specifies style 5. + + + Specifies style 6. + + + Specifies style 7. + + + Specifies style 8. + + + Specifies style 9. + + + Specifies style 10. + + + Specifies style 11. + + + Specifies style 12. + + + Indicates which button the user clicked in a balloon. + + + Yes to all button. + + + Options button. + + + Tips button. + + + Close button. + + + Snooze button. + + + Search button. + + + Ignore button. + + + Abort button. + + + Retry button. + + + Next button. + + + Back button. + + + No button. + + + Yes button. + + + Cancel button. + + + OK button. + + + Null button. + + + Specifies what error occurred in a balloon. + + + No error was encountered. + + + Balloon won't appear because some other error occurred, such as another modal balloon is already active. + + + Balloon is too big to appear on the screen. + + + Balloon won't appear because there is insufficient memory. + + + Balloon contains a graphic that couldn't be displayed because the file doesn't exist or because the graphic isn't a valid .BMP or .WMF file. + + + Balloon contains an unrecognized or unsupported reference. + + + The balloon you attempted to display is modal, but it contains no buttons. The balloon won't be shown because it can't be dismissed. + + + The balloon you attempted to display is modeless, contains buttons, and has no procedure assigned to the Callback property. The balloon won't be shown because a callback procedure is required for modeless balloons. + + + Balloon contains an ASCII control character other than CR or LF and less than 32. + + + Balloon could not be displayed because of a COM failure. + + + Modal balloon was requested by an application that isn't the active application. Microsoft Office renders balloons for the active (topmost) application only. + + + Balloon contains more than twenty controls (check boxes or labels). + + + Specifies the type of label used in a balloon. + + + Labeled buttons. + + + Bulleted labels. + + + Numbered labels. + + + Specifies the position or behavior of a command bar. + + + Command bar is docked on the left side of the application window. + + + Command bar is docked at the top of the application window. + + + Command bar is docked on the right side of the application window. + + + Command bar is docked at the bottom of the application window. + + + Command bar floats on top of the application window. + + + Command bar will be a shortcut menu. + + + Command bar will be a menu bar (Macintosh only). + + + Specifies how a command bar is protected from user customization. + + + All aspects of command bar can be customized by user. + + + Command bar cannot be customized. + + + Command bar cannot be resized. + + + Command bar cannot be moved. + + + Command bar cannot be hidden. + + + Docking setting cannot be changed. + + + Command bar cannot be docked to the left or right. + + + Command bar cannot be docked to the top or bottom. + + + Specifies whether a command bar is in the first row or last row relative to other command bars in the same docking area. + + + First row of docking area. + + + Last row of docking area. + + + Specifies the type of the command bar. + + + Default command bar. + + + Menu bar. + + + Shortcut menu. + + + + + + + + + + + + + + + + + + + + + + Indicates the bevel type of a object. + + + Specifies a mixed type bevel. + + + Specifies no bevel. + + + Specifies a RelaxedInset bevel. + + + Specifies a Circle bevel. + + + Specifies a Slope bevel. + + + Specifies a Cross bevel. + + + Specifies an Angle bevel. + + + Specifies a SoftRound bevel. + + + Specifies a Convex bevel. + + + Specifies a CoolSlant bevel. + + + Specifies a Divot bevel. + + + Specifies a Riblet bevel. + + + Specifies a HardEdge bevel. + + + Specifies an ArtDeco bevel. + + + Specifies how a shape appears when viewed in black-and-white mode. + + + Not supported. + + + Default behavior. + + + Grayscale. + + + Light grayscale. + + + Inverse grayscale. + + + Gray with white fill. + + + White with grayscale fill. + + + Black with white fill. + + + Black. + + + White. + + + Not shown. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the type of button to be displayed at the bottom of an Office Assistant balloon. + + + No buttons. + + + OK button. + + + Cancel button. + + + OK and Cancel buttons. + + + Yes and No buttons. + + + Yes, No, and Cancel buttons. + + + Back and Close buttons. + + + Next and Close buttons. + + + Back, Next, and Close buttons. + + + Retry and Cancel buttons. + + + Abort, Retry, and Ignore buttons. + + + Search and Close buttons. + + + Back, Next, and Snooze buttons. + + + Tips, Options, and Close buttons. + + + Yes to All, No, and Cancel buttons. + + + Specifies the appearance of a command bar button control. + + + Button is not pressed down. + + + Button is pressed down. + + + Button is pressed down. + + + Specifies the style of a command bar button. + + + Default behavior. + + + Image only. + + + Text only. + + + Image and text, with text to the right of image. + + + Image with text wrapped and to the right of the image. + + + Image with text below. + + + Text only, centered and wrapped. + + + Image with text wrapped below image. + + + Reserved for internal use. + + + + + + + + + Specifies the size of the angle between the callout line and the side of the callout text box. + + + Return value only; indicates a combination of the other states. + + + Default angle. Angle can be changed as you drag the object. + + + 30˚ angle. + + + 45˚ angle. + + + 60˚ angle. + + + 90˚ angle. + + + Specifies starting position of the callout line relative to the text bounding box. + + + Return value only; indicates a combination of the other states. + + + Custom. If this value is used as the value for the PresetDrop property, the Drop and AutoAttach properties of the CalloutFormat object are used to determine where the callout line attaches to the text box. + + + Top. + + + Center. + + + Bottom. + + + Specifies the type of callout line. + + + Return value only; indicates a combination of the other states. + + + Single, horizontal callout line. + + + Single, angled callout line. + + + Callout line made up of two line segments. Callout line is attached on left side of text bounding box. + + + Callout line made up of two line segments. Callout line is attached on right side of text bounding box. + + + Specifies the character set to be used when rendering text. + + + Arabic character set. + + + Cyrillic character set. + + + English, Western European, and other Latin script character set. + + + Greek character set. + + + Hebrew character set. + + + Japanese character set. + + + Korean character set. + + + Multilingual Unicode character set. + + + Simplified Chinese character set. + + + Thai character set. + + + Traditional Chinese character set. + + + Vietnamese character set. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the color type. + + + Not supported. + + + Color is determined by values of red, green, and blue. + + + Color is defined by an application-specific scheme. + + + Color is determined by values of cyan, magenta, yellow, and black. + + + Color Management System color type. + + + Not supported. + + + Specifies whether the command bar combo box includes a label or not. + + + Combo box does not include a label. + + + Combo box includes a label, specified by the Caption property of the combo box. + + + Specifies whether the command bar button is a hyperlink. If the command bar button is a hyperlink, further specifies whether the hyperlink should launch another application such as the browser or insert a picture at the active selection point. + + + The command bar button is not a hyperlink. + + + Clicking the command bar button opens the link specified in the command bar button's TooltipText property. + + + Clicking the command bar button inserts a picture at the active selection point. + + + Defines the condition for comparison between a file and a specified property in a file search. + + + File can be any type. + + + File can be any Office file type. + + + Word document. + + + Excel workbook. + + + PowerPoint presentation. + + + Binder file. + + + Database. + + + Template. + + + Value of the file property specified in Name property of the PropertyTest object includes the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object includes the phrase specified in the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object begins with the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object ends with the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object and the value specified in the Value property of the PropertyTest object are near each other. + + + Value of the file property specified in Name property of the PropertyTest object is exactly the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is not the value specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is yesterday. + + + Date specified in the Name property of the PropertyTest object is today. + + + Date specified in the Name property of the PropertyTest object is tomorrow. + + + Date specified in the Name property of the PropertyTest object is within the last week. + + + Date specified in the Name property of the PropertyTest object is this week. + + + Date specified in the Name property of the PropertyTest object is next week. + + + Date specified in the Name property of the PropertyTest object is within the last month. + + + Date specified in the Name property of the PropertyTest object is this month. + + + Date specified in the Name property of the PropertyTest object is next month. + + + Date specified in the Name property of the PropertyTest object can be any time. + + + Date specified in the Name property of the PropertyTest object is between the dates specified with the Value and SecondValue properties of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is the same as the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is on or after the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is on or before the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is within the next time interval specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is within the last time interval specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object equals the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object does not equal the value specified in the Value property of the PropertyTest object. + + + Any number between values specified with the Value and SecondValue properties of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is at most the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is at least the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is more than the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is less than the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is "True". + + + Value of the file property specified in Name property of the PropertyTest object is "False". + + + Value of the file property specified in Name property of the PropertyTest object includes forms of the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in the Name property of the PropertyTest object matches the value specified in the Value property of the PropertyTest object when a FreeText search is used. + + + Outlook item. + + + Mail item. + + + Calendar item. + + + Contact item. + + + Note item. + + + Journal item. + + + Task item. + + + PhotoDraw file. + + + Data connection file. + + + Publisher file. + + + Project file. + + + Document imaging file. + + + Visio file. + + + Designer file. + + + Web page. + + + Priority equals "Low". Value of the Name property must be Priority. + + + Priority equals "Normal". Value of the Name property must be Priority. + + + Priority equals "High". Value of the Name property must be Priority. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "Low". Value of the Name property must be Priority or Importance. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "Normal". Value of the Name property must be Priority or Importance. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "High". Value of the Name property must be Priority or Importance. + + + Status equals "Not Started". Value of the Name property must be Status. + + + Status equals "In Progress". Value of the Name property must be Status. + + + Status equals "Completed". Value of the Name property must be Status. + + + Status equals "Waiting for Someone Else". Value of the Name property must be Status. + + + Status equals "Deferred". Value of the Name property must be Status. + + + Status does not equal "Not Started". Value of the Name property must be Status. + + + Status does not equal "In Progress". Value of the Name property must be Status. + + + Status does not equal "Completed". Value of the Name property must be Status. + + + Status does not equal "Waiting for Someone Else". Value of the Name property must be Status. + + + Status does not equal "Deferred". Value of the Name property must be Status. + + + Specifies the connector between two similar property test values. + + + Combine property test values to form one property test. + + + Treat property test values as separate criteria. + + + Specifies a type of connector. + + + Return value only; indicates a combination of the other states. + + + Straight line connector. + + + Elbow connector. + + + Curved connector. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the OLE client and OLE server roles in which a command bar control is used when two Microsoft Office applications are merged. + + + Control runs on neither client nor server. + + + Server-only control. + + + Client-only control. + + + Control runs on both client and server. + + + Specifies the type of the command bar control. + + + Custom control. Cannot be created through the object model. + + + Command button. + + + Text box. + + + Drop-down list. + + + Combo box. + + + Drop-down button. Cannot be created through the object model. + + + Split drop-down list. Cannot be created through the object model. + + + OCX drop-down list. Cannot be created through the object model. + + + Generic drop-down list. Cannot be created through the object model. + + + Graphic drop-down list. Cannot be created through the object model. + + + Pop-up. + + + Graphic pop-up menu. Cannot be created through the object model. + + + Pop-up button. Cannot be created through the object model. + + + Split button pop-up. Cannot be created through the object model. + + + Most Recently Used (MRU) pop-up. Cannot be created through the object model. + + + Label. Cannot be created through the object model. + + + Expanding grid. Cannot be created through the object model. + + + Split expanding grid. Cannot be created through the object model. + + + Grid. Cannot be created through the object model. + + + Gauge control. Cannot be created through the object model. + + + Graphic combo box. Cannot be created through the object model. + + + Pane. Cannot be created through the object model. + + + ActiveX control. + + + Spinner. Cannot be created through the object model. + + + Extended label. Cannot be created through the object model. + + + Work pane. Cannot be created through the object model. + + + Combo box in which the first matching choice is automatically filled in as the user types. Cannot be created through the object model. + + + Specifies the docking behavior of the custom task pane. + + + Dock the task pane on the left side of the document window. + + + Dock the task pane at the top of the document window. + + + Dock the task pane on the right side of the document window. + + + Dock the task pane at the bottom of the document window. + + + Don't dock the task pane. + + + Specifies retrictions on the docking behavior of the custom task pane. + + + No restrictions on docking the task pane. + + + There is no change from the current restriction setting for the task pane. + + + Task pane can't be docked to either the right or the left side of the document window. + + + Task pane can't be docked to either the top or the bottom of the document window. + + + Specifies the node type. + + + The node is an element. + + + The node is an attribute. + + + The node is a text node. + + + The node is a CData type. + + + The node is a processing instruction. + + + The node is a comment. + + + The node is a Document node. + + + Indicates how validation errors will be cleared or generated. + + + Specifies that where there is a non-empty schema collection available for the custom XML part and validation is in effect, any changes to the part will cause validation errors. + + + Specifies that the error will clear itself whenever any change is made to the node it is bound to. + + + Specifies that the error will not be cleared until the method is called. + + + Specifies the format of a date/time data type. + + + Specifies a mixed format. + + + Specifies a Mdyy format. + + + Specifies a ddddMMMMddyyyy format. + + + Specifies MMMMyyyy format. + + + Specifies a MMMMdyyyy format. + + + Specifies MMMyy format. + + + Specifies a MMMMyy format. + + + Specifies a MMyy format. + + + Specifies a MMddyyHmm format. + + + Specifies a MMddyyhmmAMPM format. + + + Specifies Hmm format. + + + Specifies a Hmmss format. + + + Specifies a hmmAMPM format. + + + Specifies a hmmssAMPM format. + + + Specifies that the Office application will determine the format. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies type of diagram node. + + + Diagram node is a subordinate of its parent. + + + Diagram node is an assistant to its parent. + + + Specifies the type of diagram. + + + Return value only; indicates a combination of the other states. + + + Organization chart diagram. + + + Cycle diagram. + + + Radial diagram. + + + Pyramid diagram. + + + Venn diagram. + + + Target diagram. + + + Specifies how to evenly distribute a collection of shapes. + + + Distribute horizontally. + + + Distribute vertically. + + + Represents the results of running a Document Inspector module. + + + Indicates that the Document Inspector module returned no issues or errors. + + + Indicates that the Document Inspector module found one or more occurrences of the search criteria. + + + Indicates that the Document Inspector module returned an error. + + + Specifies the data type for a document property. + + + Integer value. + + + Boolean value. + + + Date value. + + + String value. + + + Floating point value. + + + Specifies the editing type of a node. + + + Editing type is appropriate to the segments being connected. + + + Corner node. + + + Smooth node. + + + Symmetric node. + + + Specifies the document encoding (code page or character set) for the Web browser to use when a user views a saved document. + + + Thai. + + + Japanese (Shift-JIS). + + + Simplified Chinese GBK. + + + Korean. + + + Traditional Chinese Big 5. + + + Unicode little endian. + + + Unicode big endian. + + + Central European. + + + Cyrillic. + + + Western. + + + Greek. + + + Turkish. + + + Hebrew. + + + Arabic. + + + Baltic. + + + Vietnamese. + + + Web browser auto-detects type of encoding to use. + + + Web browser auto-detects type of Japanese encoding to use. + + + Web browser auto-detects type of Simplified Chinese encoding to use. + + + Web browser auto-detects type of Korean encoding to use. + + + Web browser auto-detects type of Traditional Chinese encoding to use. + + + Web browser auto-detects type of Cyrillic encoding to use. + + + Web browser auto-detects type of Greek encoding to use. + + + Web browser auto-detects type of Arabic encoding to use. + + + ISO 8859-1 Latin 1. + + + ISO 8859-2 Central Europe. + + + ISO 8859-3 Latin 3. + + + ISO 8859-4 Baltic. + + + ISO 8859-5 Cyrillic. + + + ISA 8859-6 Arabic. + + + ISO 8859-7 Greek. + + + ISO 8859-8 Hebrew. + + + ISO 8859-9 Turkish. + + + ISO 8859-15 with Latin 9. + + + ISO 8859-8 Hebrew (Logical). + + + ISO 2022-JP with no half-width Katakana. + + + ISO 2022-JP + + + ISO 2022-JP + + + ISO 2022-KR. + + + ISO 2022-CN encoding as used with Traditional Chinese. + + + ISO 2022-CN encoding as used with Simplified Chinese. + + + Macintosh Roman. + + + Macintosh Japanese. + + + Macintosh Traditional Chinese (Big 5). + + + Macintosh Korean. + + + Macintosh Arabic. + + + Macintosh Hebrew. + + + Macintosh Greek. + + + Macintosh Cyrillic. + + + Macintosh Simplified Chinese (GB 2312). + + + Macintosh Romanian. + + + Macintosh Ukrainian. + + + Macintosh Latin 2. + + + Macintosh Icelandic. + + + Macintosh Turkish. + + + Macintosh Croatian. + + + EBCDIC as used in the United States and Canada. + + + International EBCDIC. + + + EBCDIC Multilingual ROECE (Latin 2). + + + EBCDIC as used in the Modern Greek language. + + + EBCDIC as used with Turkish (Latin 5). + + + EBCDIC as used in Germany. + + + EBCDIC as used in Denmark and Norway. + + + EBCDIC as used in Finland and Sweden. + + + EBCDIC as used in Italy. + + + EBCDIC as used in Latin America and Spain. + + + EBCDIC as used in the United Kingdom. + + + EBCDIC as used with Japanese Katakana (extended). + + + EBCDIC as used in France. + + + Extended Binary Coded Decimal Interchange Code (EBCDIC) Arabic. + + + EBCDIC as used in the Greek language. + + + EBCDIC as used in the Hebrew language. + + + EBCDIC as used with Korean (extended). + + + EBCDIC as used with Thai. + + + EBCDIC as used in Iceland. + + + EBCDIC as used with Turkish. + + + EBCDIC as used with Russian. + + + EBCDIC as used with Serbian and Bulgarian. + + + EBCDIC as used with Japanese Katakana (extended) and Japanese. + + + EBCDIC as used in the United States and Canada, and with Japanese. + + + EBCDIC as used with Korean (extended) and Korean. + + + EBCDIC as used with Simplified Chinese (extended) and Simplified Chinese. + + + EBCDIC as used in the United States and Canada, and with Traditional Chinese. + + + EBCDIC as used with Japanese Latin (extended) and Japanese. + + + OEM as used in the United States. + + + OEM as used with Greek 437G. + + + OEM as used with Baltic. + + + OEM as used with multi-lingual Latin I. + + + OEM as used with multi-lingual Latin II. + + + OEM as used with Cyrillic. + + + OEM as used with Turkish. + + + OEM as used with Portuguese. + + + OEM as used with Icelandic. + + + OEM as used with Hebrew. + + + OEM as used with Canadian French. + + + OEM as used with Arabic. + + + OEM as used with Nordic languages. + + + OEM as used with Cyrillic II. + + + OEM as used with Modern Greek. + + + EUC as used with Japanese. + + + Extended Unix Code (EUC) as used with Chinese and Simplified Chinese. + + + EUC as used with Korean. + + + EUC as used with Taiwanese and Traditional Chinese. + + + ISCII as used with Devanagari. + + + ISCII as used with Bengali. + + + ISCII as used with Tamil. + + + ISCII as used with Telugu. + + + Indian Script Code for Information Interchange (ISCII) as used with Assamese. + + + ISCII as used with Oriya. + + + ISCII as used with Kannada. + + + ISCII as used with Malayalam. + + + ISCII as used with Gujarati. + + + ISCII as used with Punjabi. + + + Arabic ASMO. + + + Transparent Arabic. + + + Korean (Johab). + + + Taiwan CNS. + + + Taiwan TCA. + + + Taiwan Eten. + + + Taiwan IBM 5550. + + + Taiwan Teletext. + + + Taiwan Wang. + + + IA5, International Reference Version (IRV). + + + German (International Alphabet No. 5, or IA5). + + + IA5 as used with Swedish. + + + IA5 as used with Norwegian. + + + United States ASCII. + + + T61. + + + ISO 6937 Non-Spacing Accent. + + + KOI8-R. + + + Extended Alpha lowercase. + + + K0I8-U. + + + Europa. + + + Simplified Chinese (HZGB). + + + Simplified Chinese GB 18030. + + + UTF-7 encoding. + + + UTF-8 encoding. + + + Provides access to functionality that lets you send documents as emails directly from Microsoft Office applications. + + + Reserved for internal use. + + + + + + + + + + + + + Specifies how to use the value specified in the ExtraInfo property of the FollowHyperlink method. + + + The value specified in the ExtraInfo property is a string that is appended to the address. + + + The value specified in the ExtraInfo property is posted as a string or byte array. + + + Specifies whether the extrusion color is based on the extruded shape's fill (the front face of the extrusion) and automatically changes when the shape's fill changes, or whether the extrusion color is independent of the shape's fill. + + + Return value only; indicates a combination of the other states. + + + Extrusion color is based on shape fill. + + + Extrusion color is independent of shape fill. + + + Specifies the language to use to determine which line break level is used when the line break control option is turned on. + + + Japanese. + + + Korean. + + + Simplified Chinese. + + + Traditional Chinese. + + + Specifies how the application handles calls to methods and properties that require features not yet installed. + + + Generates a generic automation error at run time when uninstalled features are called. + + + Prompts the user to install new features. + + + Displays a progress meter during installation; does not prompt the user to install new features. + + + Specifies the type of a FileDialog object. + + + Open dialog box. + + + Save As dialog box. + + + File picker dialog box. + + + Folder picker dialog box. + + + Specifies the view presented to the user in a file dialog box. + + + Files displayed in a list without details. + + + Files displayed in a list with detail information. + + + Files displayed in a list with a pane showing the selected file's properties. + + + Files displayed in a list with a preview pane showing the selected file. + + + Files displayed as thumbnails. + + + Files displayed as large icons. + + + Files displayed as small icons. + + + Files displayed in Web view. + + + Files displayed as tiled icons. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + Specifies view to use for a file find process. + + + View file information. + + + View preview of file. + + + View summary information. + + + Specifies action to take when a user clicks an item in the task pane. + + + Edit file. + + + Create a new file. + + + Open file. + + + Specifies the task pane section to which to add a file or where the file reference exists. + + + Open Document section. + + + New section. + + + New from Existing File section. + + + New from Template section. + + + Bottom section. + + + Specifies a type of file. + + + All files. + + + Files with any of the following extensions: *.doc, *.xls, *.ppt, *.pps, *.obd, *.mdb, *.mpd, *.dot, *.xlt, *.pot, *.obt, *.htm, or *.html. + + + Microsoft Word document file (*.doc). + + + Microsoft Excel workbook (*.wbk). + + + PowerPoint presentation file (*.ppt), PowerPoint template file (*.pot), or PowerPoint slide show file (*.pps). + + + Microsoft Binder file (*.obd). + + + Database file (*.mdb). + + + Microsoft PowerPoint template (*.pot), Word template (*.dot), Excel template (*.xlt). + + + Any Microsoft Outlook item file. + + + Mail item file (*.msg). + + + Calendar item file (*.ics or *.vsc). + + + Contact item file (*.vcf). + + + Microsoft Outlook Note item. + + + Microsoft Outlook Journal item + + + Microsoft Outlook task item. + + + PhotoDraw item file (*.mix). + + + Data connection file (*.mdf). + + + Microsoft Publisher file (*.pub) + + + Project file (*.mpd). + + + Microsoft Document Imaging file (*.mdi). + + + Microsoft Visio file (*.vsd). + + + Visual Basic Active Designer file (*.dsr). + + + HTML file (*.htm or *.html). + + + + + + + + + + Specifies a shape's fill type. + + + Mixed fill. + + + Solid fill. + + + Patterned fill. + + + Gradient fill. + + + Textured fill. + + + Fill is the same as the background. + + + Picture fill. + + + Specifies how the Column and CompareTo properties are compared for an ODSOFilter object. + + + Column matches CompareTo if the CompareTo value is the same as the Column value. + + + Column matches CompareTo if the CompareTo value is not equal to the Column value. + + + Column matches CompareTo if the Column value is less than the CompareTo value. + + + Column matches CompareTo if the Column value is greater than the CompareTo value. + + + Column matches CompareTo if the Column value is less than or equal to the CompareTo value. + + + Column matches CompareTo if the Column value is greater than or equal to the CompareTo value. + + + Column passes filter if Column is blank. + + + Column passes filter if Column is blank. + + + Column matches CompareTo if any part of the CompareTo string is contained in the Column value. + + + Column matches CompareTo if any part of the CompareTo string is not contained in the Column value. + + + Specifies how a filter criterion relates to other filter criteria. + + + And conjunction. + + + Or conjunction. + + + Specifies whether a shape should be flipped horizontally or vertically. + + + Flip horizontally. + + + Flip vertically. + + + Represents one of the three language fonts contained in the collection + + + Represents the Latin font face. + + + Represents the font face for Complex Script languages. The Complex Script language collection supports Arabic, Georgian, Hebrew, Indian, Thai and Vietnamese alphabets. + + + Represents the East Asian font face. East Asian Languages include Simplified Chinese, Traditional Chinese, Japanese, and Korean. + + + Specifies the type of gradient used in a shape's fill. + + + Mixed gradient. + + + One-color gradient. + + + Two-color gradient. + + + Gradient colors set according to a built-in gradient of the set defined by the msoPresetGradientType constant. + + + + + + Specifies the style for a gradient fill. + + + Gradient is mixed. + + + Gradient running horizontally across the shape. + + + Gradient running vertically down the shape. + + + Diagonal gradient moving from a bottom corner up to the opposite corner. + + + Diagonal gradient moving from a top corner down to the opposite corner. + + + Gradient running from a corner to the other three corners. + + + Gradient running from the title outward. + + + Gradient running from the center out to the corners. + + + Specifies the horizontal alignment of text in a text frame. + + + Return value only; indicates a combination of the other states. + + + No alignment. + + + Text is centered horizontally. + + + Specifies the view in which an HTML project or project item is opened. + + + Open project in source view. + + + Open project in text view. + + + Specifies the current state of an HTMLProject object. + + + Document is locked. In a Microsoft Office host application or Microsoft Script Editor, indicates that the Refresh toolbar is displayed in the host application. + + + Project is locked. In the Microsoft Script Editor, indicates that the Refresh toolbar is displayed. + + + Document is unlocked. In a Microsoft Office host application or Microsoft Script Editor, indicates that the Refresh toolbar is not displayed at all. + + + Specifies the type of hyperlink. + + + Hyperlink applies to a Range object. + + + Hyperlink applies to a Shape object. + + + Hyperlink applies to an inline shape. Used only with Microsoft Word. + + + Specifies an icon type to show in a Balloon object. + + + No icon. + + + Alert icon. + + + Tip icon. + + + Information alert icon. + + + Warning alert icon. + + + Query alert icon. + + + Critical alert icon. + + + + + + + + + + + + + Specifies which language to use. + + + Mixed languages. + + + No language specified. + + + No proofing requested. + + + Afrikaans. + + + Albanian. + + + Amharic. + + + Arabic as spoken in Algeria. + + + Arabic as spoken in Bahrain. + + + Arabic as spoken in Egypt. + + + Arabic as spoken in Iraq. + + + Arabic as spoken in Jordan. + + + Arabic as spoken in Kuwait. + + + Arabic as spoken in Lebanon. + + + Arabic as spoken in Libya. + + + Arabic as spoken in Morocco. + + + Arabic as spoken in Oman. + + + Arabic as spoken in Qatar. + + + Arabic. + + + Arabic as spoken in Syria. + + + Arabic as spoken in Tunisia. + + + Arabic as spoken in the United Arab Emirates. + + + Arabic as spoken in Yemen. + + + Armenian. + + + Assamese. + + + Azeri-Cyrillic. + + + Azeri-Latin. + + + Basque (Basque). + + + Belarusian. + + + Bengali. + + + Bosnian. + + + The Bosnian Bosnia Herzegovina Cyrillic language. + + + The Bosnian Bosnia Herzegovina Latin language. + + + Bulgarian. + + + Burmese. + + + Catalan. + + + Chinese as spoken in Hong Kong SAR. + + + Chinese as spoken in Macao SAR. + + + Simplified Chinese. + + + Chinese as spoken in Singapore. + + + Traditional Chinese. + + + Cherokee. + + + Croatian. + + + Czech. + + + Danish. + + + Divehi. + + + Belgian Dutch. + + + Dutch. + + + Dzongkha as spoken in Bhutan. + + + Edo. + + + English as spoken in Australia. + + + English as spoken in Belize. + + + English as spoken in Canada. + + + English as spoken in the Caribbean. + + + English as spoken in Indonesia. + + + English as spoken in Ireland. + + + English as spoken in Jamaica. + + + English as spoken in New Zealand. + + + English as spoken in the Philippines. + + + English as spoken in South Africa. + + + English as spoken in Trinidad and Tobago. + + + English as spoken in the United Kingdom. + + + English as spoken in the United States. + + + English as spoken in Zimbabwe. + + + Estonian. + + + Faeroese. + + + Farsi. + + + Filipina. + + + Finnish. + + + Belgian French. + + + French as spoken in Cameroon. + + + French as spoken in Canada. + + + French as spoken in Cote d'Ivoire. + + + French. + + + French as spoken in Haiti. + + + French as spoken in Luxembourg. + + + French as spoken in Mali. + + + French as spoken in Monaco. + + + French as spoken in Morocco. + + + French as spoken in French Reunion Island. + + + French as spoken in Senegal. + + + French as spoken in Switzerland. + + + French as spoken in the West Indies. + + + French as spoken in Zaire. + + + The French Congo DRC language. + + + French as spoken in the Netherlands. + + + Fulfulde. + + + Gaelic as spoken in Ireland. + + + Gaelic as spoken in Scotland. + + + Galician. + + + Georgian. + + + German as spoken in Austria. + + + German. + + + German as spoken in Liechtenstein. + + + German as spoken in Luxembourg. + + + German as spoken in Switzerland. + + + Greek. + + + Guarani. + + + Gujarati. + + + Hausa. + + + Hawaiian. + + + Hebrew. + + + Hindi. + + + Hungarian. + + + Ibibio. + + + Icelandic. + + + Igbo. + + + Indonesian. + + + Inuktitut. + + + Italian. + + + Italian as spoken in Switzerland. + + + Japanese. + + + Kannada. + + + Kanuri. + + + Kashmiri. + + + Kashmiri in Devanagari script. + + + Kazakh. + + + Khmer. + + + Kirghiz. + + + Konkani. + + + Korean. + + + Kyrgyz. + + + Latin. + + + Lao. + + + Latvian. + + + Lithuanian. + + + Macedonian. + + + Macedonian FYROM language. + + + Malaysian. + + + Malay as spoken in Brunei Darussalam. + + + Malayalam. + + + Maltese. + + + Manipuri. + + + Maori. + + + Marathi. + + + Mongolian. + + + Nepali. + + + Bokmol as spoken in Norway. + + + Nynorsk as spoken in Norway. + + + Oriya. + + + Oromo. + + + Pashto. + + + Polish. + + + Brazilian Portuguese. + + + Portuguese. + + + Punjabi. + + + Quechua as spoken in Bolivia. + + + Quechua as spoken in Ecuador. + + + Quechua as spoken in Peru. + + + Rhaeto-Romanic. + + + Romanian as spoken in Moldova. + + + Romanian. + + + Russian as spoken in Moldova. + + + Russian. + + + Sami/Lappish. + + + Sanskrit. + + + Sepedi. + + + The Serbian Bosnia Herzegovina Cyrillic language. + + + The Serbian Bosnia Herzegovina Latin language. + + + Serbian/Cyrillic. + + + Serbian/Latin. + + + Sesotho. + + + Sindhi. + + + Sindhi as spoken in Pakistan. + + + Sinhalese. + + + Slovak. + + + Slovenian. + + + Somali. + + + Sorbian. + + + Spanish as spoken in Argentina. + + + Spanish as spoken in Bolivia. + + + Spanish as spoken in Chile. + + + Spanish as spoken in Colombia. + + + Spanish as spoken in Costa Rica. + + + Spanish as spoken in the Dominican Republic. + + + Spanish as spoken in Ecuador. + + + Spanish as spoken in El Salvador. + + + Spanish as spoken in Guatemala. + + + Spanish as spoken in Honduras. + + + Spanish as spoken in Mexico. + + + Spanish as spoken in Nicaragua. + + + Spanish as spoken in Panama. + + + Spanish as spoken in Paraguay. + + + Spanish as spoken in Peru. + + + Spanish as spoken in Puerto Rico. + + + Spanish (Modern Sort). + + + Spanish. + + + Spanish as spoken in Uruguay. + + + Spanish as spoken in Venezuela. + + + Sutu. + + + Swahili. + + + Swedish as spoken in Finland. + + + Swedish. + + + Syriac. + + + Tajik. + + + Tamil. + + + Tamazight. + + + Tamazight (Latin). + + + Tatar. + + + Telugu. + + + Thai. + + + Tibetan. + + + Tigrigna as spoken in Ethiopia. + + + Tigrigna as spoken in Eritrea. + + + Tsonga. + + + Tswana. + + + Turkish. + + + Turkmen. + + + Ukrainian. + + + Urdu. + + + Uzbek (Cyrillic). + + + Uzbek (Latin). + + + Venda. + + + Vietnamese. + + + Welsh. + + + Xhosa. + + + Yi. + + + Yiddish. + + + Yoruba. + + + Zulu. + + + Reserved for internal use. + + + + + + + + + + + + Specifies the period of time to filter files by the date last modified. Used with the LastModified property of the FileSearch object. + + + File last modified yesterday. + + + File last modified today. + + + File last modified last week. + + + File last modified this week. + + + File last modified last month. + + + File last modified this month. + + + File last modified any time. + + + Indicates the effects lighting for an object. + + + Specifies the Mixed effect. + + + Specifies the LegacyFlat1 effect. + + + Specifies the LegacyFlat2 effect. + + + Specifies the LegacyFlat3 effect. + + + Specifies the LegacyFlat4 effect. + + + Specifies the LegacyNormal1 effect. + + + Specifies the LegacyNormal2 effect. + + + Specifies the LegacyNormal3 effect. + + + Specifies the LegacyNormal4 effect. + + + Specifies the LegacyHarsh1 effect. + + + Specifies the LegacyHarsh2 effect. + + + Specifies the LegacyHarsh3 effect. + + + Specifies the LegacyHarsh4 effect. + + + Specifies the ThreePoint effect. + + + Specifies the Balanced effect. + + + Specifies the Soft effect. + + + Specifies the Harsh effect. + + + Specifies the Flood effect. + + + Specifies the Contrasting effect. + + + Specifies the Morning effect. + + + Specifies the Sunrise effect. + + + Specifies the Sunset effect. + + + Specifies the Chilly effect. + + + Specifies the Freezing effect. + + + Specifies the Flat effect. + + + Specifies the TwoPoint effect. + + + Specifies the Glow effect. + + + Specifies the BrightRoom effect. + + + Specifies the dash style for a line. + + + Not supported. + + + Line is solid. + + + Line is made up of square dots. + + + Line is made up of round dots. + + + Line consists of dashes only. + + + Line is a dash-dot pattern. + + + Line is a dash-dot-dot pattern. + + + Line consists of long dashes. + + + Line is a long dash-dot pattern. + + + + + + + + + + + + + + + Specifies the style for a line. + + + Not supported. + + + Single line. + + + Two thin lines. + + + Thick line next to thin line. For horizontal lines, thick line is below thin line. For vertical lines, thick line is to the right of the thin line. + + + Thick line next to thin line. For horizontal lines, thick line is above thin line. For vertical lines, thick line is to the left of the thin line. + + + Thick line with a thin line on each side. + + + Specifies animation style for Microsoft Office command bars. + + + No animation. + + + Random animation. + + + Menus unfold into view. + + + Menus slide into view. + + + Specifies the metadata property type. + + + Represents an unknown value. + + + Represents a Boolean value. + + + Represents a value from one or more choices. + + + Represents a calculated value. + + + Represents a computed value. + + + Represents a Currency value + + + Represents a DateTime value. + + + Represents a value from two or more choices that is written-in by the user. + + + Represents a GUID value. + + + Represents an Integer value. + + + Represents a value used to lookup another value. + + + Represents a collection of choices used to lookup another value. + + + Represents a collection of choices. + + + Represents a collection of choices that require the user to write-in a value. + + + Represents a value of one or more sentences. + + + Represents a generic number data type. + + + Represents a Text value. + + + Represents a URL. + + + Represents a category of user. + + + + + + + + + + + + Represents the maximum value for a range. + + + This enumeration has been deprecated and should not be used. + + + Internal use only. + + + Internal use only. + + + Specifies the mode type for a Balloon object. + + + Modal. User must dismiss balloon before continuing work. + + + Auto-down. Balloon is dismissed when user clicks anywhere on the screen. + + + Modeless. User can work in application while balloon is displayed. + + + This enumeration has been deprecated and should not be used. + + + Internal use only. + + + Internal use only. + + + Internal use only. + + + Internal use only. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the menu group that a command bar pop-up control belongs to when the menu groups of the OLE server are merged with the menu groups of an OLE client (that is, when an object of the container application type is embedded in another application). + + + Pop-up control is not merged. + + + File menu. + + + Edit menu. + + + Container menu. + + + Object menu. + + + Window menu. + + + Help menu. + + + Indicates how to format the child nodes in an organization chart. + + + Return value for a parent node that has children formatted using more than one MsoOrgChartLayoutType. + + + Places child nodes horizontally below the parent node. + + + Places child nodes vertically below the parent node on both the left and the right side. + + + Places child nodes vertically below the parent node on the left side. + + + Places child nodes vertically below the parent node on the right side. + + + + + + Specifies orientation of an organization chart. + + + Mixed orientation. + + + Vertical orientation. + + + Specifies orientation of an object when it is displayed or printed. + + + Mixed orientation. + + + Horizontal (landscape) orientation. + + + Vertical (portrait) orientation. + + + Specifies paragraph alignment for a text block. + + + Use a combination of alignment styles. + + + Specifies that the leftmost character of each line is aligned to the left margin, and the right edge of each line is ragged. This is the default alignment for paragraphs with left-to-right text direction. + + + + Specifies that the center of each line of text is aligned to the midpoint of the right and left text box margins, and the left and right edges of each line are ragged. + + + Specifies that the rightmost character of each line is aligned to the right margin, and the left edge of each line is ragged. This is the default alignment for paragraphs with right-to-left text direction. + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting space between and within words. The last line of the paragraph is aligned to the left margin if text direction is left-to-right, or to the right margin if text direction is right-to-left. + + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting the same amount from each character. The last line of the paragraph is aligned to the left margin if text direction is left-to-right, or to the right margin if text direction is right-to-left. + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting space between (but not within) words. The last line of the paragraph is aligned to the left margin. + + + Specifies the alignment or adjustment of kashida length in Arabic text. Kashida are special characters used to extend the joiner between two Arabic characters. + + + Specifies the format of a file or folder path. + + + Represents a mixed format. + + + Represents no format. + + + Represents the Type1 format. + + + Represents the Type2 format. + + + Represents the Type3 format. + + + Represents the Type4 format. + + + Specifies the fill pattern used in a shape. + + + Not supported. + + + 5% of the foreground color. + + + 10% of the foreground color. + + + 20% of the foreground color. + + + 25% of the foreground color. + + + 30% of the foreground color. + + + 40% of the foreground color. + + + 50% of the foreground color. + + + 60% of the foreground color. + + + 70% of the foreground color. + + + 75% of the foreground color. + + + 80% of the foreground color. + + + 90% of the foreground color. + + + Thick horizontal lines in the foreground color. + + + Thick vertical lines in the foreground color. + + + Thick lines in the foreground color running from the top to the right-hand side of the shape. + + + Thick lines in the foreground color running from the top to the left-hand side of the shape. + + + Small squares in alternating foreground/background colors. + + + Trellis pattern in the foreground color. + + + Thin horizontal lines in the foreground color. + + + Thin vertical lines in the foreground color. + + + Thin lines in the foreground color running from the top to the right-hand side of the shape. + + + Thin lines in the foreground color running from the top to the left-hand side of the shape. + + + Solid, closely spaced perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Dotted perpendicular lines in the foreground color running diagonally to form diamonds across the shape. + + + Widely spaced lines in the foreground color running from the top to the right-hand side of the shape. + + + Widely spaced lines in the foreground color running from the top to the left-hand side of the shape. + + + Dashed lines in the foreground color running from the top to the left-hand side of the shape. + + + Dashed lines in the foreground color running from the top to the right-hand side of the shape. + + + Narrowly spaced vertical lines in the foreground color. + + + Narrowly spaced horizontal lines in the foreground color. + + + Dashed vertical lines in the foreground color. + + + Dashed horizontal lines in the foreground color. + + + Large dots in the foreground color scattered across the shape. + + + Solid, widely spaced perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Rectangular brick pattern running horizontally across the shape. + + + Squares in alternating foreground/background colors. + + + Small dots in the foreground color scattered across the shape. + + + Zigzag lines running horizontally across the shape. + + + Diamond shapes in alternating foreground/background colors. + + + Rectangular brick pattern running diagonally across the shape. + + + Solid perpendicular lines in the foreground color running diagonally to form diamonds across the shape. + + + Very thick solid lines in the foreground color running vertically, coupled with very thick lines and 40% of the foreground color running horizontally. + + + Circles that use foreground and background colors to make them appear three-dimensional, oriented in rows across the shape. + + + Weave pattern in the foreground color running diagonally across the shape. + + + Dotted perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Small angled shapes in the foreground color running in alternating rows down the shape. + + + Overlapping curved rectangles running diagonally across the shape. + + + Wavy lines in the foreground color. + + + Horizontal + + + Vertical + + + Cross + + + Downward Diagonal + + + Upward Diagonal + + + Diagonal Cross + + + Specifies an Information Rights Management (IRM) permission type for a document. + + + Permission to view. + + + Permission to read. + + + Permission to edit. + + + Permission to save. + + + Permission to extract. + + + Permission to change. + + + Permission to print. + + + Permission to access the object model programmatically. + + + Full control permissions. + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the color transformation applied to a picture. + + + Mixed transformation. + + + Default color transformation. + + + Grayscale transformation. + + + Black-and-white transformation. + + + Watermark transformation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates the effects camera type used by the specified object. + + + Specifies a mixed effect. + + + Specifies Legacy Oblique Upper Left. + + + Specifies Legacy Oblique Top. + + + Specifies Legacy Oblique Upper Right. + + + Specifies Legacy Oblique Left. + + + Specifies Legacy Oblique Front. + + + Specifies Legacy Oblique Right. + + + Specifies Legacy Oblique Lower Left. + + + Specifies Legacy Oblique Bottom. + + + Specifies Legacy Oblique Lower Right. + + + Specifies Legacy Perspective Upper Left. + + + Specifies Legacy Perspective Top. + + + Specifies Legacy Perspective Upper Right. + + + Specifies Legacy Perspective Left. + + + Specifies Legacy Perspective Front. + + + Specifies Legacy Perspective Right. + + + Specifies Legacy Perspective Lower Left. + + + Specifies Legacy Perspective Bottom. + + + Specifies Legacy Perspective Lower Right. + + + Specifies Orthographic Front. + + + Specifies Isometric Top Up. + + + Specifies Isometric Top Down. + + + Specifies Isometric Bottom Up. + + + Specifies Isometric Bottom Down. + + + Specifies Isometric Left Up. + + + Specifies Isometric Left Down. + + + Specifies Isometric Right Up. + + + Specifies Isometric Right Down. + + + Specifies Isometric OffAxis1 Left. + + + Specifies Isometric OffAxis1 Right. + + + Specifies Isometric OffAxis1 Top. + + + Specifies Isometric OffAxis2 Left. + + + Specifies Isometric OffAxis2 Right. + + + Specifies Isometric OffAxis2 Top. + + + Specifies Isometric OffAxis3 Left. + + + Specifies Isometric OffAxis3 Right. + + + Specifies Isometric OffAxis3 Bottom. + + + Specifies Isometric OffAxis4 Left. + + + Specifies Isometric OffAxis4 Right. + + + Specifies Isometric OffAxis4 Bottom. + + + Specifies Oblique Upper Left. + + + Specifies Oblique Top. + + + Specifies Oblique Upper Right. + + + Specifies Oblique Left. + + + Specifies Oblique Right. + + + Specifies Oblique Lower Left. + + + Specifies Oblique Bottom. + + + Specifies Oblique Lower Right. + + + Specifies Perspective Front. + + + Specifies Perspective Left. + + + Specifies Perspective Right. + + + Specifies Perspective Above. + + + Specifies Perspective Below. + + + Specifies Perspective Above Left Facing. + + + Specifies Perspective Above Right Facing. + + + Specifies Perspective Contrasting Left Facing. + + + Specifies Perspective Contrasting Right Facing. + + + Specifies Perspective Heroic Left Facing. + + + Specifies Perspective Heroic Right Facing. + + + Specifies Perspective Heroic Extreme Left Facing. + + + Specifies Perspective Heroic Extreme Right Facing. + + + Specifies Perspective Relaxed. + + + Specifies Perspective Relaxed Moderately. + + + Specifies the direction that the extrusion's sweep path takes away from the extruded shape (the front face of the extrusion). + + + Return value only; indicates a combination of the other states. + + + Bottom right. + + + Bottom. + + + Bottom left. + + + Right. + + + No extrusion. + + + Left. + + + Top right. + + + Top. + + + Top left. + + + Specifies which predefined gradient to use to fill a shape. + + + Mixed gradient. + + + Early Sunset gradient. + + + Late Sunset gradient. + + + Nightfall gradient. + + + Daybreak gradient. + + + Horizon gradient. + + + Desert gradient. + + + Ocean gradient. + + + Calm Water gradient. + + + Fire gradient. + + + Fog gradient. + + + Moss gradient. + + + Peacock gradient. + + + Wheat gradient. + + + Parchment gradient. + + + Mahogany gradient. + + + Rainbow gradient. + + + Rainbow II gradient. + + + Gold gradient. + + + Gold II gradient. + + + Brass gradient. + + + Chrome gradient. + + + Chrome II gradient. + + + Silver gradient. + + + Sapphire gradient. + + + Specifies the location of lighting on an extruded (three-dimensional) shape relative to the shape. + + + Not supported. + + + Lighting comes from the top left. + + + Lighting comes from the top. + + + Lighting comes from the top right. + + + Lighting comes from the left. + + + No lighting. + + + Lighting comes from the right. + + + Lighting comes from the bottom left. + + + Lighting comes from the bottom. + + + Lighting comes from the bottom right. + + + Specifies the intensity of light used on a shape. + + + Not supported. + + + Dim light. + + + Normal light. + + + Bright light. + + + Specifies the extrusion surface material. + + + Return value only; indicates a combination of the other states. + + + Matte. + + + Plastic. + + + Metal. + + + Wire frame. + + + Matte2 + + + Plastic2 + + + Metal2 + + + Warm Matte + + + Translucent Powder + + + Powder + + + DarkEdge + + + Soft Edge + + + Clear + + + Flat + + + Soft Metal + + + Specifies what text effect to use on a WordArt object. + + + Not used. + + + First text effect. + + + Second text effect. + + + Third text effect. + + + Fourth text effect. + + + Fifth text effect. + + + Sixth text effect. + + + Seventh text effect. + + + Eighth text effect. + + + Ninth text effect. + + + Tenth text effect. + + + Eleventh text effect. + + + Twelfth text effect. + + + Thirteenth text effect. + + + Fourteenth text effect. + + + Fifteenth text effect. + + + Sixteenth text effect. + + + Seventeenth text effect. + + + Eighteenth text effect. + + + Nineteenth text effect. + + + Twentieth text effect. + + + Twenty-first text effect. + + + Twenty-second text effect. + + + Twenty-third text effect. + + + Twenty-fourth text effect. + + + Twenty-fifth text effect. + + + Twenty-sixth text effect. + + + Twenty-seventh text effect. + + + Twenty-eighth text effect. + + + Twenty-ninth text effect. + + + Thirtieth text effect. + + + Specifies shape of WordArt text. + + + Not used. + + + No shape applied. + + + Text follows the shape of a stop sign. + + + Text slants down, then up. + + + Text slants up, then down. + + + Text slants down to its center point and then slants up. + + + Text slants up to its center point and then slants down. + + + Text appears to be written on the inside of a 3-D ring. + + + Text appears to be written on the outside of a 3-D ring. + + + Text is an arch that curves up. + + + Text is an arch that curves down. + + + Text follows a circle, reading clockwise. + + + Text is curved around a center "button." + + + Text is a 3-D arch that curves up. + + + Text is a 3-D arch that curves down. + + + Text has a 3-D effect and follows a circle, reading clockwise. + + + Text is seen in 3-D, curved around a center "button." + + + Text curves down and to the right as font size increases. + + + Text curves down and to the right as font size decreases. + + + Text is stretched to fill the height of the shape, with only a slight curve up. + + + Text is stretched to fill the height of the shape, with only a slight curve down. + + + Text follows a wave up, then down and up again. + + + Text follows a wave down, then up and down again. + + + Text follows a line that curves up, then down, then up and down again. + + + Text follows a line that curves down, then up, then down and up again. + + + Font size of text increases to its center point, then decreases. Center point of each letter is on the same straight line. + + + Font size decreases to the text's midpoint, then increases to the starting size. + + + Font size of text increases to its center point, then decreases. Center point of each letter follows an arch that curves downward. + + + Font size decreases to the text's midpoint, then increases to the starting size, while keeping the top of the text along the same curve. + + + Font size of text increases to its center point, then decreases. Center point of each letter follows an arch that curves upward. + + + Font size decreases to the text's midpoint, then increases to the starting size, while keeping the bottom of the text along the same curve. + + + Font size increases to the text's midpoint, then decreases to the starting size. + + + Font size decreases, increases, and decreases again across the text. + + + Right side of text appears to be closer to the viewer than left side. + + + Left side of text appears to be closer to the viewer than right side. + + + Bottom of text appears to be closer to the viewer than top. + + + Top of the text appears to be closer to the viewer than bottom of the text. + + + Text slants up and to the right. + + + Text slants down and to the right. + + + Text slants down and to the right as font size increases. + + + Text slants up and to the right as font size decreases. + + + Specifies texture to be used to fill a shape. + + + Not used. + + + Papyrus texture. + + + Canvas texture. + + + Denim texture. + + + Woven mat texture. + + + Water droplets texture. + + + Paper bag texture. + + + Fish fossil texture. + + + Sand texture. + + + Green marble texture. + + + White marble texture. + + + Brown marble texture. + + + Granite texture. + + + Newsprint texture. + + + Recycled paper texture. + + + Parchment texture. + + + Stationery texture. + + + Blue tissue paper texture. + + + Pink tissue paper texture. + + + Purple mesh texture. + + + Bouquet texture. + + + Cork texture. + + + Walnut texture. + + + Oak texture. + + + Medium wood texture. + + + Specifies an extrusion (three-dimensional) format. + + + Not used. + + + First 3-D format. + + + Second 3-D format. + + + Third 3-D format. + + + Fourth 3-D format. + + + Fifth 3-D format. + + + Sixth 3-D format. + + + Seventh 3-D format. + + + Eighth 3-D format. + + + Ninth 3-D format. + + + Tenth 3-D format. + + + Eleventh 3-D format. + + + Twelfth 3-D format. + + + Thirteenth 3-D format. + + + Fourteenth 3-D format. + + + Fifteenth 3-D format. + + + Sixteenth 3-D format. + + + Seventeenth 3-D format. + + + Eighteenth 3-D format. + + + Nineteenth 3-D format. + + + Twentieth 3-D format. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies where a node is added to a diagram relative to existing nodes. + + + Node is added before current node. + + + Node is added after current node. + + + Node is added before first sibling. + + + Node is added after last sibling. + + + Specifies which part of the shape retains its position when the shape is scaled. + + + Shape's top left corner retains its position. + + + Shape's midpoint retains its position. + + + Shape's bottom right corner retains its position. + + + Specifies the ideal screen resolution to be used to view a document in a Web browser. + + + 544x376 resolution. + + + 640x480 resolution. + + + 720x512 resolution. + + + 800x600 resolution. + + + 1024x768 resolution. + + + 1152x882 resolution. + + + 1152x900 resolution. + + + 1280x1024 resolution. + + + 1600x1200 resolution. + + + 1800x1440 resolution. + + + 1920x1200 resolution. + + + Specifies scripting language of the active script. + + + Java. + + + Visual Basic. + + + Active Server Pages (ASP). + + + A language other than ASP, Java, or Visual Basic. + + + Specifies the location of the script anchor within a document. + + + Script anchor is in the head of the document. + + + Script anchor is in the body of the document. + + + Indicates the area in which the Execute method of the FileSearch object searches for files. + + + Searches the My Computer node. + + + Searches Microsoft Outlook folders. + + + Searches the My Network Places node. + + + Searches a custom path. Custom path is defined by the LookIn property of the FileSearch object. + + + Specifies the type for a segment. + + + Line. + + + Curve. + + + Specifies the type of shadowing effect. + + + Specifies a combination of inner and outer shadow effects. + + + Specifies the inner shadow effect. + + + Specifies the outer shadow effect. + + + Specifies the type of shadow displayed with a shape. + + + Not supported. + + + First shadow type. + + + Second shadow type. + + + Third shadow type. + + + Fourth shadow type. + + + Fifth shadow type. + + + Sixth shadow type. + + + Seventh shadow type. + + + Eighth shadow type. + + + Ninth shadow type. + + + Tenth shadow type. + + + Eleventh shadow type. + + + Twelfth shadow type. + + + Thirteenth shadow type. + + + Fourteenth shadow type. + + + Fifteenth shadow type. + + + Sixteenth shadow type. + + + Seventeenth shadow type. + + + Eighteenth shadow type. + + + Nineteenth shadow type. + + + Twentieth shadow type. + + + Twenty first shadow type. + + + Twenty second shadow type. + + + Twenty third shadow type. + + + Twenty forth shadow type. + + + Twenty fifth shadow type. + + + Twenty sixth shadow type. + + + Twenty seventh shadow type. + + + Twenty eighth shadow type. + + + Twenty ninth shadow type. + + + Thirtieth shadow type. + + + Thirty first shadow type. + + + Thirty second shadow type. + + + Thirty third shadow type. + + + Thirty forth shadow type. + + + Thirty fifth shadow type. + + + Thirty sixth shadow type. + + + Thirty seventh shadow type. + + + Thirty eighth shadow type. + + + Thirty ninth shadow type. + + + Fortieth shadow type. + + + Forty first shadow type. + + + Forty second shadow type. + + + Forty third shadow type. + + + Indicates the line and shape style. + + + A mix of shape styles. + + + No shape style. + + + Shape style 1. + + + Shape style 2. + + + Shape style 3. + + + Shape style 4. + + + Shape style 5. + + + Shape style 6. + + + Shape style 7. + + + Shape style 8. + + + Shape style 9. + + + Shape style 10. + + + Shape style 11. + + + Shape style 12. + + + Shape style 13. + + + Shape style 14. + + + Shape style 15. + + + Shape style 16. + + + Shape style 17. + + + Shape style 18. + + + Shape style 19. + + + Shape style 20. + + + Shape style 21. + + + Shape style 22. + + + Shape style 23. + + + Shape style 24. + + + Shape style 25. + + + Shape style 26. + + + Shape style 27. + + + Shape style 28. + + + Shape style 29. + + + Shape style 30. + + + Shape style 31. + + + Shape style 32. + + + Shape style 33. + + + Shape style 34. + + + Shape style 35. + + + Shape style 36. + + + Shape style 37. + + + Shape style 38. + + + Shape style 39. + + + Shape style 40. + + + Shape style 41. + + + Shape style 42. + + + Line style 1. + + + Line style 2. + + + Line style 3. + + + Line style 4. + + + Line style 5. + + + Line style 6. + + + Line style 7. + + + Line style 8. + + + Line style 9. + + + Line style 10. + + + Line style 11. + + + Line style 12. + + + Line style 13. + + + Line style 14. + + + Line style 15. + + + Line style 16. + + + Line style 17. + + + Line style 18. + + + Line style 19. + + + Line style 20. + + + Line style 21. + + + Specifies the type of a shape or range of shapes. + + + Return value only; indicates a combination of the other states. + + + AutoShape. + + + Callout. + + + Chart. + + + Comment. + + + Freeform. + + + Group. + + + Embedded OLE object. + + + Form control. + + + Line. + + + Linked OLE object. + + + Linked picture. + + + OLE control object. + + + Picture. + + + Placeholder. + + + Text effect. + + + Media. + + + Text box. + + + Script anchor. + + + Table. + + + Canvas. + + + Diagram. + + + Ink. + + + Ink comment. + + + + + + + + + Specifies the priority for a shared workspace task. + + + High priority. + + + Normal priority. + + + Low priority. + + + Specifies the status of a shared workspace task. + + + Not started. + + + In progress. + + + Completed. + + + Deferred. + + + Waiting. + + + Specifies properties of the signature subset. These settings act as filters for signature sets. + + + All non-visible signatures plus all signed signature lines. + + + All non-visible signatures. + + + All signature lines. + + + Signature lines that have been signed. + + + Signature lines that have not been signed. + + + All non-visible signatures plus all signature lines. + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the type of soft edge effect. + + + A mix of soft edge types. + + + No soft edge. + + + Soft Edge Type 1 + + + Soft Edge Type 2 + + + Soft Edge Type 3 + + + Soft Edge Type 4 + + + Soft Edge Type 5 + + + Soft Edge Type 6 + + + Specifies sort order for files in a FileSearch object's FoundFiles collection. + + + File name. + + + File size. + + + File type. + + + Last modified date. + + + No sort. + + + Specifies whether files in a FileSearch object's FoundFiles collection should be sorted in ascending or descending order. + + + Ascending order. + + + Descending order. + + + Specifies whether and under what circumstances synchronization is available for the document. + + + No synchronization is available. + + + Synchronization is available offline only. + + + Synchronization is available offline and online. + + + Specifies how comparison between local copy and server copy should be done in a synchronization process. + + + Compare and merge versions. + + + Compare versions side-by-side. + + + Specifies how conflicts should be resolved when synchronizing a shared document. + + + Replace the server copy with the local copy. + + + Replace the local copy with the server copy. + + + Merge changes made to the server copy into the local copy. In order to resolve the conflict with the merged changes winning, you must save the active document after merging changes, then call the ResolveConflict method again with the option. + + + Specifies a document synchronization error. + + + No error. + + + Unauthorized user. + + + Could not connect. + + + Out of space. + + + Destination file not found. + + + File too large to synchronize. + + + Destination file in use. + + + Virus uploaded. + + + Virus downloaded. + + + Upload error. + + + Download error. + + + Could not open file. + + + Could not update destination file. + + + Source and destination files could not be compared. + + + Could not resolve files. + + + No network available. + + + Unknown error. + + + Specifies the return value of a Sync event. + + + Download initiated. + + + Download succeeded. + + + Download failed. + + + Upload initiated. + + + Upload succeeded. + + + Upload failed. + + + No change detected. + + + Offline. + + + Specifies the status of the synchronization of the local copy of the active document with the server copy. + + + No shared workspace. + + + No syncronization is needed. + + + Documents are already in sync. + + + Only server copy has changes. + + + Only local copy has changes. + + + Both the local and the server copies have changes. + + + Synchronization was suspended. You can use the Unsuspend method of the Sync object to resume synchronization. + + + An error occurred. Use ErrorType property of Sync object to determine exact error. + + + Specifies which version of a shared document to open alongside the currently open local version. + + + Opens the copy of the document that is created whenever the user overwrites the local copy with the server copy. + + + Opens the server version. + + + + + + + + + + + + + + + + + + + Specifies target browser for documents viewed in a Web browser. + + + Netscape Navigator 3. + + + Netscape Navigator 4. + + + Microsoft Internet Explorer 4.0. + + + Microsoft Internet Explorer 5. + + + Microsoft Internet Explorer 6. + + + Specifies the capitalization of the text. + + + Display the text as mixed uppercase and lowercase letters. + + + Display the text with no uppercase letters. + + + Display the text with any lowercase letters displayed as uppercase that are the same height as lowercase for the current font and size. + + + Display the text as all uppercase letters. + + + Specifies the capitalization of text. + + + Display the text as sentence case characters. Sentence case specifies that the first letter of the sentence is capitalized and that all others should be lowercase (with some exceptions such as proper nouns, and acronyms). + + + Display the text as lowercase characters. + + + Display the text as uppercase characters. + + + Display the text as title case characters. Title case specifies that the first letter of each word is capitalized and that all others should be lowercase. In some cases short articles, prepositions, and conjunctions are not capitalized. + + + Indicates that lowercase text should be converted to uppercase and that uppercase text should be converted to lowercase text. + + + Indicates the type of text wrap. + + + Specifies a mixed text wrap. + + + Specifies no text wrapping. + + + Specifies wrapping text around the standard boundry of an object. + + + Specifies text wrapping that adheres to restrictions imposed by some languages such as Chinese and Japanese alphabets. + + + Specifies a custom text wrap scheme. + + + + + + + + + + + + + Specifies alignment for WordArt text. + + + Not used. + + + Left-aligned. + + + Centered. + + + Right- aligned. + + + Text is justified. Spacing between letters may be adjusted to justify text. + + + Text is justified. Spacing between words (but not letters) may be adjusted to justify text. + + + Text is justified. Letters may be stretched to justify text. + + + Indicates the text alignment scheme used for an object. + + + Specifies that there is a mix of text alignments used with the object. + + + Specifies that the text alignment will be determined by the Office application. + + + Specifies that the font is aligned to the top of the object. + + + Specifies that the font is aligned to the center of the object. + + + Specifies that the font is aligned to the baseline of the object. + + + Specifies that the font is aligned to the bottom of the object. + + + Specifies orientation for text. + + + Not supported. + + + Horizontal. + + + Upward. + + + Downward. + + + Vertical as required for Far East language support. + + + Vertical. + + + Horizontal and rotated as required for Far East language support. + + + Indicates the number of times a character is printed to darken the image. + + + Specifies that the text can contain a combination of double-strike and single-strike characters. + + + Specifies that the character is not printed. + + + Specifies that the character is printed once. + + + Specifies that the character is printed twice. + + + Indicates the text alignment against tab stops or line breaks. The default value is . + + + Specifies that mixed text alignment against tab stops is used. + + + Specifies that the following text starts immediately after the designated tab stop. + + + Specifies that the following text up to next tab or line break is centered on the designated tab stop. + + + Specifies that the following text up to the next tab or line break is rendered flush right to the designated tab stop. + + + Specifies that the following text is searched for the first occurrence of the character representing the decimal point. The text up to the next tab or line break is then aligned such that the decimal point starts at the designated tab stop. + + + Indicates the type of underline for text. + + + Specifies a mix of underline types. + + + Specifies no underline. + + + Specifies underlining words. + + + Specifies a single line underline. + + + Specifies a double line underline. + + + Specifies a heavy line underline. + + + Specifies a dotted line underline. + + + Specifies a dotted heavy line underline. + + + Specifies a dash line underline. + + + Specifies a dash underline. + + + Specifies a dashed long line underline. + + + Specifies a long heavy line underline. + + + Specifies a dot dash line underline. + + + Specifies a dot dash heavy line underline. + + + Specifies a dot dot dash line underline. + + + Specifies a dot dot dash heavy line underline. + + + Specifies a wavy line underline. + + + Specifies a wavy heavy line underline. + + + Specifies a wavy double line underline. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the texture type for the selected fill. + + + Return value only; indicates a combination of the other states. + + + Preset texture type. + + + User-defined texture type. + + + Indicates the Office theme color. + + + Specifies a mixed color theme. + + + Specifies no theme color. + + + Specifies the Dark 1 theme color. + + + Specifies the Light 1 theme color. + + + Specifies the Dark 2 theme color. + + + Specifies the Light 2 theme color. + + + Specifies the Accent 1 theme color. + + + Specifies the Accent 2 theme color. + + + Specifies the Accent 3 theme color. + + + Specifies the Accent 4 theme color. + + + Specifies the Accent 5 theme color. + + + Specifies the Accent 6 theme color. + + + Specifies the theme color for a hyperlink. + + + Specifies the theme color for a clicked hyperlink. + + + Specifies the Text 1 theme color. + + + Specifies the Background 1 theme color. + + + Specifies the Text 2 theme color. + + + Specifies the Background 2 theme color. + + + Indicates the color scheme for an Office theme. + + + Specifies color scheme Dark 1. + + + Specifies color scheme Light 1. + + + Specifies color scheme Dark 2. + + + Specifies color scheme Light 2. + + + Specifies color scheme Accent 1. + + + Specifies color scheme Accent 2. + + + Specifies color scheme Accent 3. + + + Specifies color scheme Accent 4. + + + Specifies color scheme Accent 5. + + + Specifies color scheme Accent 6. + + + Specifies a color scheme for a hyperlink. + + + Specifies a color scheme for a clicked hyperlink. + + + Specifies a tri-state Boolean value. + + + True. + + + False. + + + Not supported. + + + Not supported. + + + Not supported. + + + Specifies the vertical alignment of text in a text frame. + + + Return value only; indicates a combination of the other states. + + + Aligns text to top of text frame. + + + Anchors bottom of text string to current position, regardless of text resizing. When you resize text without baseline anchoring, text centers itself on previous position. + + + Centers text vertically. + + + Aligns text to bottom of text frame. + + + Anchors bottom of text string to current position, regardless of text resizing. When you resize text without baseline anchoring, text centers itself on previous position. + + + Indicates various image warping formats. + + + Specifies a mix of warp formats. + + + Specifies Warp Format 1. + + + Specifies Warp Format 2. + + + Specifies Warp Format 3. + + + Specifies Warp Format 4. + + + Specifies Warp Format 5. + + + Specifies Warp Format 6. + + + Specifies Warp Format 7. + + + Specifies Warp Format 8. + + + Specifies Warp Format 9. + + + Specifies Warp Format 10. + + + Specifies Warp Format 11. + + + Specifies Warp Format 12. + + + Specifies Warp Format 13. + + + Specifies Warp Format 14. + + + Specifies Warp Format 15. + + + Specifies Warp Format 16. + + + Specifies Warp Format 17. + + + Specifies Warp Format 18. + + + Specifies Warp Format 19. + + + Specifies Warp Format 20. + + + Specifies Warp Format 21. + + + Specifies Warp Format 22. + + + Specifies Warp Format 23. + + + Specifies Warp Format 24. + + + Specifies Warp Format 25. + + + Specifies Warp Format 26. + + + Specifies Warp Format 27. + + + Specifies Warp Format 28. + + + Specifies Warp Format 29. + + + Specifies Warp Format 30. + + + Specifies Warp Format 31. + + + Specifies Warp Format 32. + + + Specifies Warp Format 33. + + + Specifies Warp Format 34. + + + Specifies Warp Format 35. + + + Specifies Warp Format 36. + + + Specifies the change to the Office Assistant Help session. + + + Make Office Assistant inactive. + + + Make Office Assistant active. + + + Suspend Office Assistant. + + + Resume Office Assistant. + + + Specifies context under which a wizard's callback procedure is called. + + + Not supported. + + + User clicked the right button in the decision or branch balloon. + + + User clicked the left button in the decision or branch balloon. + + + Passed to the ActivateWizard method if msoWizardActSuspend is specified for the Act argument. + + + Passed to the ActivateWizard method if msoWizardActResume is specified for the Act argument. + + + Specifies where in the z-order a shape should be moved relative to other shapes. + + + Bring shape to the front. + + + Send shape to the back. + + + Bring shape forward. + + + Send shape backward. + + + Bring shape in front of text. + + + Send shape behind text. + + + The NewFile object represents items listed on the New Item task pane available in several Microsoft Office applications. + + + Adds a new item to the New Item task pane. + Required String. The name of the file to add to the list of files on the task pane. + Optional Object. The section to which to add the file. Can be any constant. + Optional Object. The text to display in the task pane. + Optional Object. The action to take when a user clicks on the item. Can be any constant. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes an item from the New Item task pane. + Required String. The name of the file reference. + Optional Object. The section of the task pane where the file reference exists. Can be any constant. + Optional Object. The display text of the file reference. + Optional Object. The action taken when a user clicks on the item. Can be any constant. + + + Represents a field in a data source. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the name of the specified object. + + + Returns the Parent object for the specified object. + + + Returns the value of a field in a data source. + + + A collection of objects that represent the data fields in a mail merge data source. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a member of the specified collection. + Required Object. The name or index number of the ODSOColumn item to be returned. + + + Returns the Parent object for the specified object. + + + Represents a filter to be applied to an attached mail merge data source. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a String that represents the name of the field in the mail merge data source to use in the filter. + + + Returns or sets a String that represents the text to compare in the query filter criterion. + + + Returns or sets a constant that represents how to compare the and properties. + + + Returns or sets a constant that represents how a filter criterion relates to other filter criteria in the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the Parent object for the specified object. + + + Represents all the filters to apply to the data source attached to the mail merge publication. + + + Adds a new filter to the collection. + Required String. The name of the table in the data source. + Required . How the data in the table is filtered. + Required . Determines how this filter relates to other filters in the ODSOFilters object. + Optional String. If the argument is something other than msoFilterComparisonIsBlank or msoFilterComparisonIsNotBlank, a string to which the data in the table is compared. + Optional Boolean. Default value is False. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes a filter object from the collection. + Required Integer. The number of the filter to delete. + Optional Boolean. + + + Returns a member of the specified collection. + Required Integer. The index number of the ODSOFilter to be returned. + + + Returns the Parent object for the specified object. + + + Represents the mail merge data source in a mail merge operation. + + + Applies a filter to a mail merge data source to filter specified records meeting specified criteria. + + + Returns an object that represents the fields in a data source. + + + Returns or sets a String that represents the connection to the specified mail merge data source. + + + Returns or sets a String that represents the name of the attached data source. + + + Returns a collection. + + + Moves the focus to a specified row in a mail merge data source. + Required . The row that receives the focus. + Optional Integer. The row number of the row that receives the focus. + + + Opens a connection to a mail merge data source. + Optional String. The name of the data source. + Optional String. The connection string to the data source. + Optional String. The name of a table in the data source. + Optional Integer. Sets whether the data source is opened for exclusive access. + Optional Integer. Sets whether prompts are displayed. + + + Returns an Integer that represents the number of records in the specified data source. + + + Sets the sort order for mail merge data. + Required String. The first field on which to sort the mail merge data. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + Optional String. The second field on which to sort the mail merge data. Default is an empty string. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + Optional String. The third field on which to sort the mail merge data. Default is an empty string. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + + + Returns a String that represents the name of the table within the data source file that contains the mail merge records. + + + Represents a Microsoft Office theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the parent object for the object. Read-only. + Object + + + Gets a object that represents the color scheme of a Microsoft Office theme. Read-only. + + + + + + Gets a object that represents the effects scheme of a Microsoft Office theme. Read-only. + + + + + + Gets a object that represents the font scheme of a Microsoft Office theme. Read-only. + + + + + + + + + + + + + + + + Represents the paragraph formatting of a text range. + + + Gets or sets a value specifying the alignment of the paragraph. Read/write. + + + + + + Gets an object that represents the application that contains the object. Read-only. + Object + + + Gets or sets a constant that represents the vertical position of fonts in a paragraph. Read/write. + + + + + + Gets a object for the paragraph. Read-only. + + + + + + Gets a value representing the application that created the object. Read-only. + Integer + + + Gets or sets the East Asian line break control level for the specified paragraph. Read/write. + + + + + + Gets or sets the value (in points) for a first line or hanging indent. Read/write. + Single + + + Determines whether hanging punctuation is enabled for the specified paragraphs. +Read/write. + + + + + + Gets or sets a value representing the indent level assigned to text in the selected paragraph. Read/write. + Integer + + + Gets or sets a value that represents the left indent value (in points) for the specified paragraphs. Read/write. + Single + + + Determines whether line spacing after the last line in each paragraph is set to a specific number of points or lines. Read/write. + + + + + + Determines whether line spacing before the first line in each paragraph is set to a specific number of points or lines. Read/write. + + + + + + Determines whether line spacing between base lines is set to a specific number of points or lines. Read/write. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets the right indent (in points) for the specified paragraphs. Read/write. + Single + + + Gets or sets the amount of spacing (in points) after the specified paragraph. Read/write. + Single + + + Gets or sets the spacing (in points) before the specified paragraphs. Read/write. + Single + + + Gets or sets the amount of space between base lines in the specified paragraph, in points or lines. Read/write. + Single + + + Gets a collection that represents all the custom tab stops for the specified paragraphs. Read-only. + + + + + + Gets or sets the text direction for the specified paragraph. Read/write. + + + + + + Determines whether the application wraps the Latin text in the middle of a word in the specified paragraphs. Read/write. + + + + + + Use the Permission object to restrict permissions to the active document and to return or set specific permissions settings. + + + Creates a new set of permissions on the active document for the specified user. + Optional Object. The email address (in the format ) of the user to whom permissions on the active document are being granted. + Optional String. The permissions on the active document that are being granted to the specified user. + Required String. The expiration date for the permissions that are being granted. + + + Returns an Application object that represents the container application for the object. + + + Applies the specified permission policy to the active document. + Required String. The path and filename of the permission policy template file. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the name in email form of the author of the active document. + + + Returns or sets a Boolean value that indicates whether permissions are enabled on the active document. + + + Returns or sets the option that allows a user to view a document with restricted permissions in a web browser if the user does not have the appropriate client application installed. + + + + Returns a object that is a member of the collection. + Optional Object. The numeric index of the UserPermission in the Permission collection, or the email address of the user whose set of permissions on the active document is to be returned. + + + Returns the Parent object for the specified object. + + + Returns a Boolean value that indicates whether a permission policy has been applied to the active document. + + + Returns the description of the permissions policy applied to the active document. + + + Returns the name of the permissions policy applied to the active document. + + + Removes all objects from the collection of the active document and disables restrictions on the active document. + + + Returns or sets the file or web site URL to visit or the email address to contact for users who need additional permissions on the active document. + + + Returns a Boolean value that indicates whether the user's license to view the active document should be cached to allow offline viewing when the user cannot connect to a rights management server. + + + Provides dialog user interface functionality for picking people or picking data. + + + Gets a Application object that represents the container application for the PickerDialog object. + + + Creates an empty object. + Returns a . + + + Gets a 32-bit integer that indicates the application in which the PickerDialog object was created. + + + Sets or gets the GUID of the Picker Dialog data handler component. + + + Returns the object to specify custom properties for data handler component. + + + Resolves the token using the Picker Dialog and retrieves the results. + Returns . + The text string to resolve. + + + Displays the Picker Dialog with already specified data handler and given options. + Returns . + Specifies whether the Picker Dialog user interface provides multiple item selection functions. + Contains existing in Picker Dialog user interface. These results are displayed in the selected item control. + + + Gets or sets the title of a picker dialog displayed in the Picker Dialog. + + + Represents the field definitions of sub-items in a object. Each PickerField object represents a column definition of a Picker dialog. + + + Gets a Application object that represents the container application for the PickerField object. + + + Gets a 32-bit integer that indicates the application in which the PickerField object was created. + + + Gets a Boolean that specifies whether the Picker field is hidden. + + + Gets the name of the Picker field. + + + The type of the Picker field. + + + A collection of objects. Each PickerField object represents a column definition of Picker dialog. + + + Gets a object that represents the container application for the PickerFields object. + + + Retrieves the count of the number of objects contained within the PickerFields collection. + + + Gets a 32-bit integer that indicates the application in which the PickerFields object was created. + + + Returns an enumerator that iterates through the collection of objects. + Returns . + + + Gets a object at the specified index. + Specifies an integer representing the index of the . + + + A collection of objects. + + + Adds a object to the collection. + Returns . + Specifies the key name of the property. + Specifies the value of the property. + + that specifies the type of the property. + + + Gets a object that represents the container application for the PickerProperties object. + + + Gets the count of the number of objects contained within the PickerProperties collection. + + + Gets a 32-bit integer that indicates the application in which the PickerProperties object was created. + + + Returns an enumerator that iterates through the collection. + Returns . + + + Gets a object at the specified index. + Specifies an integer representing the index of the object. + + + Removes a from the collection. + Specifies the identifier of the to remove. + + + Represents an object for passing a custom property. + + + Gets a object that represents the container application for the PickerProperty object. + + + Gets a 32-bit integer that indicates the application in which the PickerProperty object was created. + + + Gets the unique identifier of the associated PickerProperty object. + + + Gets the type of the Picker property. + + + Gets the value of a Picker property. + + + Represents a resolved or selected item of data. + + + Gets a object that represents the container application for the PickerResult object. + + + Gets a 32-bit integer that indicates the application in which the PickerResult object was created. + + + Represents a display name of PickerResult. + + + Gets PickerResult collection if the result of resolving results has multiple candidates. + + + Gets the field definitions of sub items in a collection. + + + Retrieves the unique identifier of the associated PickerResult object. + + + Gets or sets a non-display purpose item binding to data. + + + Gets or sets the identifier for Office Communication Server. It is used only for people picking scenario. + + + Gets or sets display purpose or non-display purpose field data of a PickerResult object. It is used for passing column values in a Picker dialog. + + + Gets the type of a PickerResult object. + + + A collection of objects. + + + Adds a object to the PickerResults collection. + Returns . + Specifies the identifier of the . + Specifies the display name of the . + Specifies the type of the . + Currently not supported. The is the identifier for Office Communication Server. It is used only for the people picking scenario. + Specifies the non- displaying item binding data. + Displays the purpose or non-display purpose field data of the . It is used for passing column values in the Picker Dialog. + + + Gets a object that represents the container application for the PickerResults object. + + + Retrieves the count of the number of objects contained within the PickerResults collection. + + + Gets a 32-bit integer that indicates the application in which the PickerResults object was created. + + + Returns . + + + Gets a PickerResult object at the specified index. + Specifies an integer representing the indexed location of the object. + + + Represents a picture effect. + + + Gets a object that represents the container application for the PictureEffect object. + + + Gets a 32-bit integer that indicates the application in which the PictureEffect object was created. + + + Deletes a picture effect. + + + Gets an object. + + + Gets or sets the position of a picture effect in a chain of composite effects. + + + Gets the type of picture effect. + + + Gets or sets a Boolean value representing the visible state of the picture effect. + + + Represents a collection of objects. + + + Gets a object that represents the container application for the PictureEffects object. + + + Gets the count of the number of objects contained within the PictureEffects collection. + + + Gets a 32-bit integer that indicates the application in which the PictureEffects object was created. + + + Deletes a object from the collection. + Specifies the index number of the object to delete. + + + Returns . + + + Inserts a picture effect in a chain of composite effects. + Returns a . + An enumeration specifying the type of picture effect. + Specifies the position of the effect in the composite chain of picture effects. + + + Gets a object at the specified index. + Specifies an integer representing the indexed location of the object. + + + Reserved for internal use. + + + + + + + + An object used to remove a portion of an image. + Returns . + + + + + + + + + + + + A collection of all the objects in the specified series in a chart. + + + + Gets the Application object in which this object was created. Read-only. + Object + + + Returns the number of objects in the collection. + Integer. + + + Returns the ID of the application in which this object was created. + Integer + + + Returns . + + + Returns a single object from a collection. + A object contained by the collection. + The index number for the object. + + + Returns the parent object for the specified object. Read-only. + Returns . + + + Represents an item within a object that contains the settings for one policy. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the information that is used to implement the policy item. Read-only. + String + + + Gets a description of the current state of the policy item. Read-only. + String + + + Gets the ID of a policy item. objects are contained in objects. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Represents a single file search criterion. + + + Returns an Application object that represents the container application for the object. + + + Returns the condition of the specified search criteria. + + + Returns the connector between two similar property test values. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the name of the specified object. + + + Returns an optional second value property test (as in a range) for the file search. + + + Returns the value of a property test for a file search. + + + A collection of objects that represent all the search criteria of a file search. Search criteria are listed in the Advanced Find dialog box (File menu, Open command, Advanced Find button). + + + Add a new object to the collection representing the search criteria of a file search. + Required String. The name of the PropertyTest object. + Required . A constant representing the condition used for the search. + Optional Object. A value used by . + Optional Object. A second value used by . + Optional MsoCondition. A constant representinat a connector such as Or or And used in the criterion. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Optional Integer. The index number of the property test to be returned. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Represents the reflection effect in Office graphics. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets or sets the amount of blur, measured in points, of the shape's reflection image. + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the amount of separation, measured in points, of the reflected image from the shape. + + + Gets or sets the size, measured in percentages, of the shape's reflection image. + + + Gets or sets the amount of transparency, measured in percentages, of the shape's reflection image. + + + Gets or sets the type of the object. Read/write. + + + + + + + + + + + + + Represents the ruler for the text in the specified shape or for all text in the specified text style. Contains tab stops and the indentation settings for text outline levels. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets a object that represents outline text formatting. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets a collection that represents the tab stops for the specified text. Read-only. + + + + + + Contains first-line indent and hanging indent information for an outline level. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the first-line indent for the specified outline level, in points. Read/write. + Single + + + Gets or sets the left indent for the specified outline level, in points. Read/write. + Single + + + Gets the parent object for the object. Read-only. + Object + + + A collection of all the objects on the specified ruler. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Integer indicating the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a member of the collection. + + + + The index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Corresponds to a searchable folder. + + + Adds a object the collection. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the name of the specified object. + + + Returns a String indicating the full path of a object. + + + Returns a collection. + + + A collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that represents a subfolder of the parent object. + Required Integer. Determines which subfolder to return. + + + Represents a block of HTML script in a Microsoft Word document, on a Microsoft Excel spreadsheet, or on a Microsoft PowerPoint slide. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Returns or sets attributes added to the <SCRIPT> tag, with the exception of the LANGUAGE and ID attributes. + + + Returns or sets the ID of a object. + + + Returns or sets the scripting language of the active script. + + + Returns the location of the script anchor in the specified HTML document. + + + Returns the Parent object for the specified object. + + + Returns or sets the text contained in a block of script. + + + Returns a Shape object or InlineShape object, depending on the Microsoft Office host application. + + + A collection of objects that represent the collection of HTML scripts in the specified document. + + + Adds a object to the collection of one of the following objects: a Document or Range object in Microsoft Word; a Worksheet or Chart object in Microsoft Excel; or a Slide, SlideRange, slide Master, or title Master object in Microsoft PowerPoint. + Optional Object (Microsoft Excel only). The argument accepts an Excel Range object, which specifies the placement of the script anchor on an Excel Worksheet. You cannot insert script anchors into Excel charts. + Optional . Specifies the location of the script anchor in a document. If you’ve specified the argument, the argument isn’t used; the location of the argument determines the location of the script anchor. + Optional . Specifies the script language. + Optional String. The ID of the <SCRIPT> tag in HTML. The argument specifies an SGML identifier used for naming elements. Valid identifiers include any string that begins with a letter and is composed of alphanumeric characters; the string can also include the underscore character ( _ ). The ID must be unique within the HTML document. This parameter is exported as the ID attribute in the <SCRIPT> tag. + Optional String. Specifies attributes that are to be added to the <SCRIPT> tag (LANGUAGE and ID attributes are exported through the and parameters and should not be exported through the parameter). The default is the empty string. Attributes are separated by spaces, the same as in HTML. The Microsoft Office host application doesn’t provide any means of checking the syntax of passed attributes. + Optional String. Specifies the text contained in a block of script. The default is the empty string. The Microsoft Office host application doesn’t check the syntax of the script. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + + Returns a member of the collection. + Required Object. The ID or index number of the script to be returned. + + + Returns the Parent object for the specified object. + + + A collection of objects that determines which folders are searched when the method of the object is called. + + + Adds a search folder to a file search. + Required . The folder to add to the search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that represents a subfolder of the parent object. + Required Integer. Determines which subfolder to return. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Corresponds to a type of folder tree that can be searched by using the object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a object. + + + Returns a value that corresponds to the type of object. + + + A collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that corresponds to an area in which to perform a file search, such as local drives or Microsoft Outlook folders. + Required Integer. Determines which SearchScope object to return. + + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + Represents a policy specified for a document type stored on a server running Office SharePoint Server 2007. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Boolean value that indicates whether you can preview items using this policy. Read-only. + Boolean + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + A description of what the server policy is and its purpose. Read-only. + String + + + Gets the ID of a server policy. Read-only. + String + + + Gets a object from the collection. Read-only. + PolicyItem + The name or index number of the PolicyItem object to be returned. + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets the information specified in the Policy Statement. Read-only. + String + + + Reserved for internal use. + + + + Returns or sets the degree of blurriness of the specified shadow. Read/write. + Single + + + + + + + + + + + Returns or sets an that represents whether to rotate the shadow when rotating the shape. Read/write. + + + + + + Returns or sets the size of the specified shadow. Read/write. + Single + + + Returns or sets the style of the specified shadow. Read/write. + + + + + + + + + Reserved for internal use. + + + + + + + + Returns or sets the background style. Read/write. + + + + + + + + + + + + + Returns the chart contained in the shape. Read-only. + + + + + + + + + + + Copies the object to the Clipboard. + + + + Cuts the object to the Clipboard or pastes it into a specified destination. + + + + + + + + + Returns a object for a specified shape that contains glow formatting properties for the shape. Read-only. + + + + + + + Returns whether a shape contains a chart. Read-only. + + + + + + + + + + + + + + + + + + + + + + + + Returns a object for a specified shape that contains reflection formatting properties for the shape. Read-only. + + + + + + + + + + + + + + + Returns or sets an that represents the shape style of shape range. Read/write. + + + + + + Gets top-level class for interacting with a SmartArt graphic. + + + Returns a object for a specified shape that contains soft edge formatting properties for the shape. Read-only. + + + + + + + + Returns a object that contains text formatting for the specified shape. Read-only. + + + + + + + Sets or gets the title of a file dialog box displayed using the object. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A SharedWorkspace object allows the developer to add the active document to a Microsoft Windows SharePoint Services document workspace on the server and to manage other objects in the shared workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a Boolean value that indicates whether or not the active document is currently saved in and connected to a shared workspace. + + + Creates a new document workspace on the server and adds the active document to the new shared workspace. + Optional String. The URL for the parent folder in which the new shared workspace is to be created. If you do not supply a URL, the new shared workspace is created in the user's default server location. + Optional String. The name of the new shared workspace. Defaults to the name of the active document without its file extension. For example, if you create a shared workspace for Budget.xls, the name of the new shared workspace becomes "Budget". + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current shared workspace and all data within it. + + + Disconnects the local copy of the active document from the shared workspace. + + + Returns a collection that represents the list of files stored in the document library associated with the current shared workspace. + + + Returns a collection that represents the list of subfolders in the document library associated with the current shared workspace. + + + Returns the date and time when the method was most recently called. + + + Returns a collection that represents the list of links saved in the current shared workspace. + + + Returns a collection that represents the list of members in the current shared workspace. + + + Returns or sets the name of the specified object. + + + Returns the Parent object for the specified object. + + + Refreshes the local cache of the object's files, folders, links, members, and tasks from the server. + + + Removes the active document from the shared workspace. + + + Designates the location of the public copy of a shared document to which changes should be published after the document has been revised in a separate document workspace. + + + Returns a collection that represents the list of tasks in the current shared workspace. + + + Returns the top-level Uniform Resource Locator (URL) of the shared workspace. + + + The SharedWorkspaceFile object represents a file saved in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns the Parent object for the specified object. + + + Returns the full uniform resource locator (URL) and file name of the shared workspace file. + + + A collection of the objects in the current shared workspace. + + + Adds a file to the document library in a shared workspace. + Required String. The path and filename of the file to be added to the current shared workspace. + Optional . The subfolder in which to place the file, if not the main document library folder within the shared workspace. Add the file to the main document library folder by leaving this optional argument empty. + Optional Boolean. True to overwrite an existing file by the same name. Default is False. + Optional Boolean. True to keep the local copy of the document synchronized with the copy in the shared workspace. Default is False. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Files collection of the shared workspace. + Optional Integer. Returns the SharedWorkspaceFile at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceFolder object represents a folder in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current shared workspace folder and all data within it. + Optional Boolean. True to delete the folder without warning even if the folder contains files. Default is False. + + + Returns the name of a subfolder within the main document library folder of a shared workspace. + + + Returns the Parent object for the specified object. + + + A collection of the objects in the current shared workspace. + + + Adds a folder to the document library in a shared workspace. + Required String. The name of the folder to be added to the current shared workspace. + Optional . The subfolder in which to place the new folder, if not the main document library folder within the shared workspace. Add the folder to the main document library folder by leaving this optional argument empty. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Folders collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceFolder at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceLink object represents a URL link saved in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns or sets a descriptive String value for the specified object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns or sets the optional notes associated with a shared workspace link. + + + Returns the Parent object for the specified object. + + + Uploads changes made programmatically to a to the server. + + + Returns or sets the uniform resource locator (URL) of the link saved in the shared workspace. + + + A collection of the objects in the current shared workspace. + + + Adds a link to the list of links in a shared workspace. + Required Object. The URL of the web site to which a link is being added. + Optional Object. Optional description of the link. + Optional String. Optional notes about the link. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Links collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceLink at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceMember object represents a user who has rights in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns the domain and user name of the specified in the format domain\user. + + + Returns the email name of the specified in the format user@domain.com. + + + Reserved for internal use. + + + Returns the name of the specified object. + + + Returns the Parent object for the specified object. + + + A collection of the objects in the current shared workspace. + + + Adds a member to the list of members in a shared workspace. + Required String. The new member's email address in the format . Raises an error if the user is not a valid candidate for membership in the shared workspace. + Required String. The new member's Windows user name in the format . + Required String. The friendly name to display for the new member. + Optional String. An optional role that determines the tasks the new member can accomplish in the shared workspace; for example, "Contributor". An invalid role name raises an error. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Members collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceMember at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceTask object represents a task in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the to whom the task is assigned. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns or sets a descriptive String value for the specified object. + + + Returns or sets the optional due date and time of a object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns the Parent object for the specified object. + + + Returns or sets the status of the specified shared workspace task. + + + Uploads changes made programmatically to a to the server. + + + Returns or sets the status of the specified shared workspace task. + + + Returns or sets the title of a object. + + + A collection of the objects in the current shared workspace. + + + Adds a task to the list of tasks in a shared workspace and returns a object. + Required String. The title of the new task. + Optional . The status of the new task. Default is msoSharedWorkspaceTaskStatusNotStarted. + Optional . The priority of the new task. Default is msoSharedWorkspaceTaskPriorityNormal. + Optional . The member to whom the new task is assigned. + Optional String. The description of the new task. + Optional Date. The due date of the new task. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Tasks collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceTask at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + Corresponds to a digital signature that is attached to a document. + + + Returns an Application object that represents the container application for the object. + + + Determine if the digital certificate that corresponds to the specified object is attached to the document. + + + Gets a Boolean value indicating whether the user can set properties of the object. Read-only. + Boolean + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Gets information about a signature. Read-only. + + + + + + Returns an Object representing the date on which the digital signature that corresponds to the object will expire. + + + Determine if the digital certificate that corresponds to the object has expired. + + + Determine if the digital certificate that corresponds to the object has been revoked by the issuer of the certificate. + + + Gets a value indicating whether this is a signature line. Read-only. + Boolean + + + Gets a Boolean value indicating whether the document was signed successfully. Read-only. + Boolean + + + Returns a String representing the name of the issuer of the digital certificate that corresponds to the object. + + + Determines if the digital signature that corresponds to the object is a valid signature. + + + Returns the Parent object for the specified object. + + + Gets a object that provides access to various properties of a signature packet. Read-only. + SignatureSetup + + + Displays details related to a signature packet. + + + Creates a signature packet. + The signature line graphic image. + The suggested signer. + The additional signature line. + The e-mail address of the suggested signer. + + + Gets the object associated with a object that is a signature line. Read-only. + Object + + + Returns an Object representing the date and time that the digital certificate corresponding to the object was attached to the document. + + + Returns a String representing the name of the person who attached the digital certificate that corresponds to the object to the document. + + + Gets a value representing the sort order of the signatures in a packet with multiple signatures. Read-only. + Integer + + + Indicates additional information about a signature. + + + Specifies the local signing time. + + + Specifies the application name. + + + Specifies the application version. + + + Specifies the Office version. + + + Specifies the Windows version. + + + Specifies the number of monitors + + + Specifies the horizontal resolution. + + + Specifies the vertical resolution. + + + Specifies the color depth. + + + Specifies the signed data. + + + Specifies the document preview image. + + + Specifies the IP form hash. + + + Specifies the IP current view. + + + Specifies the signature type. + + + Specifies the hash algorithm. + + + Specifies the Should Show View Warning setting. + + + Specifies the suggested signer delegate. + + + Specifies the set of suggested signer's delegates. + + + Specifies the suggested signer's delegate's signature line. + + + Specifies the set of suggested signer's delegate's signature lines. + + + Specifies the suggested signer's delegate's e-mail. + + + Indicates whether an email for a suggested signer delegate has been specified. + + + Represents the information used to create a digital or in-document signature. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the results from the verification of a digital certificate. Read-only. + + + + + + Gets a value representing the results of the verification of the hashed contents of a signed document. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Displays a specified detail related to a digital certificate. + Object + An enumerated value specifying which certificate detail to display. + + + Displays a specified detail related to a signature. + Object + An enumerated value specifying which signature detail to display. + + + Gets a Boolean value indicating whether the digital certificate is expired. Read-only. + Boolean + + + Gets a Boolean value indicating whether the digital certificate is revoked. Read-only. + Boolean + + + Gets a Boolean value indicating whether the digital certificate used to digitally sign a document comes from a trusted source. Read-only. + Boolean + + + Gets a Boolean value indicating whether the signature was successfully validated following signature verification. Read-only. + Boolean + + + Gets a Boolean value indicating whether the object is read-only. Read-only. + Boolean + + + Displays a dialog box containing information about a digital certificate following vertification of the user from a thumbprint. + Contains information about the signer identified by the thumbprint. + + + Displays a dialog box that allows users to select which signature certificate to use for signing a document. + Contains a handle to the window containing the certificate selection dialog box. + + + Displays the selected or default digital certificate. + Contains the handle to the window containing the Certificate dialog box. + + + Gets or sets a value containing comments included in a signature packet. Read/write. + String + + + Gets or sets the value of the image used to sign the document. Read/write. + IPictureDisp + + + Gets a value identifying an installed signature provider add-in. Read-only. + String + + + Gets or sets the value of the signature text used to sign this document. Read/write. + String + + + Indicates the signature line image. + + + The SoftwareRequired image. + + + The Unsigned image. + + + The SignedValid image. + + + The SignedInvalid image. + + + + + + Represents a signature provider add-in. + + + Gets a signature line image. + IPictureDisp + Contains the name if the signature line graphic. + Specifies initial settings of the signature provider add-in. + Specifies information about the signature provider add-in. + + + Queries the signature provider add-in for various details. + Object + Contains an enumerated value representing the type of information to query the add-in for. + + + Allows a signature provider add-in to create a hash value for the document that you can use to determine if the document contents were tampered with after digital signing. + Array + Provides a way to query the host application for permission to continue the hashing process. + Contains the data stream. + + + Used to display a dialog box informing the user that the signing process has completed and providing additional functionality for the add-in. + Allows the host application to obtain the handle to the window containing the displayed dialog box. + Contains initial settings of the signature provider. + Contains information about the signature provider add-in. + + + Provides a signature provider add-in the opportunity to display details about a signed signature line and display additional stored information such as a secure time-stamp. + Contains the handle to the window containing the signature details. + Specifies initial settings of the signature provider. + Specifies information about the signed signature line. + Represents a steam of data or binary large object of XML. + Contains a value representing the results of verificating the signature content. + Contains a value representing the results of verificating the signing certification. + + + Provides a signature provider add-in the opportunity to display the Signature Setup dialog box to the user. + Contains the handle to the window containing the Signature Setup dialog box. + Specifies initial settings of the signature provider. + + + Provides a signature provider add-in the opportunity to display the Signature dialog box to users, allowing them to specify their identity and then be authenticated. + Contains the handle to the window containing the Signature dialog box. + Specifies initial settings of the signature provider. + Specifies information about the signature provider. + + + Used to sign the XMLDSIG template. + Provides a way to query the host application for permission to continue the verification operation. + Specifies configuration information about a signature line. + Specifies information captured from the signing ceremony. + Represents a steam of data containing XML, which represents an XMLDSIG object. + + + Verifies a signature based on the signed state of the document and the legitimacy of the certificate used for signing. + Provides a way to query the host application for permission to continue the verification operation. + Specifies configuration information about a signature line. + Specifies information captured from the signing ceremony. + Represents a steam of data containing XML, which represents an XMLDSIG object. + Specifies the status of the signature verification action. + Specifies the status of the signing certificate verification. + + + Specifies properties of a signature provider. + + + The URL of the signature provider. + + + Hash algorithm used to hash the data in the file. + + + + Indicates that the signature provider only uses a custom user interface. + + + + + + + + + A collection of objects that correspond to the digital signatures attached to a document. + + + Returns a object that represents a new e-mail signature. + + + Creates a signature packet when digitally signing a document. + + + + Represents the ID of the signature provider. + + + Adds lines to a document where signatures are collected. + Signature + Represents the ID of the signature provider. + + + Returns an Application object that represents the container application for the object. + + + Gets a Boolean value indicating whether you can add a signature line to a document. Read-only. + Boolean + + + Commits all changes of the specified collection to disk. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that corresponds to one of the digital signatures with which the document is currently signed. + Required Integer. Determines which Signature object to return. + + + Returns the Parent object for the specified object. + + + Gets or sets a Boolean value indicating whether the Signature task pane should be displayed. Read/write. + Boolean + + + Gets or sets a value that acts as a filter on the available objects for a document. Read/write. + + + + + + Represents the information used to set up a signature packet. + + + Gets or sets any additional XML information added to the signature during setup. Read/write. + String + + + Gets or sets a Boolean value specifying whether the signer can enter comments in the Sign dialog box. Read/write. + Boolean + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the ID of the signature provider for a document. Read-only. + String + + + Gets a Boolean value indicating whether the object is read-only. Read-only. + Boolean + + + Gets or sets a Boolean value indicating whether the date the document was signed should be displayed. Read/write. + Boolean + + + Gets a value identifying an installed signature provider add-in. Read-only. + String + + + Gets or sets the instructions for signing the document. Read/write. + String + + + Gets or sets the name of the principle signer of the document. Read/write. + String + + + Gets or sets the e-mail address of the signer of the document. Read/write. + String + + + Gets or sets the second line of suggested signer information (for example, title). Read/write. + String + + + Specifies properties of a signature. + + + A signature not generated by Office. + + + + A signature that is not visible in the content of the document. + + + + A signature that is visible in the content of the document. + + + Specifies the maximum number of the signature types available in the current version of Office. + + + The top level class for interacting with a SmartArt graphic. Specifies constants that define the types of SmartArt nodes. + + + Gets a object containing all of the nodes within the SmartArt diagram. + + + Gets a object that represents the container application for the SmartArt object. + + + Gets or sets the Smart Art color style applied to the Smart Art graphic. + + + Gets a 32-bit integer that indicates the application in which the SmartArt object was created. + + + Gets or sets the Smart Art layout associated with the Smart Art graphic. + + + Gets the children of the root node of the SmartArt diagram. + + + Gets the calling object. + + + Gets or sets the SmartArt quick style applied to the SmartArt graphic. + + + Resets the SmartArt graphic to its original state. + + + Gets or sets the state of the SmartArt diagram with regard to (left-to-right) LTR or (right-to-left) RTL, if the diagram supports reversal. + + + Represents the color scheme for the SmartArt diagram. + + + Gets an Application object that represents the container application for the SmartArtColor object. + + + Retrieves the primary category name associated with the SmartArt color style. + + + Returns a 32-bit integer that indicates the application in which this object was created. + + + Returns the description of the SmartArt color style. + + + Returns the unique identifier of the associated SmartArt color style. + + + Returns the string name of the SmartArt color style. + + + Returns the calling object. + + + A collection of SmartArt color styles. + + + Gets a object that represents the container application for the SmartArtColors object. + + + Gets the count of the number of SmartArtColor objects contained within the SmartArtColors collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtColors object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the identifier of the SmartArt color. + + + Returns the calling object. + + + Represents a SmartArt diagram. + + + Gets a object that represents the container application for the SmartArtLayout object. + + + Gets the primary category name associated with the SmartArt layout. + + + Gets a 32-bit integer that indicates the application in which the SmartArtLayout object was created. + + + Gets the description of the SmartArt layout. + + + Retrieves the unique identifier of the associated SmartArt layout. + + + Gets the string name of the SmartArt layout. + + + Gets the calling object. + + + Represents a collection of SmartArt layout diagrams. + + + Gets a object that represents the container application for the SmartArtLayouts object. + + + Gets the count of the number of objects contained within the SmartArtLayouts collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtLayouts object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the location of the object. + + + Gets the calling object. + + + A single semantic node within the data model of a SmartArt graphic. + + + Adds a new SmartArt node to the data model in the way specified by the value, and . + Specifies the location of the SmartArtNode in the data model. For example, or . + Specifies the type of the added SmartArtNode. For example, or . + + + Gets an Application object that represents the container application for the SmartArtNode object. + + + Gets a 32-bit integer that indicates the application in which the SmartArtNode object was created. + + + Removes the current SmartArt node. + + + Demotes the current node a single level within the data model. + + + Returns true if this node is a hidden node in the data model. + + + Increases the size of the SmartArt. Mimics the behavior of the Larger button on the Microsoft Office Fluent Ribbon Format tab for SmartArt. + + + Returns the node’s level in the hierarchy. + + + Returns the child nodes associated with this SmartArt Node. + + + Returns or sets the associated with this node if there is one. + + + Gets the calling object. + + + Returns the parent SmartArtNode of this SmartArtNode. + + + Promotes the current node (and all its children) a single level within the data model. + + + Swaps a node with the next node in the bulleted list. This method reorders the node’s entire family. + + + Swaps a node with the previous node in the bulleted list. This method reorders the node’s entire family. + + + Returns the shape range associated with this SmartArtNode object. + + + Decreases the size of the SmartArt. Mimics the behavior of the Smaller button on the Microsoft Office Fluent Ribbon UI Format tab for SmartArt. + + + Returns the text associated with the SmartArtNode object. + Returns a . + + + Returns the type of SmartArt node. + + + Represents a collection of nodes within a SmartArt diagram. + + + Adds a new object to the diagram with specified text. + + + Gets a object that represents the container application for the SmartArtNodes object. + + + Gets the number of objects contained within the SmartArtNodescollection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtNodes object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or a string the location of the object. + + + Gets the calling object. + + + Represents a SmartArt quick style + + + Gets a object that represents the container application for the SmartArtQuickStyle object. + + + Gets the primary category name associated with the SmartArt quick style. + + + Gets a 32-bit integer that indicates the application in which the SmartArtQuickStyle object was created. + + + Gets the description of the SmartArt quick style. + + + Gets the unique identifier of the associated SmartArt quick style. + + + Gets the string name of the SmartArt quick style. + + + Returns the calling object. + + + Represents a collection of SmartArt quick styles. + + + Gets a object that represents the container application for the SmartArtQuickStyles object. + + + Gets the count of the number of objects contained within the SmartArtQuickStyles collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtQuickStyles object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the location of the object. + + + Gets the calling object. + + + The SmartDocument property of the Microsoft Office Word 2003 Document object and the Microsoft Office Excel 2003 Workbook object returns a SmartDocument object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Displays a dialog box which allows the user to choose an available XML expansion pack to attach to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + Optional Boolean. True displays all available XML expansion packs installed on the user's computer. False displays only XML expansion packs applicable to the active document. Default value is False. + + + Refreshes the Document Actions task pane for the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Returns or sets the ID, often a globally unique identifier (GUID), which identifies the XML expansion pack attached to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Returns or sets an absolute URL that provides the complete path to the XML expansion pack file attached to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Represents the soft edges effect in Office graphics. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the size, measured in points, of the soft edge effect of the shape. + + + Gets or sets the type of the object. Read/write. + + + + + + Use the Sync object to manage the synchronization of the local and server copies of a shared document stored in a Windows SharePoint Services document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a constant which indicates the type of the most recent document synchronization error. + + + Compares the local version of the shared document to the version on the server. + + + Returns the date and time when the local copy of the active document was last synchronized with the server copy. + + + Opens a different version of the shared document alongside the currently open local version. + Required . + + + Returns the Parent object for the specified object. + + + Updates the server copy of the shared document with the local copy. + + + Resolves conflicts between the local and the server copies of a shared document. + Required . + + + Returns the status of the synchronization of the local copy of the active document with the server copy. + + + Resumes synchronization between the local copy and the server copy of a shared document. + + + Displays the friendly name of the user who last saved changes to the server copy of a shared document. + + + Represents a single tab stop. The TabStop2 object is a member of the collection. + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Removes the specified custom tab stop + + + Gets a 32-bit integer that represents the Microsoft Office application in which the + + object was created. Read-only. + Integer + + + Gets the parent of the object. + +Read-only. + Object + + + Gets or sets the position of a tab stop relative to the left margin. Read/write. + Single + + + Gets or sets the type of the object. Read/write. + + + + + + The collection of objects. + + + Adds a new tab stop to the specified object. + + + + The type of tab stop to add. + The horizontal position of the new tab stop relative to the left edge of the text frame. Numeric values are evaluated in points; strings are evaluated in the units specified and can be in any measurement unit supported by the Microsoft Office product. + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Gets the number of items in the + + collection. Read-only. + Integer + + + Gets a 32-bit integer that represents the Microsoft Office application in which the + + object was created. Read-only. + Integer + + + Gets or sets the default spacing between tab stops. Read/write. + Single + + + + Gets an individual object from the collection. + + + + The number of the object to return. + + + Gets the parent of the specified object. Read-only. + Object + + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the + + object was created. Read-only. + Integer + + + Gets or sets the index of the object. Read/write + Integer + + + Gets or sets the spacing between text columns in a object. Read/write. + Single + + + Gets or sets the direction of text in the object. Read/write. + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + Returns or sets a value that specifies if the text on a shape is rotated if the shape itself is being rotated. + + + + + + + + + + + + + Represents the text frame in a Shape or ShapeRange objects. + + + Adds period (.) punctuation to the right side of the text contained in object for left-to-right languages and on the left side for right-to-left languages. + + + Used without an object qualifier, this property returns an Application + object that represents the current instance of the Microsoft Office application. Used with an object qualifier, this property returns an Application object that represents the creator of the object. When used with an OLE Automation object, it returns the object's application. Read-only. + Object + + + Gets the height, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the left coordinate, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the top coordinate, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the width, in points, of the text bounding box for the specified text. Read-only. + Single + + + Changes the case of a object to one of the values in the enumeration. + Specifies the type of change to make to the text. + + + Read-only. + + + + The first character in the returned range. + The number of characters to be returned. + + + Copies a object. + + + Gets the number of items in the + + collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the + + object was created. Read-only. + Integer + + + Removes a portion or all of the text from a range of text. + + + Deletes a object. + + + Searches a object for a subset of text. + TextRange2 + Contains the text to find. + Specifies the point in the text range to start the search. + Specifies if the target text must exactly match the case of the search text. + Specifies that only whole words will be searched. + + + Returns a Font + object that represents character formatting for the object. Read-only. + Font + + + + Inserts text to the right of the existing text in the object. + TextRange2 + Contains the text to be inserted. + + + Inserts text to the left of the existing text in the object. + TextRange2 + Contains the text to be inserted. + + + Inserts a symbol from the specified font set into the range of text represented by the object. + TextRange2 + The name of the font set. + The number of the symbol. + Indicates whether the value of the symbol is specified as a unicode value. + + + Gets the range of text specified by the index number from the object. + TextRange2 + The index number of the text range. + + + Gets or sets the value of the object. Read/write. + MsoLanguageID + + + Gets the length of a text range. Read-only. + Integer + + + Returns the specified subset of text lines. Read-only. + + + + The first line in the returned range. + The number of lines to be returned. + + + Returns a object that represents the specified subset of left-to-right text runs. A text run consists of a range of characters that share the same font attributes. + + + + Returns the paragraph formatting for the specified text. Read-only. + + + + + + Gets the specified subset of text paragraphs. Read-only. + + + + The first paragraph in the returned range. + The number of paragraphs to be returned. + + + Gets the parent object for the object. + +Read-only. + Object + + + Pastes the contents of the Clipboard into the object. + TextRange2 + + + Replaces the text range with the contents of the Clipboard in the format specified. If the paste succeeds, this method returns a object including the text range that was pasted. + TextRange2 + Determines the format for the Clipboard contents when they're inserted into the document. + + + Removes all period (.) punctuation from the text in the object. + + + Finds specific text in a text range, replaces the found text with a specified string, and returns a object that represents the first occurrence of the found text. Returns Nothing if no match is found. + TextRange2 + The text to search for. + The text you want to replace the found text with. + The position of the character (in the specified text range) after which you want to search for the next occurrence of . For example, if you want to search from the fifth character of the text range, specify 4 for . If this argument is omitted, the first character of the text range is used as the starting point for the search. + Determines whether a distinction is made on the basis of case. + Determines whether only whole words are searched. + + + Gets the coordinates of the vertices of the text bounding box for the specified text range. Read-only. + Returns the position (in points) of the X coordinate of the first vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the first vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the second vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the second vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the third vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the third vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the fourth vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the fourth vertex of the bounding box for the text within the specified text range. + + + Returns a object that represents the specified subset of right-to-left text runs. A text run consists of a range of characters that share the same font attributes. + + + Gets the specified subset of text runs. A text run consists of a range of characters that share the same font attributes. Read-only. + + + + The first run in the returned range. + The number of runs to be returned. + + + Selects the object. + + + Returns the specified subset of text sentences. Read-only. + + + + The first sentence in the returned range. + The number of sentences to be returned. + + + Gets the starting point of the specified text range. Read-only. + Integer + + + Gets or sets a String value that represents the text in a text range. Read/write. + String + + + Returns the specified text minus any trailing spaces. + + + + + + Gets the specified subset of text words. Read-only. + + + + The first word in the returned range. + The number of words to be returned. + + + Represents a color in the color scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets a value of a color in the color scheme of a Microsoft Office theme. Read/write. + MsoRGBType + + + Gets the index value for a color scheme of a Microsoft Office theme. Read-only. + + + + + + Represents the color scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets an object that represents a color in the color scheme of a Microsoft Office theme. + ThemeColor + The index value of the object. + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets a value that represents a color in the color scheme of a Microsoft Office theme. + MsoRGBType + The name of the custom color. + + + + Loads the color scheme of a Microsoft Office theme from a file. + The name of the color theme file. + + + Gets the parent object for the object. Read-only. + Object + + + Saves the color scheme of a Microsoft Office theme to a file. + The name of the file. + + + Represents the effects scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Loads the effects scheme of a Microsoft Office theme from a file. + The name of the effect scheme file. + + + Gets the parent object for the object. Read-only. + Object + + + Represents a container for the font schemes of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the name of a font in the font scheme of a Microsoft Office theme. Read/write. + String + + + Gets the parent object for the object. Read-only. + Object + + + Represents a collection of major and minor fonts in the font scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets one of the three language fonts contained in the collection. + ThemeFont + The index value of the object. + + + Gets the parent object for the object. Read-only. + Object + + + Represents the font scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Loads the font scheme of a Microsoft Office theme from a file. + The name of the font scheme file. + + + Gets the font setting for the "Headings" in a document. Read-only. + + + + + + Gets the font settings for the "Body" of a document. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Saves the font scheme of a Microsoft Office theme to a file. + The name of the file. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns or sets the project text state for the specified object. Read/write + + + + + + + + + + + + + + Returns the Z order of the specified object. Read/write. + Single + + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + The UserPermission object associates a set of permissions on the active document with a single user and an optional expiration date. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the optional expiration date of the permissions on the active document assigned to the user associated with the specified object. + + + Returns the Parent object for the specified object. + + + Returns or sets an Integer value representing the permissions on the active document assigned to the user associated with the specified object. + + + Removes the specified object from the collection of the active document. + + + Returns the email name of the user whose permissions on the active document are determined by the specified object. + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + Represents the default font used when documents are saved as Web pages for a particular character set. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the fixed-width font setting in the host application. + + + Returns or sets the fixed-width font size setting in the host application in points. + + + Returns or sets the proportional font setting in the host application. + + + Returns or sets the proportional font size setting in the host application in points. + + + A collection of objects that describe the proportional font, proportional font size, fixed-width font, and fixed-width font size used when documents are saved as Web pages. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection for a particular value of . + Required . The specified character set. + + + Represents a single workflow task in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the name of the person that the workflow task is assigned to. Read-only. + String + + + Gets the name of the person that created the workflow task. Read-only. + String + + + Gets the date that a workflow task was created. Read-only. + DateTime + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of a workflow task. Read-only. + String + + + Gets the date that a workflow task is due. Read-only. + DateTime + + + Gets the ID of the Sharepoint list item. Read-only. + String + + + Gets the ID of the list containing the workflow task. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Displays a workflow task edit user interface for the specified object. + Integer + + + Gets the ID of the workflow associated with a workflow task. Read-only. + String + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + WorkflowTask + The index number of the WorkflowTask object to be returned. + + + Represents one of the workflows available for the current document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of a workflow template. Read-only. + String + + + Gets the name of the document library associated with the workflow template. Read-only. + String + + + Gets the URL address of the document library where workflow templates are stored. Read-only. + String + + + Gets the ID of a template used to create a workflow instance. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Displays a workflow specific configuration user interface for the specified object. + Integer + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Long indicating the number of items in the WorkflowTemplates collection. Read-only. + Long + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + WorkflowTemplate + The index number of the WorkflowTemplate object to be returned. + + + Specifies the point on the specified axis where the other axis crosses. + + + Microsoft Excel sets the axis crossing point. + + + The CrossesAt property specifies the axis crossing point. + + + The axis crosses at the maximum value. + + + The axis crosses at the minimum value. + + + Specifies the type of axis group. + + + Primary axis group. + + + Secondary axis group. + + + Specifies the axis type. + + + Axis displays categories. + + + Axis displays data series. + + + Axis displays values. + + + Specifies the shape used with the 3-D bar or column chart. + + + Box. + + + Pyramid, coming to point at value. + + + Pyramid, truncated at value. + + + Cylinder. + + + Cone, coming to point at value. + + + Cone, truncated at value. + + + Specifies the weight of the border around a range. + + + Hairline (thinnest border). + + + Medium. + + + Thick (widest border). + + + Thin. + + + Specifies the type of the category axis. + + + Axis groups data by an arbitrary set of categories. + + + Axis groups data on a time scale. + + + Excel controls the axis type. + + + Specifies the position of the chart element. + + + Automatically sets the position of the chart element. + + + Specifies a specific position for the chart element. + + + Specifies the type of the chart item. + + + Data label. + + + Chart area. + + + Series. + + + Chart title. + + + Walls. + + + Corners. + + + Data table. + + + Trend line. + + + Error bars. + + + X error bars. + + + Y error bars. + + + Legend entry. + + + Legend key. + + + Shape. + + + Major gridlines. + + + Minor gridlines. + + + Axis title. + + + Up bars. + + + Plot area. + + + Down bars. + + + Axis. + + + Series lines. + + + Floor. + + + Legend. + + + HiLo lines. + + + Drop lines. + + + Radar axis labels. + + + Nothing. + + + Leader lines. + + + Display unit label. + + + PivotChart field button. + + + PivotChart drop zone. + + + + + + + + + + + + + + + + Specifies how pictures are displayed on a column, bar picture chart, or legend key. + + + Picture is sized to a specified number of units and repeated the length of the bar. + + + Picture is sized to repeat a maximum of 15 times in the longest stacked bar. + + + Picture is stretched the full length of stacked bar. + + + Specifies the values displayed in the second chart in a pie chart or a bar of pie chart. + + + Second chart displays the smallest values in the data series. The number of values to display is specified by the SplitValue property. + + + Second chart displays values less than some percentage of the total value. The percentage is specified by the SplitValue property. + + + Arbitrary slides are displayed in the second chart. + + + Second chart displays values less than the value specified by the SplitValue property. + + + Specifies the chart type. + + + 3D Clustered Column + + + Stacked Column + + + 100% Stacked Column + + + 3D Clustered Column + + + 3D Stacked Column + + + 3D 100% Stacked Bar + + + Clustered Bar + + + Stacked Bar + + + 100% Stacked Bar + + + 3D Clustered Bar + + + 3D Stacked Bar + + + 3D 100% Stacked Bar + + + Stacked Line + + + 100% Stacked Line + + + Line with Markers + + + Stacked Line with Markers + + + 100% Stacked Line with Markers + + + Pie of Pie + + + Exploded Pie + + + Exploded 3D Pie + + + Bar of Pie + + + Scatter with Smoothed Lines + + + Scatter with Smoothed Lines and No Data Markers + + + Scatter with Lines + + + Scatter with Lines and No Data Markers + + + Stacked Area + + + 100% Stacked Area + + + 3D Stacked Area + + + 100% Stacked Area + + + Exploded Doughnut + + + Radar with Data Markers + + + Filled Radar + + + 3D Surface + + + 3D Surface (wireframe) + + + Surface (Top View) + + + Surface (Top View wireframe) + + + Bubble + + + Bubble with 3D effects + + + High-Low-Close + + + Open-High-Low-Close + + + Volume-High-Low-Close + + + Volume-Open-High-Low-Close + + + Clustered Cone Column + + + Stacked Cylinder Bar + + + 100% Stacked Cylinder Column + + + Clustered Cylinder Bar + + + Stacked Cylinder Bar + + + 100% Stacked Cylinder Bar + + + 3D Cylinder Column + + + Clustered Cone Column + + + Stacked Cone Column + + + 100% Stacked Cone Column + + + Clustered Cone Bar + + + Stacked Cone Bar + + + 100% Stacked Cone Bar + + + 3D Cone Column + + + Clustered Pyramid Column + + + Stacked Pyramid Column + + + 100% Stacked Pyramid Column + + + Clustered Pyramid Bar + + + Stacked Pyramid Bar + + + 100% Stacked Pyramid Bar + + + 3D Pyramid Column + + + 3D Column + + + Line + + + 3D Line + + + 3D Pie + + + Pie + + + Scatter + + + 3D Area + + + Area + + + Doughnut + + + Radar + + + Specifies the color of a selected feature such as border, font, or fill. + + + Automatic color. + + + No color. + + + Specifies global constants used in Microsoft Excel. + + + -4105 + + + -4111 + + + -4114 + + + 2 + + + 3 + + + -4099 + + + -4103 + + + -1 + + + -4142 + + + 0 + + + 1 + + + 1 + + + -4017 + + + -4108 + + + 9 + + + 8 + + + 2 + + + 16 + + + 4 + + + 2 + + + -4117 + + + 5 + + + 1 + + + 1 + + + 17 + + + -4124 + + + -4125 + + + -4126 + + + 18 + + + 15 + + + -4127 + + + 2 + + + -4130 + + + -4131 + + + 13 + + + 11 + + + 14 + + + 12 + + + -4134 + + + 2 + + + 4 + + + 3 + + + 4 + + + 3 + + + 3 + + + 2 + + + 9 + + + 2 + + + -4152 + + + 3 + + + 10 + + + 4 + + + 5 + + + 3 + + + 2 + + + 2 + + + 1 + + + 1 + + + 5 + + + 4 + + + -4160 + + + 2 + + + 3 + + + Indicates the position of data labels relative to the data markers. + + + Data label centered on data point or inside bar or pie. + + + Data label positioned above point. + + + Data label positioned below point. + + + Data label positioned at bottom of bar or pie. + + + Data label positioned at top of bar or pie. + + + Data label positioned at top of bar or pie. + + + Data label positioned arbitrarily. + + + Data label positioned arbitrarily. + + + Office application controls position of data label. + + + Data label positioned at bottom of bar or pie. + + + Data label centered on data point or inside bar or pie. + + + Specifies the type of data label to apply. The default is typically . + + + No data labels. + + + Value for the point (assumed if this argument isn't specified). + + + Percentage of the total. Available only for pie charts and doughnut charts. + + + Category for the point. + + + Percentage of the total, and category for the point. Available only for pie charts and doughnut charts. + + + Show the size of the bubble in reference to the absolute value. + + + Specifies how blank cells are plotted on a chart. + + + Values are interpolated into the chart. + + + Blank cells are not plotted. + + + Blanks are plotted as zero. + + + Indicates numeric units of measurement. + + + Specifies units of hundreds. + + + Specifies units of thousands. + + + Specifies units of tens of thousands. + + + Specifies units of hundreds of thousands. + + + Specifies units of millions. + + + Specifies units of tens of millions. + + + Specifies units of hundreds of millions. + + + Specifies units of thousands of millions. + + + Specifies units of mllions of millions. + + + Specifies custom units. + + + No units are displayed. + + + Specifies the end style for error bars. + + + Caps applied. + + + No caps applied. + + + Specifies which axis values are to receive error bars. + + + Bars run parallel to the Y axis for X-axis values. + + + Bars run parallel to the X axis for Y-axis values. + + + Specifies which error-bar parts to include. + + + Both positive and negative error range. + + + Only negative error range. + + + No error bar range. + + + Only positive error range. + + + Specifies the range marked by error bars. + + + Range is set by fixed values or cell values. + + + Fixed-length error bars. + + + Percentage of range to be covered by the error bars. + + + Shows range for specified number of standard deviations. + + + Shows standard error range. + + + Specifies the horizontal alignment for the object. + + + Center. + + + Center across selection. + + + Distribute. + + + Fill. + + + Align according to data type. + + + Justify. + + + Left. + + + Right. + + + Specifies the position of the legend on a chart. + + + Below the chart. + + + In the upper right-hand corner of the chart border. + + + Left of the chart. + + + Right of the chart. + + + Above the chart. + + + A custom position. + + + Specifies the marker style for a point or series in a line chart, scatter chart, or radar chart. + + + Automatic markers. + + + Circular markers. + + + Long bar markers. + + + Diamond-shaped markers. + + + Short bar markers. + + + No markers. + + + Picture markers. + + + Square markers with a plus sign. + + + Square markers. + + + Square markers with an asterisk. + + + Triangular markers. + + + Square markers with an X. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the location of the field in a PivotTable report. + + + Specifies the Column field. + + + Specifies the Data field. + + + Specifies that the field is hidden. + + + Specifies the Page field. + + + Specifies the Row field. + + + + + + + + + + + + + Specifies whether the values corresponding to a particular data series are in rows or columns. + + + Data series is in a column. + + + Data series is in a row. + + + Specifies the scale type of the value axis. + + + Linear. + + + Logarithmic. + + + Indicates what the size measurement is in relation to. + + + The size measure is for the width. + + + The size measure is for the area. + + + Specifies the text orientation for tick-mark labels. + + + Text orientation set by Excel. + + + Text runs down. + + + Characters run horizontally. + + + Text runs up. + + + Characters run vertically. + + + Specifies the position of tick-mark labels on the specified axis. + + + Top or right side of the chart. + + + Bottom or left side of the chart. + + + Next to axis (where axis is not at either side of the chart). + + + No tick marks. + + + Specifies the position of major and minor tick marks for an axis. + + + Crosses the axis. + + + Inside the axis. + + + No mark. + + + Outside the axis. + + + Indicates units of time measurement. + + + Specifies Day units. + + + Specifies Month units. + + + Specifies Year units. + + + Specifies how the trendline that smoothes out fluctuations in the data is calculated. + + + Uses an equation to calculate the least squares fit through points, for example, y=ab^x . + + + Uses the linear equation y = mx + b to calculate the least squares fit through points. + + + Uses the equation y = c ln x + b to calculate the least squares fit through points. + + + Uses a sequence of averages computed from parts of the data series. The number of points equals the total number of points in the series less the number specified for the period. + + + Uses an equation to calculate the least squares fit through points, for example, y = ax^6 + bx^5 + cx^4 + dx^3 + ex^2 + fx + g. + + + Uses an equation to calculate the least squares fit through points, for example, y = ax^b. + + + Specifies the type of underline applied to a font. + + + Double thick underline. + + + Two thin underlines placed close together. + + + No underlining. + + + Single underlining. + + + Not supported. + + + Specifies the vertical alignment for the object. + + + Bottom + + + Center + + + Distributed + + + Justify + + + Top + + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.deps.json b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.deps.json new file mode 100644 index 0000000..ee57830 --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.deps.json @@ -0,0 +1,68 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Installer/1.0.0": { + "dependencies": { + "Microsoft.Office.Interop.Excel": "15.0.4795.1001", + "Microsoft.Vbe.Interop": "15.0.0.0" + }, + "runtime": { + "Installer.dll": {} + } + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4795.1000" + } + } + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "runtime": { + "Microsoft.Vbe.Interop.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + }, + "office/15.0.0.0": { + "runtime": { + "office.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + } + } + }, + "libraries": { + "Installer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "hashPath": "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512" + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "office/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.dll new file mode 100644 index 0000000..0a53f3e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.exe b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.exe new file mode 100644 index 0000000..63a20c7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.exe differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.pdb b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.pdb new file mode 100644 index 0000000..6eb3356 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.pdb differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.runtimeconfig.json b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.runtimeconfig.json new file mode 100644 index 0000000..54681bc --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Installer.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Microsoft.Office.Interop.Excel.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Microsoft.Office.Interop.Excel.dll new file mode 100644 index 0000000..9d6d158 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Microsoft.Office.Interop.Excel.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Microsoft.Vbe.Interop.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Microsoft.Vbe.Interop.dll new file mode 100644 index 0000000..6c91b03 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/Microsoft.Vbe.Interop.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/office.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/office.dll new file mode 100644 index 0000000..1c82961 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/office.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/office.xml b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/office.xml new file mode 100644 index 0000000..e0a7c79 --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/office.xml @@ -0,0 +1,17424 @@ + + + + office + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a button control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a value that indicates if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Returns a value that indicates if the specified command bar control is a built-in control of the container application. + + + Returns or sets a value that indicates if the face of a command bar button control is its original built-in face. + + + Returns or sets the caption text for a command bar control. + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + + + Copies the face of a command bar button control to the Clipboard. + + + Returns a value that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Returns or sets a value that indicates if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the ID number for the face of a command bar button control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context ID number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns or sets the type of hyperlink associated with the specified command bar button. + + + Returns the ID for a built-in command bar control. + + + Returns a value that indicates the index number for an object in the collection. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns a value that indicates if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns a value that indicates the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Returns or sets an IPictureDisp object that represents the mask image of a object. + + + Moves the specified command bar control to an existing command bar. + A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a Visual Basic procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a value that an application can use to execute a command. + + + Returns a value that indicates the parent object for the specified object. + + + Pastes the contents of the Clipboard onto a command bar button control. + + + Returns or sets an IPictureDisp object representing the image of a object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets the shortcut key text displayed next to a button control when the button appears on a menu, submenu, or shortcut menu. + + + Returns or sets the appearance of a command bar button control. + + + Returns or sets the way a command bar button control is displayed. + + + Returns or sets the information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Returns or sets a value that indicates if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + Reserved for internal use. + + + + A Delegate type used to add an event handler for the event. The Click event occurs when the user clicks a object. + Required CommandBarButton. Denotes the CommandBarButton control that initiated the event. + Required Boolean. False if the default behavior associated with the CommandBarButton control occurs, unless it’s canceled by another process or add-in. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when the user clicks a object. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + Represents a combo box control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Adds a list item to the specified command bar combo box control. + Required String. The text added to the control. + Optional Object. The position of the item in the list. If this argument is omitted, the item is added to the end of the list. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar or command bar control is a built-in command bar or control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Removes all list items from a command bar combo box control (drop-down list box or combo box) and clears the text box (edit box or combo box). + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Returns or sets the number of lines in a command bar combo box control. + + + Returns or sets the width (in pixels) of the list for the specified command bar combo box control. + + + Determines if the specified command bar or command bar control is enabled. + + + Runs a procedure, command, or user action depending on the specified object. + + + Returns or sets the height of a command bar control or command bar. + + + Returns or sets the Help context Id number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + Reserved for internal use. + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns or sets the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Returns or sets an item in the command bar combo box control. + Required Integer. The list item to be set. + + + Returns the number of list items in a command bar combo box control. + + + Returns or sets the number of list items in a command bar combo box control that appears above the separator line. + + + Returns or sets the index number of the selected item in the list portion of the command bar combo box control. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a Visual Basic procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Removes an item from a command bar combo box control. + Required Integer. The item to be removed from the list. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets the way a command bar is displayed. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text in the display or edit portion of the command bar combo box control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar or command bar control. + + + Reserved for internal use. + + + + A Delegate type used to add an event handler for the event. The Change event occurs when the end user changes the selection in a command bar combo box. + The command bar combo box control. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when the end user changes the selection in a command bar combo box. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + A collection of objects that represent the command bars in the container application. + + + Returns the object whose property is set to the running procedure. + + + Returns a object that represents the active menu bar in the container application. + + + Checks or unchecks the check box control for the option to show menus in Microsoft Office as full or personalized. + + + Creates a new command bar and adds it to the collection of command bars. + Optional Object. The name of the new command bar. If this argument is omitted, a default name is assigned to the command bar (such as Custom 1). + Optional Object. The position or type of the new command bar. Can be one of the constants listed in the following table.ConstantDescriptionmsoBarLeft, msoBarTop, msoBarRight, msoBarBottomIndicates the left, top, right, and bottom coordinates of the new command barmsoBarFloatingIndicates that the new command bar won't be dockedmsoBarPopupIndicates that the new command bar will be a shortcut menumsoBarMenuBarMacintosh only + Optional Object. True to replace the active menu bar with the new command bar. The default value is False. + Optional Object. True to make the new command bar temporary. Temporary command bars are deleted when the container application is closed. The default value is False. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Commits the rendering transaction. Returns Nothing. + + + Returns or sets an Integer value indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Determines if the Answer Wizard dropdown menu is enabled. + + + Determines if toolbar customization is disabled. + + + Determines if the font names in the Font box are displayed in their actual fonts. + + + Determines if shortcut keys are displayed in the ToolTips for each command bar control. + + + Determines if ScreenTips are displayed whenever the user positions the pointer over command bar controls. + + + Executes the control identified by the parameter. + Identifier for the control. + + + Returns a object that fits the specified criteria. + Optional . The type of control. + Optional Object. The identifier of the control. + Optional Object. The tag value of the control. + Optional Object. True to include only visible command bar controls in the search. The default value is False. Visible command bars include all visible toolbars and any menus that are open at the time the FindControl method is executed. + + + Returns the collection that fits the specified criteria. + Optional . The type of control. + Optional Object. The control’s identifier. + Optional Object. The control’s tag value. + Optional Object. True to include only visible command bar controls in the search. The default value is False. + + + Returns True if the control identified by the parameter is enabled. + Boolean + Identifier for the control. + + + + Returns an IPictureDisp object of the control image identified by the parameter scaled to the dimensions specified by width and height. + IPictureDisp + Identifier for the control. + The width of the image. + The height of the image. + + + Returns the label of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns a value indicating whether the toggleButton control identified by the parameter is pressed. + Boolean + Identifier for the control. + + + Returns the screentip of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns the supertip of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns True if the control identified by the parameter is visible. + Boolean + Identifier for the control. + + + Reserved for internal use. + + + Returns a object from the collection. + Required Object. The name or index number of the object to be returned. + + + Determines if the toolbar buttons displayed are larger than normal size. + + + Returns or sets the way a command bar is animated. + + + Returns the parent object for the specified object. + + + Releases the user interface focus from all command bars. + + + Reserved for internal use. + + + Reserved for internal use. + + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when any change is made to a command bar. + + + Reserved for internal use. + + + A Delegate type used to add an event handler for the event. The OnUpdate event occurs when any change is made to a command bar. + + + Reserved for internal use. + + + + + + Represents a custom task pane in the container application. + + + Gets the Application object of the host application. Read-only. + Object + + + Gets the Microsoft ActiveX® control instance displayed in the custom task pane frame. Read-only. + Object + + + Deletes the active custom task pane. + + + Gets or sets an enumerated value specifying the docked position of a object. Read/write. + + + + + + Gets or sets an enumerated value specifying a restriction on the orientation of a object. Read/write. + + + + + + Gets or sets the height of the object (in points). Read/write. + Integer + + + Gets the title of a CustomTaskPane object. Read-only. + String + + + True if the specified object is visible. Read/write. + Boolean + + + Gets or sets the width of the task pane specified by the object. Read/write. + Integer + + + Gets the parent window object of the object. Read-only. + Object + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user changes the docking position of the active custom task pane. + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user changes the visibility of the custom task pane. + + + Reserved for internal use. + + + + + + + + + Represents a single in a collection. + + + Adds a node to the XML tree. + Represents the node under which this node should be added. If adding an attribute, the parameter denotes the element that the attribute should be added to. + Represents the base name of the node to be added. + Represents the namespace of the element to be appended. This parameter is required to append nodes of type or , otherwise it is ignored. + Represents the node which should become the next sibling of the new node. If not specified, the node is added to the end of the parent node’s children. This parameter is ignored for additions of type . If the node is not a child of the parent, an error is displayed. + Specifies the type of node to append. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the appended node for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a value that indicates whether the is built-in. Read-only + Boolean + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the current from the data store (IXMLDataStore interface). + + + Gets the root element of a bound region of data in a document. If the region is empty, the property returns Nothing. Read-only. + + + + + + Gets a object that provides access to any XML validation errors, if any exists. If no validation errors exist, this property returns Nothing. Read-only. + + + + + + Gets a String containing the GUID assigned to the current object. Read-only. + String + + + Allows the template author to populate a from an existing file. Returns True if the load was successful. + Boolean + Points to the file on the user’s computer or on a network containing the XML to be loaded. + + + Allows the template author to populate a object from an XML string. Returns True if the load was successful. + Boolean + Contains the XML to load. + + + Gets the set of namespace prefix mappings used against the current object. Read-only. + + + + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets a object representing the set of schemas attached to a bound region of data in a document. Read/write. + + + + + + Selects a collection of nodes from a custom XML part. + + + + Contains the XPath expression. + + + Selects a single node within a custom XML part matching an XPath expression. + + + + Contains an XPath expression. + + + Gets the XML representation of the current object. Read-only. + String + + + + + + + + + + + Occurs after a node is deleted in a object. + + + Occurs after a node is inserted in a object. + + + Occurs just after a node is replaced in a object. + + + + + + + + + + + + + + + + + Represents a collection of objects. + + + Allows you to add a new to a file. + + + + Optional String. Contains the XML to add to the newly created . + Optional . Represents the set of schemas to be used to validate this stream. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Returns . + + + Gets a object from the collection. Read-only. + + + + Required Object. The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Selects a custom XML part matching a GUID. + + + + Required String. Contains the GUID for the custom XML part. + + + Selects the collection of custom XML parts whose namespace matches the search criteria. + + + + Required String. Contains a namespace URI. + + + + + + + + + + + Occurs just after a object is added to the collection. + + + Occurs just after a object is loaded. + + + Occurs just before a object is deleted from the collection. + + + + + + + + + + + + + + + + + Represents a collection of objects attached to a data stream. + + + Allows you to add one or more schemas to a schema collection that can then be added to a stream in the data store and to the Schema Library. + + + + Optional String. Contains the namespace of the schema to be added to the collection. If the schema already exists in the Schema Library, the method will retrieve it from there. + Optional String. Contains the alias of the schema to be added to the collection. If the alias already exists in the Schema Library, the method can find it using this argument. + Optional String. Contains the location of the schema on a disk. If this parameter is specified, the schema is added to the collection and to the Schema Library. + Optional Boolean. Specifies whether, in the case where the method is adding the schema to the Schema Library, the Schema Library keys should be written to the registry(HKey_Local_Machine for all users or HKey_Current_User for just the current user). The parameter defaults to False and writes to HKey_Current_User. + + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Returns . + + + Gets a object from the collection. Read-only. + + + + Required Object. The name or index number of the object to be returned. + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + Required Integer. The index number of the object. + + + Gets the parent object for the object. Read-only. + Object + + + Specifies whether the schemas in a schema collection are valid (conforms to the syntactic rules of XML and the rules for a specified vocabulary; a standard for structuring XML). + Boolean + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + Represents the Answer Wizard in a Microsoft Office application. + + + Returns an Application object that represents the container application for the object. + + + Clears the list of files for the current AnswerWizard, including the default list of files for the Microsoft Office host application. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an collection that represents the list of files available to the current AnswerWizard. + + + Returns the Parent object for the specified object. + + + Resets the list of files for the current AnswerWizard to the default list of files for the Microsoft Office host application. + + + The AnswerWizardFiles collection contains all of the Answer Wizard files (with the file name extension .AW) available to the active Microsoft Office application. + + + Creates a new reference to an Answer Wizard file and adds it to the collection. + Required String. The fully qualified path to the specified Answer Wizard file. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Required String. The name of the file to be deleted, including the fully qualified path, file name, and extension. + + + Returns a file name string from an collection. + Required Integer. The index number of the Answer Wizard file name string, or the file name, to be returned. + + + Returns the parent object for the specified object. + + + Represents the Microsoft Office Assistant. + + + Resumes or suspends Office Assistant Help during a custom wizard. + The number returned by the method. + Specifies the change to the Office Assistant Help session. + The animation the Office Assistant performs when it is suspended or resumed. + + + Returns or sets an animation action for the Office Assistant. + + + Returns an Application object that represents the container application for the object. + + + True if the Office Assistant balloon delivers application alerts when the Office Assistant is visible. + + + True if the Office Assistant appears when the user presses the F1 key to display Help. + + + True if the Office Assistant provides online Help with wizards. + + + Returns a value that indicates the last recorded balloon error. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Displays an alert and returns an Integer that indicates which button the user pressed. + Sets the title of the alert. + Sets the text of the alert. + Determines which buttons are displayed on the alert. + Determines the icon that is displayed on the alert. + Determines which button is set as the default button of the alert. If this argument is set to a value greater than the number of buttons, an error is returned. + Always set this to msoAlertCancelDefault. Any other setting may return an error. + True if the alert is displayed in a message box or False if the alert is displayed through the Office Assistant. + + + Releases the variable returned by the method. + The number returned by the StartWizard method. + True to indicate that the user completed the wizard successfully. + The animation the Office Assistant performs if is set to True. The default value is msoAnimationCharacterSuccessMajor. + + + True if the Office Assistant provides information about using application features more effectively. + + + Returns or sets the path and file name for the active Office Assistant. + + + True if the Office Assistant balloon presents a list of Help topics based on keywords the user selects before clicking the Assistant window or pressing F1. + + + Displays the Office Assistant and the built-in "What would you like to do?" Assistant balloon for standard Office online Help. + + + True if the Office Assistant displays high-priority tips. + + + Returns the text associated with an object. + + + True if the Office Assistant displays Help about keyboard shortcuts. + + + Sets or returns the horizontal position of the Office Assistant window (in points), or the distance (in pixels) of the command bar, from the left edge of the specified object relative to the screen. + + + True if the Office Assistant provides suggestions for using the mouse effectively. + + + Moves the Office Assistant to the specified location. + The left position of the Office Assistant window, in points. + The top position of the Office Assistant window, in points. + + + True if the Office Assistant window automatically moves when it's in the way of the user's work area. + + + Returns or sets the name of the specified object. + + + Creates an Office Assistant balloon. + + + True if the Office Assistant is enabled. + + + Returns the Parent object for the specified object. + + + True if the Office Assistant window appears in its smaller size. + + + Resets the application tips that appear in the Office Assistant balloon. + + + True if the Office Assistant displays application and programming Help. + + + True if the Office Assistant produces the sounds that correspond to animations. + + + Starts the Office Assistant and returns an Integer value that identifies the session. + True to display the Office decision balloon. The Office decision balloon asks the user whether he or she wants help with the active custom wizard. It isn't necessary to use the property to display the Office Assistant if you specify True for this argument. + The name of the callback procedure run by the Office decision balloon and the branch balloon. The branch balloon allows the user to choose between custom Help you've provided for the wizard and standard Office Help. + A number that identifies the balloon that initiated the callback procedure. + The animation the Office Assistant performs when this method is used. The default value is msoAnimationGetWizardy. + False to display the Office decision balloon. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + + + True if the Office Assistant displays a special tip each time the Office application is opened. + + + Sets or returns the distance (in points) from the top of the Office Assistant, or from the top edge of the specified command bar, to the top edge of the screen. + + + True if the specified object is visible. + + + A collection of all the objects in the specified chart. + + + Returns . + + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object (you can use this property with an OLE Automation object to return the application of that object). Read-only. + Object + + + Returns the number of objects in the collection. + Integer + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only + Long + + + Returns a single Axis object from the collection. + + + + The axis type. + The axis. Optional. + + + Returns the parent object for the specified object. Read-only. + Object + + + Represents the balloon where the Office Assistant displays information. + + + Returns or sets an animation action for the Office Assistant. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the type of balloon the Office Assistant uses. + + + Returns or sets the type of button displayed at the bottom of the Office Assistant balloon. + + + Returns or sets the name of the procedure to run from a modeless balloon. + + + Returns the collection that represents all the check boxes contained in the specified balloon. + + + Closes the active modeless balloon. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the heading that appears in the Office Assistant balloon. + + + Returns or sets the type of icon that appears in the upper-left portion of the Office Assistant balloon. + + + Returns a collection that represents the button labels, number labels, and bullet labels contained in the specified Office Assistant balloon. + + + Returns or sets the modal behavior of the Office Assistant balloon. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets an integer that identifies the Office Assistant balloon that initiated the callback procedure. + + + Prevents the Office Assistant balloon from being displayed in a specified area of the screen. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + + + Displays the specified balloon object and returns a constant. + + + Returns or sets the text displayed after the heading but before the labels or check boxes in the Office Assistant balloon. + + + Represents a checkbox in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified checkbox in the Office Assistant balloon is checked. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the text associated with an object. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets the text displayed next to a checkbox or label in the Office Assistant balloon. + + + A collection of objects that represent all the check boxes in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object. + Required Item. The index number of the check box or label to be returned. + + + Returns the name of the specified object. + + + Returns the parent object for the specified object. + + + Represents a label in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the text associated with an object. + + + Returns the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets the text displayed next to a check box or label in the Office Assistant balloon. + + + A collection of objects that represent all the labels in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object. + Required Integer. The index number of the check box or label to be returned. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Represents bullet formatting. + + + Gets an object that represents the object. Read-only. + Object + + + Gets or sets the Unicode character value that is used for bullets in the specified text. Read/write. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the font that represents the formatting for a object. Read-only. + + + + + + Gets the bullet number of a paragraph. Read-only. + Integer + + + Gets the parent of the object. Read-only. + Object + + + Sets the graphics file to be used for bullets in a bulleted list. + The file name of a valid graphics file. + + + + Returns or sets the bullet size relative to the size of the first text character in the paragraph. Read/write. + Single + + + Gets or sets the beginning value of a bulleted list. Read/write. + Integer + + + Returns or sets a constant that represents the style of a bullet. Read/write. + + + + + + Gets or sets a constant that represents the type of bullet. Read/write. + + + + + + Determines whether the specified bullets are set to the color of the first text character in the paragraph. Read/write. + + + + + + Determines whether the specified bullets are set to the font of the first text character in the paragraph. Read/write. + + + + + + Gets or sets a value that specifies whether the bullet is visible. Read/write. + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + Provides information about the digital certificate. + + + Specifies that the digital certificate is available for signing. + + + The holder of a Private Key corresponding to a Public Key. + + + The issuing authority of the certification. + + + The expiration date of the certificate. + + + A hash of the certificate's complete contents. + + + Provides the results of verifying a digital certificate. + + + The verification resulted in an error. + + + The certificate is currently being verified. + + + The certification is currently unverified. + + + The certification is valid. + + + The certification is invalid. + + + The certification has expired. + + + The certification has been revoked. + + + The certification is from an untrusted source. + + + Represents the color of a one-color object or the foreground or background color of an object with a gradient or patterned fill. + + + + Returns an Application object that represents the container application for the object. + Object + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only + Long + + + Returns the parent object for the specified object. Read-only. + Object + + + Returns an Integer value that represents the red-green-blue value of the specified color. + Integer + + + Returns or sets an Integer value that represents the color of a Color object, as an index in the current color scheme. + IntegerReturns a Long value that represents the red-green-blue value of the specified color. + + + Returns an Integer value that that represents the color format type. + Integer + + + Used only with charts. Represents fill formatting for chart elements. + + + Returns an Application object that represents the container application for the object. + Object + + + Returns or sets the fill background color. + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + Returns or sets the foreground fill or solid color. + + + + + + Returns the gradient color type for the specified fill. Read-only + + + + + + Returns the gradient degree of the specified one-color shaded fill as a floating-point value from 0.0 (dark) through 1.0 (light). Read-only. + Single + + + Returns the gradient style for the specified fill. Read-only + + + + + + Returns the shade variant for the specified fill as an integer value from 1 through 4. The values for this property correspond to the gradient variants (numbered from left to right and from top to bottom) on the Gradient tab in the Fill Effects dialog box. Read-only + Integer + + + Sets the specified fill to a one-color gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + Required Single. The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light). + + + Returns the parent object for the specified object. Read-only. + Object + + + Returns or sets the fill pattern. + + + + + + Sets the specified fill to a pattern. + Required . The type of pattern. + + + Sets the specified fill to a preset gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + + + Returns the preset gradient type for the specified fill. Read-only. + + + + + + Returns the preset texture for the specified fill. Read-only. + + + + + + Sets the specified fill format to a preset texture. + Required . The type of texture to apply. + + + Sets the specified fill to a uniform color. Use this method to convert a gradient, textured, patterned, or background fill back to a solid fill. + + + Returns the name of the custom texture file for the specified fill. Read-only. + String + + + Returns the texture type for the specified fill. Read-only. + + + + + + Sets the specified fill to a two-color gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + + + Returns the fill type. + + + + + + Fills the specified shape with an image. + Optional Object. The filename of the image. + Optional Object. An value that indicates the format of the picture. + Optional Object. A Double value that specifies the picture stack or scale unit (depends on the argument). + Optional Object. An XlChartPicturePlacement value that indicates the placement of the picture. + + + Fills the specified shape with small tiles of an image. If you want to fill the shape with one large image, use the method. + Required String. The name of the picture file. + + + Returns or sets a value that determines whether the object is visible. Read/write. + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integerc + + + + + + + Returns the parent object for the specified object. Read-only. + Objects + + + + + + + + + A collection of all the ChartGroup objects in the specified chart. + + + Returns an Application object that represents the container application for the object. + Object + + + Returns the number of objects in the collection. Read-only + Integer + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + Returns . + + + Returns a single object from a collection. + + + + Required Object. The name or index number for the object. + + + Returns the parent object for the specified object. Read-only. + Object + + + + + Returns an Application object that represents the container application for the object. + Object + + + + + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + + Gets or sets the height of a command bar control. + + + + + Gets the horizontal position of the specified control (in pixels) relative to the left edge of the screen. Returns the distance from the left side of the docking area. + + + + + + + + + Gets the name of the built-in object. + + + + + + + Double + + + + + + + Gets the distance (in pixels) from the top edge of the specified control to the top edge of the screen. + + + Gets or sets the width (in pixels) of the specified control. + + + Reserved for internal use. + + + + + + Returns or sets a color that is mapped to the theme color scheme. Read/write. + + + + + + + + + + + Represents a COM add-in in the Microsoft Office host application. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the state of the connection for the specified object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets a descriptive String value for the specified object. + + + Returns the globally unique class identifier (GUID) for the specified object. + + + Returns or sets the object that is the basis for the specified object. + + + Returns the parent object for the specified object. + + + Returns the programmatic identifier (ProgID) for the specified object. + + + A collection of objects that provide information about a COM add-in registered in the Windows Registry. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a member of the specified collection. + Required Object. Either an ordinal value that returns the COM add-in at that position in the COMAddIns collection, or a String value that represents the ProgID of the specified COM add-in. + + + Returns the parent object for the specified object. + + + Reserved for internal use. + + + Updates the contents of the collection from the list of add-ins stored in the Windows Registry. + + + Represents a command bar in the container application. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Determines if an individual menu is enabled to use adaptive menus. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar or command bar control is a built-in command bar or control of the container application. + + + Returns or sets a string that determines where a command bar will be saved. + + + Returns a object that represents all the controls on a command bar or pop-up control. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Determines if the specified command bar or is enabled. + This property returns True if the specified command bar is enabled; False if not enabled.Setting this property to True causes the name of the command bar to appear in the list of available command bars. + + + Returns a object that fits the specified criteria. + Optional . The type of control. + Optional Object. The identifier of the control. + Optional Object. The tag value of the control. + Optional Object. True to include only visible command bar controls in the search. The default value is False. Visible command bars include all visible toolbars and any menus that are open at the time the FindControl method is executed. + Optional Boolean. True to include the command bar and all of its pop-up subtoolbars in the search. The default value is False. + + + Returns or sets the height of a command bar. + + + Reserved for internal use. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + + Returns or sets the distance (in pixels) of the command bar from the left edge of the specified object relative to the screen. + + + Returns or sets the name of the specified object. + + + Returns the name of a built-in command bar as it's displayed in the language version of the container application, or returns or sets the name of a custom command bar. + + + Returns the parent object for the specified object. + + + Returns or sets the position of a command bar. + + + Returns or sets the way a command bar is protected from user customization. + + + Resets a built-in command bar to its default configuration. + + + Returns or sets the docking order of a command bar in relation to other command bars in the same docking area. + + + Displays a command bar as a shortcut menu at the specified coordinates or at the current pointer coordinates. + Optional Object. The x-coordinate for the location of the shortcut menu. If this argument is omitted, the current x-coordinate of the pointer is used. + Optional Object. The y-coordinate for the location of the shortcut menu. If this argument is omitted, the current y-coordinate of the pointer is used. + + + Returns or sets the distance (in points) from the top edge of the specified command bar to the top edge of the screen. + + + Returns the type of command bar. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar. + + + Represents a button control on a command bar. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + Is True if the face of a command bar button control is its original built-in face. Read/write. + + + + + + + Copies the face of a command bar button control to the Clipboard. + + + + + + + + Gets or sets the Id number for the face of a CommandBarButton control. Read/write. + + + + + + Sets or gets a MsoCommandBarButtonHyperlinkType constant that represents the type of hyperlink associated with the specified command bar button. Read/write. + + + + + + + + + Gets or sets an IPictureDisp object representing the mask image of a CommandBarButton object. The mask image determines what parts of the button image are transparent. Read/write. + + + + + + + + Pastes the contents of the Clipboard onto a CommandBarButton. + + + Gets or sets an IPictureDisp object representing the image of a CommandBarButton object. Read/write. + + + + + + + + + + + + + + Gets or sets the shortcut key text displayed next to a CommandBarButton control when the button appears on a menu, submenu, or shortcut menu. Read/write. + + + + + + + + + + + Represents a combo box control on a command bar. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the number of lines in a command bar combo box control. The combo box control must be a custom control and it must be a drop-down list box or a combo box. Read/write. + + + Gets or sets the width (in pixels) of the list for the specified command bar combo box control. Read/write. + + + + + + + + + + + + + + Gets or sets an item in the CommandBarComboBox control. Read/write. + The list item to be set. + + + + Gets the number of list items in a CommandBarComboBox control. Read-only. + + + Gets or sets the number of list items in a CommandBarComboBox control that appears above the separator line. Read/write. + + + Gets or sets the index number of the selected item in the list portion of the CommandBarComboBox control. If nothing is selected in the list, this property returns zero. Read/write. + + + + + + + + + + Removes an item from a CommandBarComboBox control. + The item to be removed from the list. + + + + + + + + + + + + + + + + + + + + Represents a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar control is a built-in control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. Set to True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Determines if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context Id number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the Parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + A collection of objects that represent the command bar controls on a command bar. + + + Creates a new object and adds it to the collection of controls on the specified command bar. + Optional Object. The type of control to be added to the specified command bar. Can be one of the following constants: msoControlButton, msoControlEdit, msoControlDropdown, msoControlComboBox, or msoControlPopup. + Optional Object. An integer that specifies a built-in control. If the value of this argument is 1, or if this argument is omitted, a blank custom control of the specified type will be added to the command bar. + Optional Object. For built-in controls, this argument is used by the container application to run the command. For custom controls, you can use this argument to send information to procedures, or you can use it to store information about the control (similar to a second property value). + Optional Object. A number that indicates the position of the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is added at the end of the specified command bar. + Optional Object. True to make the new control temporary. Temporary controls are automatically deleted when the container application is closed. The default value is False. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Required Object. The name or index number of the object to be returned. + + + Returns the Parent object for the specified object. + + + Represents a pop-up control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar control is a built-in control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Returns a object that represents the menu displayed by the specified pop-up control. + + + Reserved for internal use. + + + Returns a object that represents all the controls on a command bar or pop-up control. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Determines if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context ID number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns or sets the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the menu group that the specified command bar pop-up control belongs to when the menu groups of the OLE server are merged with the menu groups of an OLE client - that is, when an object of the container application type is embedded in another application. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the Parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + A collection of objects that represent the command bars in the container application. + + + Reserved for internal use. + + + + + + + + + + Commits the rendering transaction. Returns Nothing (null in C#). + Specifies a handle to the window in which to commit the rendering transaction. + + + + + + + + + + + + + + + + + + + + + + + + + Gets a CommandBars + collection. Read-only. + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + Represents a Microsoft Office system contact card. + + + Returns an Application object that represents the parent Office application for the ContactCard object. + + + Closes the contact card. + + + Returns a that indicates the application in which the ContactCard object was created. + + + Displays the contact card at the specified x-coordinate position outside the specified rectangle. + + that determines whether the card is displayed as a hover card or as a fully expanded card. + Specifies the x-coordinate of the left side of the rectangle where the card is not displayed. + Specifies the x-coordinate of the right side of the rectangle where the card is not displayed. + Specifies the y-coordinate of the top side of the rectangle where the card is not displayed. + Specifies the y-coordinate of the bottom side of the rectangle where the card is not displayed. + Specifies the x-coordinate position of the left edge of the card. + Determines if there is a delay before the card is displayed. + + + Provides the status of verifying whether the content of a document has changed. + + + The verification resulted in an error. + + + The content of the document is currently being verified. + + + The document has not been verified. + + + The content of the has been verified and is valid. + + + The content of the document has been modified since it was digitally signed. + + + An object used to remove a portion of an image. + + + Gets the Application object of the host application. + + + Gets a 32-bit integer that indicates the application in which the Crop object was created. + + + Gets or sets the height of the image that is to be cropped. + + + Gets or sets the x-axis offset of the image that is to be cropped. + + + Gets or sets the y-axis offset of the image that is to be cropped. + + + Gets or sets the width of the image that is to be cropped. + + + Gets or sets the height of a shape that is used to crop an image. + + + Gets or sets the location of the left-side of a shape that is used to crop an image. + + + Gets or sets the location of the top of a shape that is used to crop an image. + + + Gets or sets the width of a shape that is used to crop an image. + + + + + + + + + + + + + + + + + + + + + + Occurs when the user changes the docking position of the active custom task pane. + The active custom task pane. + + + Occurs when the user changes the visibility of the custom task pane. + The active task pane. + + + Represents an XML node in a tree in a document. The object is a member of the collection. + + + Appends a single node as the last child under the context element node in the tree. + Represents the base name of the element to be appended. + Represents the namespace of the element to be appended. This parameter is required to append nodes of type or , otherwise it is ignored. + Specifies the type of node to append. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the appended node for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Adds a subtree as the last child under the context element node in the tree. + Represents the subtree to add. + + + Gets an Application object that represents the container application for a . Read-only. + Object + + + Gets a collection representing the attributes of the current element in the current node. Read-only. + + + + + + Gets the base name of the node without the namespace prefix, if one exists, in the Document Object Model (DOM). Read-only. + String + + + Gets a collection containing all of the child elements of the current node. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the current node from the tree (including all of its children, if any exist). + + + Gets a object corresponding to the first child element of the current node. If the node has no child elements (or if it isn’t of type ), returns Nothing. Read-only. + + + + + + Returns True if the current element node has child element nodes. + Boolean + + + Inserts a new node just before the context node in the tree. + Represents the base name of the node to be added. + Represents the namespace of the element to be added. This parameter is required if adding nodes of type or , otherwise it is ignored. + Specifies the type of the node to be added. If the parameter is not specified, it is assumed to be a node of type . + Used to set the value of the node to be added for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + Represents the context node. + + + Inserts the specified subtree into the location just before the context node. + Represents the subtree to be added. + Specifies the context node. + + + Gets a object corresponding to the last child element of the current node. If the node has no child elements (or if it is not of type ), the property returns Nothing. Read-only. + + + + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the next sibling node (element, comment, or processing instruction) of the current node. If the node is the last sibling at its level, the property returns Nothing. Read-only. + + + + + + Gets the type of the current node. Read-only. + + + + + + Gets or sets the value of the current node. Read/write. + String + + + Gets the object representing the Microsoft Office Excel workbook, Microsoft Office PowerPoint presentation, or the Microsoft Office Word document associated with this node. Read-only. + Object + + + Gets the object representing the part associated with this node. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets the parent element node of the current node. If the current node is at the root level, the property returns Nothing. Read-only. + + + + + + Gets the previous sibling node (element, comment, or processing instruction) of the current node. If the current node is the first sibling at its level, the property returns Nothing. Read-only. + + + + + + Removes the specified child node from the tree. + Represents the child node of the context node. + + + Removes the specified child node (and its subtree) from the main tree, and replaces it with a different node in the same location. + Represents the child node to be replaced. + Represents the base name of the element to be added. + Represents the namespace of the element to be added. This parameter is required if adding nodes of type or , otherwise it is ignored. + Specifies the type of node to add. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the node to be added for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Removes the specified node (and its subtree) from the main tree, and replaces it with a different subtree in the same location. + Represents the subtree to be added. + Represents the child node to be replaced. + + + Selects a collection of nodes matching an XPath expression. This method differs from the method in that the XPath expression will be evaluated starting with the 'expression' node as the context node. + + + + Contains an XPath expression. + + + Selects a single node from a collection matching an XPath expression. This method differs from the method in that the XPath expression will be evaluated starting with the 'expression' node as the context node. + + + + Contains an XPath expression. + + + Gets or sets the text for the current node. Read/write. + String + + + Gets the XML representation of the current node and its children, if any exist. Read-only. + String + + + Gets a String with the canonicalized XPath for the current node. If the node is no longer in the Document Object Model (DOM), the property returns an error message. Read-only. + String + + + Contains a collection of objects representing the XML nodes in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a count of the number of objects in a collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a namespace prefix. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object of the object. Read-only. + Object + + + Gets the prefix for a object. Read-only. + String + + + Represents a collection of objects. + + + Allows you to add a custom namespace/prefix mapping to use when querying an item. + Contains the prefix to add to the prefix mapping list. + Contains the namespace to assign to the newly added prefix. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Allows you to get the namespace corresponding to the specified prefix. + String + Contains a prefix in the prefix mapping list. + + + Allows you to get a prefix corresponding to the specified namespace. + String + Contains the namespace URI. + + + Gets the parent object for the object. Read-only. + Object + + + Represents a schema in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the specified schema from the collection. + + + Gets a String that represents the location of a schema on a computer. Read-only. + String + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Reloads a schema from a file. + + + + + + + + + + + + + + + + Represents a single validation error in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the object representing a data validation error. + + + Gets a number representing a validation error in a object. Read-only. + Integer + + + Gets the name of an error in a object. If no errors exist, the property returns Nothing. Read-only. + String + + + Gets a node in a object, if any exist. If no nodes exist, the property returns Nothing. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets the text in the object. Read-only. + String + + + Gets the type of error generated from the object. Read-only. + + + + + + Represents a collection of objects. + + + Adds a object containing an XML validation error to the collection. + Represents the node where the error occurred. + Contains the name of the error. + Contains the descriptive error text. + Specifies whether the error is to be cleared from the collection when the XML is corrected and updated. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + Represents a Document Inspector module in a collection. + + + Gets an object that represents the creator of the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of the object. Read-only. + String + + + Performs an action on specific information items or document properties depending on the Document Inspector module specified. + An enumeration representing that staus of the document. Status is an output parameter which means that its value is returned when the method has completed its purpose. + Contains the results of the action. Results is an output parameter. + + + Inspects a document for specific information or document properties. + An enumeration representing that status of the document. is an output parameter which means that its value is returned when the method has completed its purpose. + Contains a lists the information items or document properties found in the document. + + + Gets the name of the module represented by a object. Read-only. + String + + + Gets an object that represents the parent of the object. Read-only. + Object + + + Represents a collection of objects. + + + Gets an Application object that represents the creator of the object. Read-only. + Object + + + Gets the number of items in the object. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets the object specified by the index. Read-only. + + + + The index number of the object. + + + Gets an object that represents the parent of a object. Read-only. + Object + + + The DocumentLibraryVersion object represents a single saved version of a shared document that has versioning enabled and that is stored in a document library on the server. + + + Returns an Application object that represents the container application for the object. + + + Returns any optional comments associated with the specified version of the shared document. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a document library version from the collection. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the date and time at which the specified version of the shared document was last saved to the server. + + + Returns the name of the user who last saved the specified version of the shared document to the server. + + + Opens the specified version of the shared document from the collection in read-only mode. + + + Returns the parent object for the specified object. + + + Restores a previous saved version of a shared document from the collection. + + + The DocumentLibraryVersions object represents a collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a Boolean value that indicates whether the document library in which the active document is saved on the server is configured to create a backup copy, or version, each time the file is edited on the Web site. + + + Returns a object from the collection. + Required Integer. The index number of the DocumentLibraryVersion returned. + + + Returns the parent object for the specified object. + + + A collection of objects. + + + Creates a new custom document property. + Required String. The name of the property. + Required Boolean. Specifies whether the property is linked to the contents of the container document. If this argument is True, the argument is required; if it's False, the value argument is required. + Optional Object. The data type of the property. Can be one of the following constants: msoPropertyTypeBoolean, msoPropertyTypeDate, msoPropertyTypeFloat, msoPropertyTypeNumber, or msoPropertyTypeString. + Optional Object. The value of the property, if it's not linked to the contents of the container document. The value is converted to match the data type specified by the type argument. If it can't be converted, an error occurs. If is True, the argument is ignored and the new document property is assigned a default value until the linked property values are updated by the container application (usually when the document is saved). + Optional Object. Ignored if is False. The source of the linked property. The container application determines what types of source linking you can use. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Required Object. The name or index number of the document property returned. + + + Returns the Parent object for the specified object. + + + Represents a custom or built-in document property of a container document. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a custom document property. + + + Returns or sets the source of a linked custom document property. + + + Determine if the value of the custom document property is linked to the content of the container document. + + + Returns or sets the name of the specified object. + + + Returns the Parent object for the specified object. + + + Returns or sets the document property type. + + + Returns or sets the value of a document property. + + + Describes a single Picture Effect parameter. + + + Gets an Application object that represents the container application for the EffectParameter object. + + + Gets a 32-bit integer that indicates the application in which the EffectParameter object was created. + + + Gets the string name of the EffectParameterparameter. + + + Gets or sets the value of the EffectParameter object. + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the EffectParameters object. + + + Gets the count of the number of objects contained within the EffectParameters collection. + + + Gets a 32-bit integer that indicates the application in which the EffectParameters object was created. + + + Returns . + + + Gets an object at the specified index or with the specified unique identifier. + Specifies either an integer representing the index or a string representing the location of the . + + + + + + + + + + Provides the methods for setting up permissions, applying the cryptography of the underlying encryption and decryption, and user authentication. + + + Used to determine whether the user has the proper permissions to open the encrypted document. + Integer + Specifies the window that is called to display the encryption settings. + Contains the encrypted data for the current document. + The user interface displayed by the encryption provider add-in. + + + Creates a second, working copy of the object’s encryption session for a file that is about to be saved. + Integer + The ID of the cloned session. + + + Decrypts and returns a stream of encrypted data for a document. + The ID of the current session. + The ID of the stream of data. + The encrypted data stream. + The data stream before decryption. + + + Encrypts and returns a stream of data for a document. + The ID of the current session. + The name of the encrypted stream of document data. + The data stream before encryption. + The data stream information after it has been encrypted. + + + Ends the current encryption session. + The ID of the current session. + + + Displays information about the encryption of the current document. + object + Specifies the encryption information that you want. + + + Used by the object to create a new encryption session. This session is used by the provider to cache document-specific information about the encryption, users, and rights while the document is in memory. + Integer + Specifies the window that is called to display the encryption settings. + + + Saves an encrypted document. + Integer + The ID of the current session. + Contains the encryption information. + + + Used to display a dialog of the encryption settings for the current document. + The ID of the current session. + Specifies the window that is called to display the encryption settings. + Specifies whether you want the user to be able to change the encryption settings. + If True, the encryption for a document will be removed during the next save operation. + + + + + + + + + + + + + + + + + + + Provides file dialog box functionality similar to the functionality of the standard Open and Save dialog boxes found in Microsoft Office applications. + + + Determines if the user is allowed to select multiple files from a file dialog box. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a String representing the text that is displayed on the action button of a file dialog box. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an constant representing the type of file dialog box that the object is set to display. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets an Integer indicating the default file filter of a file dialog box. + + + Returns a collection. + + + Returns or sets a String representing the path and/or file name that is initially displayed in a file dialog box. + + + Returns or sets a constant representing the initial presentation of files and folders in a file dialog box. + + + Returns the text associated with an object. + + + Returns the Parent object for the specified object. + + + Returns a collection. + + + Displays a file dialog box and returns an Integer indicating whether the user pressed the action button (-1) or the cancel button (0). + + + Returns or sets the title of a file dialog box displayed using the object. + + + Represents a file filter in a file dialog box displayed through the object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the description of each object as a String value. + + + Returns a String value containing the extensions that determine which files are displayed in a File dialog box for each object. + + + Returns the Parent object for the specified object. + + + A collection of objects that represent the types of files that can be selected in a file dialog box that is displayed using the object. + + + Adds a new file filter to the list of filters in the Files of type list box in the File dialog box, and returns a FileDialogFilter object that represents the newly added file filter. + Required String. The text representing the description of the file extension you want to add to the list of filters. + Required String. The text representing the file extension you want to add to the list of filters. More than one extension may be specified and each must be separated by a semi-colon (;). For example, the argument can be assigned to the string: "*.txt; *.htm".Note Parentheses do not need to be added around the extensions. Office will automatically add parentheses around the extensions string when the description and extensions strings are concatenated into one file filter item. + Optional Object. A number that indicates the position of the new control in the filter list. The new filter will be inserted before the filter at this position. If this argument is omitted, the filter is added at the end of the list. + + + Returns an Application object that represents the container application for the object. + + + Removes all list items from a command bar combo box control (drop-down list box or combo box) and clears the text box (edit box or combo box). + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a file dialog filter. + Optional Object. The filter to be removed. + + + + Returns a object that is a member of the specified collection. + Required Integer. The index number of the FileDialogFilter object to be returned. + + + Returns the Parent object for the specified object. + + + A collection of String values that correspond to the paths of the files or folders that a user has selected from a file dialog box displayed through the object. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a String that corresponds to the path of one of the files that the user selected from a file dialog box that was displayed using the method of the object. + Required Integer. The index number of the string to be returned. + + + Returns the Parent object for the specified object. + + + Represents the functionality of the Open dialog box accessible by the File menu. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Begins the search for the specified file(s). + Optional . The method used to sort the returned file(s). + Optional . The order in which the returned file(s) are sorted. + Optional Boolean. True to include files that have been added, modified, or deleted since the file index was last updated as part of the file search. The default value is True. + + + Returns or sets the name of the file to look for during a file search. + + + Returns or sets the type of file to look for during a file search. + + + Returns a collection. + + + Returns a object that contains the names of all the files found during a search. + + + Returns or sets a constant that represents the amount of time since the specified file was last modified and saved. + The default value is msoLastModifiedAnyTime. + + + Returns or sets the folder to be searched during the specified file search. + + + Determines if the file search is expanded to include all forms of the specified word contained in the body of the file or in the file's properties. + + + Determines if the specified file search will find only files whose body text or file properties contain the exact word or phrase that you've specified. + + + Resets all the search criteria settings to their default settings. + + + Returns the collection that represents all the search criteria for a file search. + + + Refreshes the list of currently available objects. + + + Returns a collection. + + + Returns a collection. + + + Determines if the search includes all the subfolders in the folder specified by the property. + + + Returns or sets the word or phrase to be searched for, in either the body of a file or the file's properties, during the file search. + + + A collection of values of the type that determine which types of files are returned by the method of the object. + + + Adds a new file type to a file search. + Required . Specifies the type of file for which to search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a value that indicates which file type will be searched for by the method of the object. + Optional Integer. The index number of the object to be returned. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + Gets a collection of objects. + + + + + + + + + + + + + + + + + + + + + + + Contains font attributes (for example, font name, font size, and color) for an object. + + + True if the font is formatted as all capital letters. Read/write. + + + + + + Gets an object that represents the application the object is used in. Read-only. + Object + + + Gets or sets a value that specifies whether the numbers in a numbered list should be rotated when the text is rotated. Read/write. + + + + + + Gets or sets a value specifying the horizontal offset of the selected font. Read/write. + Single + + + Gets or sets a value specifying whether the font should be bold. Read/write. + + + + + + Gets or sets a value specifying that the text should be capitalized. Read/write. + + + + + + Gets a value indicating the application the object was created in. Read-only. + Integer + + + True if the specified font is formatted as double strikethrough text. Read/write. + + + + + + Gets a value indicating whether the font can be embedded in a page. Read-only. + + + + + + Gets a value specifying whether the font is embedded in a page. Read-only. + + + + + + Gets or sets a value specifying whether the text for a selection should be spaced equal distances apart. Read/write. + + + + + + + Gets a value indicating whether the font is displayed as a glow effect. Read-only. + + + + + + Gets a value indicating whether the font is displayed as highlighted. Read-only. + + + + + + Gets or sets a value specifying whether the text for a selection is italic. Read/write. + + + + + + Gets or sets a value specifying the amount of spacing between text characters. Read/write. + Single + + + Gets a value specifiying the format of a line. Read-only. + + + + + + Gets or sets a value specifying the font to use for a selection. Read/write. + String + + + Gets or sets the font used for Latin text (characters with character codes from 0 (zero) through 127). Read/write. + String + + + Gets or sets the complex script font name. Used for mixed language text. Read/write. + String + + + Gets or sets an East Asian font name. Read/write. + String + + + Gets or sets the font used for characters whose character set numbers are greater than 127. Read/write. + String + + + Gets the parent of the object. Read-only. + Object + + + Gets a value specifying the type of reflection format for the selection of text. Read-only. + + + + + + Gets the value specifying the type of shadow effect for the selection of text. Read-only. + + + + + + Gets or sets a value specifying the size of the font. Read/write. + Single + + + Gets or sets a value specifying whether small caps should be used with the selection of text. Small caps are the same height as the lowercase letters in a selection of text. Read/write. + + + + + + Gets or sets a value specifying the type of soft edge effect used in a selection of text. Read/write. + + + + + + Gets or sets a value specifying the spacing between characters in a selection of text. Read/write. + Single + + + Gets or sets a value specifying the strike format used for a selection of text. Read/write. + + + + + + Gets or sets a value specifying the text should be rendered in a strikethrough appearance. Read/write. + + + + + + Gets or sets a value specifying that the selected text should be displayed as subscript. Read/write. + + + + + + Gets or sets a value specifying that the selected text should be displayed as superscript. Read/write. + + + + + + Gets a value specifying the color of the underline for the selected text. Read-only. + + + + + + Gets or sets a value specifying the underline style for the selected text. Read/write. + + + + + + Gets or sets a value specifying the text effect for the selected text. Read/write. + + + + + + Represents the list of files returned from a file search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a file name from the list of file names represented by the object. + Required Integer. The index number of the Answer Wizard file name string or the file name to be returned. + + + Reserved for internal use. + + + + + + + + Represents a glow effect around an Office graphic. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the color of text formatted as glow. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the radius value of the glow effect for the object. Read/write. + Single + + + Gets or sets the degree of transparency of the specified glow as a value between 0.0 (opaque) and 1.0 (clear). + + + Represents one gradient stop. + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object. Read-only. + Object + + + Gets a value representing the color of the gradient stop. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets a value representing the position of a stop within the gradient expressed as a percent. Read/write. + Single + + + Gets or sets a value representing the opacity of the gradient fill expressed as a percent. Read/write. + Single + + + Contains a collection of objects. + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Removes a gradient stop. + The index number of the gradient stop. + + + + Adds a stop to a gradient. + Specifies the color at that the gradient stop. + Specifies the position of the stop within the gradient expressed as a percent. + Specifies the opacity of color at the gradient stop. + The index number of the stop. + + + Adds a stop to a gradient and specifies the brightness, as well as the transparency, of the color. + Specifies the color at that the gradient stop. + Specifies the position of the stop within the gradient expressed as a percent. + Specifies the opacity of color at the gradient stop. + The index number of the stop. + Specifies the brightness of the color at the gradient stop. + + + Gets a object from a collection. Read-only. + GradientStop + The name or index number of the object returned. + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + Reserved for internal use. + + + + + + + + + + Represents a top-level project branch, as in the Project Explorer in the Microsoft Script Editor. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the collection that is included in the specified HTML project. + + + Opens the specified HTML project or HTML project item in the Microsoft Script Editor in one of the views specified by the optional constants. + Optional . The view in which the specified project or project item is opened. + + + Returns the Parent object for the specified object. + + + Refreshes the specified HTML project in the Microsoft Office host application. + Optional Boolean. True if all changes are to be saved; False if all changes are to be ignored. + + + Refreshes the specified HTML project in the Microsoft Script Editor. + Optional Boolean. True if the document will be refreshed; False if the document will not be refreshed. + + + Returns the current state of an object. + + + Represents an individual project item that’s a project item branch in the Project Explorer in the Microsoft Script Editor. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Determines if the specified HTML project item is open in the Microsoft Script Editor. + + + Updates the text in the Microsoft Script Editor with text from the specified file (on disk). + Required String. The fully qualified path of the text file that contains the text to be loaded. + + + Returns the name of the specified object. + + + Opens the specified HTML project or HTML project item in the Microsoft Script Editor in one of the views specified by the optional constants. + Optional . The view in which the specified project or project item is opened. + + + Returns the Parent object for the specified object. + + + Saves the specified HTML project item using a new file name. + Required String. The fully qualified path of the file to which you want to save the HTML project item. + + + Returns or sets the HTML text in the HTML editor. + + + A collection of objects that represent the HTML project items contained in the object. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns the object that represents a particular project in the Microsoft Script Editor. + Required Object. The name or index number of the HTML project item to be returned. + + + Returns the Parent object for the specified object. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + Provides a means for developers to create a customized help experience for users within Microsoft Office. + + + Clears the default help topic previously defined in the method. + The ID of the default help topic. + + + Performs a search from the Office Help Viewer based on one or more keywords. Keywords can be a word or a phrase. + Represents the search keyword or phrase. + Optional, the namespace registered within the host application. + + + Sets a help topic as the default topic that will be displayed when the user opens a help window. + The ID of the default help topic. + + + Displays the help topic specified by its ID in the Office Help Viewer or, for help topics that ship with Office, in the Help window of the current Office application. + Optional, the ID of the help topic. + Optional, the namespace registered within the host application. + + + An object that provides the ability to manipulate blog entries. + + + Contains information about the provider. + The name of the blog provider. + Represents the name displayed in the user interface. + Represents how many categories are supported by the provider. + Specifies whether table padding is recognized. + + + This method returns the list of blog categories for an account so Microsoft Office Word can populate the categories dropdown list. + Represents the GUID of the account registry key. + Represents the HWND of the host window. + The current document. + A list of categories supported by the provider. + + + Returns the list of the user’s last fifteen blog posts that Microsoft Office Word then displays in the Open Existing Post dialog. This method does not actually return the blog post contents. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Office Word is calling from. + The current document. + Contains the titles of the last fifteen posts. + Contains the dates of the last fifteen posts. + Contains the IDs of the last fifteen posts. + + + Returns the list and details of user blogs associated with the specified account. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Contains all blog names under the current account. + Contains all blog IDs under the current account. + Contains all blog URLs under the current account. + + + Opens the blog specified by the blog ID. It is called by the Open Existing Post dialog based on the item selected by the user. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + The ID of the post. + Contains the HWND for the window Microsoft Office Word is calling from. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + + + Hands off the current post so it can be published by the provider. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + Specifies whether this is a draft version of the post. + The ID of the original post if this post has been republished. + Specifies what is displayed in the publish bar. + + + Hands off the current post so it can be republished by the provider. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + The ID of the original post. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + Specifies whether this is a draft version of the post. + Specifies what is displayed in the publish bar. + + + Called from the Choose Account dialog when the provider’s name is chosen in the Blog Host dropdown or when the user requests to change a provider’s account in the Blog Accounts dialog box. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Word is calling from. + The current document. + Indicates whether this is a new account. + Indicates whether Microsoft Office Word’s picture user interface needs to be displayed. + + + Represents an object that provides the ability to manipulate blog images. + + + Enables picture providers to offer themselves as an upload location for blog pictures. + The ID of the picture provider. + The friendly name of the picture provider. + + + Allows a picture provider to display the user interface needed to guide the user through setting up a picture account. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + The ID of the provider. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + + + Used to post a picture object to its final destination in a blog. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Represents the name of the image file. + The URI of the picture. + + + Reserved for internal use. + + + + Reserved for internal use. + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + Used to create a custom task pane. + + + Creates an instance of a custom task pane. + + + + The CLSID or ProgID of a Microsoft ActiveX® object. + The title for the task pane. + The window that hosts the task pane. If not present, the parent of the task pane is the ActiveWindow property of the host application. + + + An interface that provides access to the method that is used to create an instance of a custom task pane. + + + Passes an object to a Microsoft ActiveX add-in that can then be used when creating a custom task pane. + The object is used by an add-in to create a task pane. + + + + + + + + + + + Represents the interface through which the methods of a object are accessed. + + + Performs some action on specific information items or document properties by using a custom Document Inspector module. + Specifies nn object representing the container object. + Specifies the unique identifier of the active document window. + Specifies an enumeration that indicates the status of the action. + Contains the results of the action. + + + Gets information about a custom Document Inspector module. + Represents the name of the module. + Represents the description of the module. + + + Inspects a document for specific information items or document properties by using a custom Document Inspector module. + An object representing the container document. + An value that represents the results of the inspection. + Contains a list of the information items or document properties found in the document. + Indicates to the user what action to take based on the results of the inspection. + + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a Contact card. + + + Gets the address in a Contact card. + + + Gets the value that represents the address type for the Contact card object. + + + Gets an Application object that represents the container application for the IMsoContactCard object. + + + Gets an value that represents the type of a Contact card. + + + Gets a 32-bit integer that indicates the application in which the IMsoContactCard object was created. + + + Returns the calling object. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value that indicates whether the data table changes font size when the data table size changes. Returns True, the default value, if the font size changes with data table size changes. Read/write. + Variant + + + Provides access to properties that determine visual characteristics of a data table border. Read-only. + IMsoBorder + + + + Deletes a data table. + + + Provides access to properties that determine the characteristics of the text in a data table. Read-only. + ChartFont + + + + Gets or sets a Boolean value that specifies whether the data table has a horizontal border. Read/write. + Boolean + + + Gets or sets a Boolean value that specifies whether to display a border around a data table. Read/write. + Boolean + + + Gets or sets a Boolean value that specifies whether the data table has a vertical border. Read/write. + Boolean + + + Gets the Parent object for the IMsoDataTable object. Read-only. + Object + + + Selects a IMsoDataTable object. + + + Gets or sets a Boolean value that specifies whether to display the legend with the data table. Read/write. + Boolean + + + Reserved for internal use. + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides access to functionality that lets you send documents as emails directly from Microsoft Office applications. + + + Returns a collection. + + + Sets or returns the introductory text that is included with a document that is sent using the MsoEnvelope object. The introductory text is included at the top of the document in the e-mail. + + + Returns a MailItem object that can be used to send the document as an e-mail. + + + Returns the Parent object for the specified object. + + + Reserved for internal use. + + + + + A Delegate type used to add an event handler for the event. The EnvelopeHide event occurs when the user interface (UI) that corresponds to the object is hidden. + + + A Delegate type used to add an event handler for the event. The EnvelopeShow event occurs when the user interface (UI) that corresponds to the object is displayed. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user interface (UI) that corresponds to the object is hidden. + + + Occurs when the user interface (UI) that corresponds to the object is displayed. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents the object passed into every Ribbon user interface (UI) control's callback procedure. + + + Represents the active window containing the Ribbon user interface that triggers a callback procedure. Read-only. + Object + + + Gets the ID of the control specified in the Ribbon XML markup customization file. Read-only. + String + + + Used to store arbitrary strings and fetch them at runtime. Read-only + String + + + The interface through which the Ribbon user interface (UI) communicates with a COM add-in to customize the UI. + + + Loads the XML markup, either from an XML customization file or from XML markup embedded in the procedure, that customizes the Ribbon user interface. + String + + + The object that is returned by the onLoad procedure specified on the customUI tag. The object contains methods for invalidating control properties and for refreshing the user interface. + + + Activates the specified custom tab. + Specifies the identifier of the custom Ribbon tab to be activated. + + + Activates the specified built-in tab. + Specifies the identifier of the custom Ribbon tab to be activated. + + + Activates the specified custom tab on the Microsoft Office Fluent Ribbon UI. Uses the fully qualified name of the tab which includes the identifier and the namespace of the tab. + Specifies the identifier of the custom Ribbon tab to be activated. + Specifies the namespace of the tab element. + + + Invalidates the cached values for all of the controls of the Ribbon user interface. + + + Invalidates the cached value for a single control on the Ribbon user interface. + Specifies the ID of the control that will be invalidated. + + + Used to invalidate a built-in control. + Specified the identifier of the control that will be invalidated. + + + Returns information about the language settings in a Microsoft Office application. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the locale identifier (LCID) for the install language, the user interface language, or the Help language. + Required . + + + Determines if the value for the constant has been identified in the Windows Registry as a preferred language for editing. + Required . + + + Returns the Parent object for the specified object. + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + Specifies the format for an e-mail message. These formats correspond to the formats supported by Microsoft Outlook for e-mail messages. + + + Plain text. + + + Hypertext Markup Language (HTML) formatting. + + + Rich Text Format (RTF) formatting. + + + Represents a collection of properties describing the metadata stored in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets an Integer indicating the number of items in the collection. Read-only. + Integer + + + Gets ID of the application in which the object was created. Read-only. + Integer + + + + Gets a property's value specifying its name as opposed to its index value. + + + + Contains the name of the property. + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Gets the schema XML for the object. Read-only. + String + + + Validates all of the properties in a collection object according to a schema. + String + + + + Represents a single property in a collection of properties describing the metadata stored in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the ID of the object. Read-only. + String + + + Gets a Boolean value that specifies whether the meta property is read-only. Read-only. + Boolean + + + Gets a Boolean value that specifies whether the meta property is required. Read-only. + Boolean + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets the data type of the object. Read-only. + + + + + + Validates a object representing a single property value according to a schema. + String + + + + Gets or sets the value of the object. Read/write. + Object + + + Specifies the buttons to be displayed when issuing an alert to the user with the DoAlert method of the Assistant object. + + + OK button. + + + OK and Cancel buttons. + + + Abort, Retry, and Ignore buttons. + + + Yes, No, and Cancel buttons. + + + Yes and No buttons. + + + Retry and Cancel buttons. + + + Yes, Yes to All, No, and Cancel buttons. Can only be used if the varSysAlert argument of the DoAlert method is set to False. + + + Specifies behavior when the user cancels an alert. Only is currently supported. + + + Default behavior for canceling an alert. + + + Not supported. + + + Not supported. + + + Not supported. + + + Not supported. + + + Not supported. + + + Specifies which button is set as the default when calling the DoAlert method of the Assistant object. + + + Default to first button. + + + Default to second button. + + + Default to third button. + + + Default to fourth button. + + + Default to fifth button. + + + Specifies which icon, if any, to display with an alert. + + + Displays no icon with the alert message. + + + Displays the Critical icon. + + + Displays the Query icon. + + + Displays the Warning icon. + + + Displays the Info icon. + + + Defines how to align specified objects relative to one another. + + + Align left sides of specified objects. + + + Align centers of specified objects. + + + Align right sides of specified objects. + + + Align tops of specified objects. + + + Align middles of specified objects. + + + Align bottoms of specified objects. + + + Specifies the animation action for the Office Assistant. + + + "Idle" animation action. + + + "Greeting" animation action. + + + "Goodbye" animation action. + + + "Begin speaking" animation action. + + + "Rest pose" animation action. + + + "Major success" animation action. + + + Major "Get attention" animation action. + + + Minor "Get attention" animation action. + + + "Searching" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Printing" animation action. + + + "Gesture right" animation action. + + + "Noting something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Working at something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Thinking" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Sending mail" animation action. + + + "Listens to computer" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Disappear" animation action. + + + "Appear" animation action. + + + "Get artsy" animation action. + + + "Get techy" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Get wizardy" animation action. + + + "Checking something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Look down" animation action. + + + "Look down and left" animation action. + + + "Look down and right" animation action. + + + "Look left" animation action. + + + "Look right" animation action. + + + "Look up" animation action. + + + "Look up and left" animation action. + + + "Look up and right" animation action. + + + "Saying" animation action. + + + "Gesture down" animation action. + + + "Gesture left" animation action. + + + "Gesture up" animation action. + + + "Empty trash" animation action. + + + Specifies a language setting in a Microsoft Office application. + + + Install language. + + + User interface language. + + + Help language. + + + Execution mode language. + + + User interface language used prior to the current user interface language. + + + Specifies the length of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states in the specified shape range. + + + Short. + + + Medium. + + + Long. + + + Specifies the style of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states. + + + No arrowhead. + + + Triangular. + + + Open. + + + Stealth-shaped. + + + Diamond-shaped. + + + Oval-shaped. + + + Specifies the width of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states. + + + Narrow. + + + Medium. + + + Wide. + + + Specifies the security mode an application uses when programmatically opening files. + + + Enables all macros. This is the default value when the application is started. + + + Uses the security setting specified in the Security dialog box. + + + Disables all macros in all files opened programmatically, without showing any security alerts. + + + Specifies the shape type for an AutoShape object. + + + Return value only; indicates a combination of the other states. + + + Rectangle. + + + Parallelogram. + + + Trapezoid. + + + Diamond. + + + Rounded rectangle. + + + Octagon. + + + Isosceles triangle. + + + Right triangle. + + + Oval. + + + Hexagon. + + + Cross. + + + Pentagon. + + + Can. + + + Cube. + + + Bevel. + + + Folded corner. + + + Smiley face. + + + Donut. + + + "No" symbol. + + + Block arc. + + + Heart. + + + Lightning bolt. + + + Sun. + + + Moon. + + + Arc. + + + Double bracket. + + + Double brace. + + + Plaque. + + + Left bracket. + + + Right bracket. + + + Left brace. + + + Right brace. + + + Block arrow that points right. + + + Block arrow that points left. + + + Block arrow that points up. + + + Block arrow that points down. + + + Block arrow with arrowheads that point both left and right. + + + Block arrow that points up and down. + + + Block arrows that point up, down, left, and right. + + + Block arrow with arrowheads that point left, right, and up. + + + Block arrow that follows a curved 90-degree angle. + + + Block arrow forming a U shape. + + + Block arrow with arrowheads that point left and up. + + + Block arrow that follows a sharp 90-degree angle. Points up by default. + + + Block arrow that curves right. + + + Block arrow that curves left. + + + Block arrow that curves up. + + + Block arrow that curves down. + + + Block arrow that points right with stripes at the tail. + + + Notched block arrow that points right. + + + Pentagon. + + + Chevron. + + + Callout with arrow that points right. + + + Callout with arrow that points left. + + + Callout with arrow that points up. + + + Callout with arrow that points down. + + + Callout with arrowheads that point both left and right. + + + Callout with arrows that point up and down. + + + Callout with arrows that point up, down, left, and right. + + + Block arrow that follows a curved 180-degree angle. + + + Process flowchart symbol. + + + Alternate process flowchart symbol. + + + Decision flowchart symbol. + + + Data flowchart symbol. + + + Predefined process flowchart symbol. + + + Internal storage flowchart symbol. + + + Document flowchart symbol. + + + Multi-document flowchart symbol. + + + Terminator flowchart symbol. + + + Preparation flowchart symbol. + + + Manual input flowchart symbol. + + + Manual operation flowchart symbol. + + + Connector flowchart symbol. + + + Off-page connector flowchart symbol. + + + Card flowchart symbol. + + + Punched tape flowchart symbol. + + + Summing junction flowchart symbol. + + + "Or" flowchart symbol. + + + Collate flowchart symbol. + + + Sort flowchart symbol. + + + Extract flowchart symbol. + + + Merge flowchart symbol. + + + Stored data flowchart symbol. + + + Delay flowchart symbol. + + + Sequential access storage flowchart symbol. + + + Magnetic disk flowchart symbol. + + + Direct access storage flowchart symbol. + + + Display flowchart symbol. + + + Explosion. + + + Explosion. + + + 4-point star. + + + 5-point star. + + + 8-point star. + + + 16-point star. + + + 24-point star. + + + 32-point star. + + + Ribbon banner with center area above ribbon ends. + + + Ribbon banner with center area below ribbon ends. + + + Ribbon banner that curves up. + + + Ribbon banner that curves down. + + + Vertical scroll. + + + Horizontal scroll. + + + Wave. + + + Double wave. + + + Rectangular callout. + + + Rounded rectangle-shaped callout. + + + Oval-shaped callout. + + + Cloud callout. + + + Callout with border and horizontal callout line. + + + Callout with diagonal straight line. + + + Callout with angled line. + + + Callout with callout line segments forming a U-shape. + + + Callout with horizontal accent bar. + + + Callout with diagonal callout line and accent bar. + + + Callout with angled callout line and accent bar. + + + Callout with accent bar and callout line segments forming a U-shape. + + + Callout with horizontal line. + + + Callout with no border and diagonal callout line. + + + Callout with no border and angled callout line. + + + Callout with no border and callout line segments forming a U-shape. + + + Callout with border and horizontal accent bar. + + + Callout with border, diagonal straight line, and accent bar. + + + Callout with border, angled callout line, and accent bar. + + + Callout with border, accent bar, and callout line segments forming a U-shape. + + + Button with no default picture or text. Supports mouse-click and mouse-over actions. + + + Home button. Supports mouse-click and mouse-over actions. + + + Help button. Supports mouse-click and mouse-over actions. + + + Information button. Supports mouse-click and mouse-over actions. + + + Back or Previous button. Supports mouse-click and mouse-over actions. + + + Forward or Next button. Supports mouse-click and mouse-over actions. + + + Beginning button. Supports mouse-click and mouse-over actions. + + + End button. Supports mouse-click and mouse-over actions. + + + Return button. Supports mouse-click and mouse-over actions. + + + Document button. Supports mouse-click and mouse-over actions. + + + Sound button. Supports mouse-click and mouse-over actions. + + + Movie button. Supports mouse-click and mouse-over actions. + + + Balloon. + + + Not supported. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Determines the type of automatic sizing allowed. + + + A combination of automatic sizing schemes are used. + + + No autosizing. + + + The shape is adjusted to fit the text. + + + The text is adjusted to fit the shape. + + + Indicates the background style for an object. + + + Specifies a combination of styles. + + + Specifies no styles. + + + Specifies style 1. + + + Specifies style 2. + + + Specifies style 3. + + + Specifies style 4. + + + Specifies style 5. + + + Specifies style 6. + + + Specifies style 7. + + + Specifies style 8. + + + Specifies style 9. + + + Specifies style 10. + + + Specifies style 11. + + + Specifies style 12. + + + Indicates which button the user clicked in a balloon. + + + Yes to all button. + + + Options button. + + + Tips button. + + + Close button. + + + Snooze button. + + + Search button. + + + Ignore button. + + + Abort button. + + + Retry button. + + + Next button. + + + Back button. + + + No button. + + + Yes button. + + + Cancel button. + + + OK button. + + + Null button. + + + Specifies what error occurred in a balloon. + + + No error was encountered. + + + Balloon won't appear because some other error occurred, such as another modal balloon is already active. + + + Balloon is too big to appear on the screen. + + + Balloon won't appear because there is insufficient memory. + + + Balloon contains a graphic that couldn't be displayed because the file doesn't exist or because the graphic isn't a valid .BMP or .WMF file. + + + Balloon contains an unrecognized or unsupported reference. + + + The balloon you attempted to display is modal, but it contains no buttons. The balloon won't be shown because it can't be dismissed. + + + The balloon you attempted to display is modeless, contains buttons, and has no procedure assigned to the Callback property. The balloon won't be shown because a callback procedure is required for modeless balloons. + + + Balloon contains an ASCII control character other than CR or LF and less than 32. + + + Balloon could not be displayed because of a COM failure. + + + Modal balloon was requested by an application that isn't the active application. Microsoft Office renders balloons for the active (topmost) application only. + + + Balloon contains more than twenty controls (check boxes or labels). + + + Specifies the type of label used in a balloon. + + + Labeled buttons. + + + Bulleted labels. + + + Numbered labels. + + + Specifies the position or behavior of a command bar. + + + Command bar is docked on the left side of the application window. + + + Command bar is docked at the top of the application window. + + + Command bar is docked on the right side of the application window. + + + Command bar is docked at the bottom of the application window. + + + Command bar floats on top of the application window. + + + Command bar will be a shortcut menu. + + + Command bar will be a menu bar (Macintosh only). + + + Specifies how a command bar is protected from user customization. + + + All aspects of command bar can be customized by user. + + + Command bar cannot be customized. + + + Command bar cannot be resized. + + + Command bar cannot be moved. + + + Command bar cannot be hidden. + + + Docking setting cannot be changed. + + + Command bar cannot be docked to the left or right. + + + Command bar cannot be docked to the top or bottom. + + + Specifies whether a command bar is in the first row or last row relative to other command bars in the same docking area. + + + First row of docking area. + + + Last row of docking area. + + + Specifies the type of the command bar. + + + Default command bar. + + + Menu bar. + + + Shortcut menu. + + + + + + + + + + + + + + + + + + + + + + Indicates the bevel type of a object. + + + Specifies a mixed type bevel. + + + Specifies no bevel. + + + Specifies a RelaxedInset bevel. + + + Specifies a Circle bevel. + + + Specifies a Slope bevel. + + + Specifies a Cross bevel. + + + Specifies an Angle bevel. + + + Specifies a SoftRound bevel. + + + Specifies a Convex bevel. + + + Specifies a CoolSlant bevel. + + + Specifies a Divot bevel. + + + Specifies a Riblet bevel. + + + Specifies a HardEdge bevel. + + + Specifies an ArtDeco bevel. + + + Specifies how a shape appears when viewed in black-and-white mode. + + + Not supported. + + + Default behavior. + + + Grayscale. + + + Light grayscale. + + + Inverse grayscale. + + + Gray with white fill. + + + White with grayscale fill. + + + Black with white fill. + + + Black. + + + White. + + + Not shown. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the type of button to be displayed at the bottom of an Office Assistant balloon. + + + No buttons. + + + OK button. + + + Cancel button. + + + OK and Cancel buttons. + + + Yes and No buttons. + + + Yes, No, and Cancel buttons. + + + Back and Close buttons. + + + Next and Close buttons. + + + Back, Next, and Close buttons. + + + Retry and Cancel buttons. + + + Abort, Retry, and Ignore buttons. + + + Search and Close buttons. + + + Back, Next, and Snooze buttons. + + + Tips, Options, and Close buttons. + + + Yes to All, No, and Cancel buttons. + + + Specifies the appearance of a command bar button control. + + + Button is not pressed down. + + + Button is pressed down. + + + Button is pressed down. + + + Specifies the style of a command bar button. + + + Default behavior. + + + Image only. + + + Text only. + + + Image and text, with text to the right of image. + + + Image with text wrapped and to the right of the image. + + + Image with text below. + + + Text only, centered and wrapped. + + + Image with text wrapped below image. + + + Reserved for internal use. + + + + + + + + + Specifies the size of the angle between the callout line and the side of the callout text box. + + + Return value only; indicates a combination of the other states. + + + Default angle. Angle can be changed as you drag the object. + + + 30˚ angle. + + + 45˚ angle. + + + 60˚ angle. + + + 90˚ angle. + + + Specifies starting position of the callout line relative to the text bounding box. + + + Return value only; indicates a combination of the other states. + + + Custom. If this value is used as the value for the PresetDrop property, the Drop and AutoAttach properties of the CalloutFormat object are used to determine where the callout line attaches to the text box. + + + Top. + + + Center. + + + Bottom. + + + Specifies the type of callout line. + + + Return value only; indicates a combination of the other states. + + + Single, horizontal callout line. + + + Single, angled callout line. + + + Callout line made up of two line segments. Callout line is attached on left side of text bounding box. + + + Callout line made up of two line segments. Callout line is attached on right side of text bounding box. + + + Specifies the character set to be used when rendering text. + + + Arabic character set. + + + Cyrillic character set. + + + English, Western European, and other Latin script character set. + + + Greek character set. + + + Hebrew character set. + + + Japanese character set. + + + Korean character set. + + + Multilingual Unicode character set. + + + Simplified Chinese character set. + + + Thai character set. + + + Traditional Chinese character set. + + + Vietnamese character set. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the color type. + + + Not supported. + + + Color is determined by values of red, green, and blue. + + + Color is defined by an application-specific scheme. + + + Color is determined by values of cyan, magenta, yellow, and black. + + + Color Management System color type. + + + Not supported. + + + Specifies whether the command bar combo box includes a label or not. + + + Combo box does not include a label. + + + Combo box includes a label, specified by the Caption property of the combo box. + + + Specifies whether the command bar button is a hyperlink. If the command bar button is a hyperlink, further specifies whether the hyperlink should launch another application such as the browser or insert a picture at the active selection point. + + + The command bar button is not a hyperlink. + + + Clicking the command bar button opens the link specified in the command bar button's TooltipText property. + + + Clicking the command bar button inserts a picture at the active selection point. + + + Defines the condition for comparison between a file and a specified property in a file search. + + + File can be any type. + + + File can be any Office file type. + + + Word document. + + + Excel workbook. + + + PowerPoint presentation. + + + Binder file. + + + Database. + + + Template. + + + Value of the file property specified in Name property of the PropertyTest object includes the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object includes the phrase specified in the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object begins with the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object ends with the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object and the value specified in the Value property of the PropertyTest object are near each other. + + + Value of the file property specified in Name property of the PropertyTest object is exactly the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is not the value specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is yesterday. + + + Date specified in the Name property of the PropertyTest object is today. + + + Date specified in the Name property of the PropertyTest object is tomorrow. + + + Date specified in the Name property of the PropertyTest object is within the last week. + + + Date specified in the Name property of the PropertyTest object is this week. + + + Date specified in the Name property of the PropertyTest object is next week. + + + Date specified in the Name property of the PropertyTest object is within the last month. + + + Date specified in the Name property of the PropertyTest object is this month. + + + Date specified in the Name property of the PropertyTest object is next month. + + + Date specified in the Name property of the PropertyTest object can be any time. + + + Date specified in the Name property of the PropertyTest object is between the dates specified with the Value and SecondValue properties of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is the same as the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is on or after the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is on or before the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is within the next time interval specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is within the last time interval specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object equals the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object does not equal the value specified in the Value property of the PropertyTest object. + + + Any number between values specified with the Value and SecondValue properties of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is at most the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is at least the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is more than the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is less than the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is "True". + + + Value of the file property specified in Name property of the PropertyTest object is "False". + + + Value of the file property specified in Name property of the PropertyTest object includes forms of the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in the Name property of the PropertyTest object matches the value specified in the Value property of the PropertyTest object when a FreeText search is used. + + + Outlook item. + + + Mail item. + + + Calendar item. + + + Contact item. + + + Note item. + + + Journal item. + + + Task item. + + + PhotoDraw file. + + + Data connection file. + + + Publisher file. + + + Project file. + + + Document imaging file. + + + Visio file. + + + Designer file. + + + Web page. + + + Priority equals "Low". Value of the Name property must be Priority. + + + Priority equals "Normal". Value of the Name property must be Priority. + + + Priority equals "High". Value of the Name property must be Priority. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "Low". Value of the Name property must be Priority or Importance. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "Normal". Value of the Name property must be Priority or Importance. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "High". Value of the Name property must be Priority or Importance. + + + Status equals "Not Started". Value of the Name property must be Status. + + + Status equals "In Progress". Value of the Name property must be Status. + + + Status equals "Completed". Value of the Name property must be Status. + + + Status equals "Waiting for Someone Else". Value of the Name property must be Status. + + + Status equals "Deferred". Value of the Name property must be Status. + + + Status does not equal "Not Started". Value of the Name property must be Status. + + + Status does not equal "In Progress". Value of the Name property must be Status. + + + Status does not equal "Completed". Value of the Name property must be Status. + + + Status does not equal "Waiting for Someone Else". Value of the Name property must be Status. + + + Status does not equal "Deferred". Value of the Name property must be Status. + + + Specifies the connector between two similar property test values. + + + Combine property test values to form one property test. + + + Treat property test values as separate criteria. + + + Specifies a type of connector. + + + Return value only; indicates a combination of the other states. + + + Straight line connector. + + + Elbow connector. + + + Curved connector. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the OLE client and OLE server roles in which a command bar control is used when two Microsoft Office applications are merged. + + + Control runs on neither client nor server. + + + Server-only control. + + + Client-only control. + + + Control runs on both client and server. + + + Specifies the type of the command bar control. + + + Custom control. Cannot be created through the object model. + + + Command button. + + + Text box. + + + Drop-down list. + + + Combo box. + + + Drop-down button. Cannot be created through the object model. + + + Split drop-down list. Cannot be created through the object model. + + + OCX drop-down list. Cannot be created through the object model. + + + Generic drop-down list. Cannot be created through the object model. + + + Graphic drop-down list. Cannot be created through the object model. + + + Pop-up. + + + Graphic pop-up menu. Cannot be created through the object model. + + + Pop-up button. Cannot be created through the object model. + + + Split button pop-up. Cannot be created through the object model. + + + Most Recently Used (MRU) pop-up. Cannot be created through the object model. + + + Label. Cannot be created through the object model. + + + Expanding grid. Cannot be created through the object model. + + + Split expanding grid. Cannot be created through the object model. + + + Grid. Cannot be created through the object model. + + + Gauge control. Cannot be created through the object model. + + + Graphic combo box. Cannot be created through the object model. + + + Pane. Cannot be created through the object model. + + + ActiveX control. + + + Spinner. Cannot be created through the object model. + + + Extended label. Cannot be created through the object model. + + + Work pane. Cannot be created through the object model. + + + Combo box in which the first matching choice is automatically filled in as the user types. Cannot be created through the object model. + + + Specifies the docking behavior of the custom task pane. + + + Dock the task pane on the left side of the document window. + + + Dock the task pane at the top of the document window. + + + Dock the task pane on the right side of the document window. + + + Dock the task pane at the bottom of the document window. + + + Don't dock the task pane. + + + Specifies retrictions on the docking behavior of the custom task pane. + + + No restrictions on docking the task pane. + + + There is no change from the current restriction setting for the task pane. + + + Task pane can't be docked to either the right or the left side of the document window. + + + Task pane can't be docked to either the top or the bottom of the document window. + + + Specifies the node type. + + + The node is an element. + + + The node is an attribute. + + + The node is a text node. + + + The node is a CData type. + + + The node is a processing instruction. + + + The node is a comment. + + + The node is a Document node. + + + Indicates how validation errors will be cleared or generated. + + + Specifies that where there is a non-empty schema collection available for the custom XML part and validation is in effect, any changes to the part will cause validation errors. + + + Specifies that the error will clear itself whenever any change is made to the node it is bound to. + + + Specifies that the error will not be cleared until the method is called. + + + Specifies the format of a date/time data type. + + + Specifies a mixed format. + + + Specifies a Mdyy format. + + + Specifies a ddddMMMMddyyyy format. + + + Specifies MMMMyyyy format. + + + Specifies a MMMMdyyyy format. + + + Specifies MMMyy format. + + + Specifies a MMMMyy format. + + + Specifies a MMyy format. + + + Specifies a MMddyyHmm format. + + + Specifies a MMddyyhmmAMPM format. + + + Specifies Hmm format. + + + Specifies a Hmmss format. + + + Specifies a hmmAMPM format. + + + Specifies a hmmssAMPM format. + + + Specifies that the Office application will determine the format. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies type of diagram node. + + + Diagram node is a subordinate of its parent. + + + Diagram node is an assistant to its parent. + + + Specifies the type of diagram. + + + Return value only; indicates a combination of the other states. + + + Organization chart diagram. + + + Cycle diagram. + + + Radial diagram. + + + Pyramid diagram. + + + Venn diagram. + + + Target diagram. + + + Specifies how to evenly distribute a collection of shapes. + + + Distribute horizontally. + + + Distribute vertically. + + + Represents the results of running a Document Inspector module. + + + Indicates that the Document Inspector module returned no issues or errors. + + + Indicates that the Document Inspector module found one or more occurrences of the search criteria. + + + Indicates that the Document Inspector module returned an error. + + + Specifies the data type for a document property. + + + Integer value. + + + Boolean value. + + + Date value. + + + String value. + + + Floating point value. + + + Specifies the editing type of a node. + + + Editing type is appropriate to the segments being connected. + + + Corner node. + + + Smooth node. + + + Symmetric node. + + + Specifies the document encoding (code page or character set) for the Web browser to use when a user views a saved document. + + + Thai. + + + Japanese (Shift-JIS). + + + Simplified Chinese GBK. + + + Korean. + + + Traditional Chinese Big 5. + + + Unicode little endian. + + + Unicode big endian. + + + Central European. + + + Cyrillic. + + + Western. + + + Greek. + + + Turkish. + + + Hebrew. + + + Arabic. + + + Baltic. + + + Vietnamese. + + + Web browser auto-detects type of encoding to use. + + + Web browser auto-detects type of Japanese encoding to use. + + + Web browser auto-detects type of Simplified Chinese encoding to use. + + + Web browser auto-detects type of Korean encoding to use. + + + Web browser auto-detects type of Traditional Chinese encoding to use. + + + Web browser auto-detects type of Cyrillic encoding to use. + + + Web browser auto-detects type of Greek encoding to use. + + + Web browser auto-detects type of Arabic encoding to use. + + + ISO 8859-1 Latin 1. + + + ISO 8859-2 Central Europe. + + + ISO 8859-3 Latin 3. + + + ISO 8859-4 Baltic. + + + ISO 8859-5 Cyrillic. + + + ISA 8859-6 Arabic. + + + ISO 8859-7 Greek. + + + ISO 8859-8 Hebrew. + + + ISO 8859-9 Turkish. + + + ISO 8859-15 with Latin 9. + + + ISO 8859-8 Hebrew (Logical). + + + ISO 2022-JP with no half-width Katakana. + + + ISO 2022-JP + + + ISO 2022-JP + + + ISO 2022-KR. + + + ISO 2022-CN encoding as used with Traditional Chinese. + + + ISO 2022-CN encoding as used with Simplified Chinese. + + + Macintosh Roman. + + + Macintosh Japanese. + + + Macintosh Traditional Chinese (Big 5). + + + Macintosh Korean. + + + Macintosh Arabic. + + + Macintosh Hebrew. + + + Macintosh Greek. + + + Macintosh Cyrillic. + + + Macintosh Simplified Chinese (GB 2312). + + + Macintosh Romanian. + + + Macintosh Ukrainian. + + + Macintosh Latin 2. + + + Macintosh Icelandic. + + + Macintosh Turkish. + + + Macintosh Croatian. + + + EBCDIC as used in the United States and Canada. + + + International EBCDIC. + + + EBCDIC Multilingual ROECE (Latin 2). + + + EBCDIC as used in the Modern Greek language. + + + EBCDIC as used with Turkish (Latin 5). + + + EBCDIC as used in Germany. + + + EBCDIC as used in Denmark and Norway. + + + EBCDIC as used in Finland and Sweden. + + + EBCDIC as used in Italy. + + + EBCDIC as used in Latin America and Spain. + + + EBCDIC as used in the United Kingdom. + + + EBCDIC as used with Japanese Katakana (extended). + + + EBCDIC as used in France. + + + Extended Binary Coded Decimal Interchange Code (EBCDIC) Arabic. + + + EBCDIC as used in the Greek language. + + + EBCDIC as used in the Hebrew language. + + + EBCDIC as used with Korean (extended). + + + EBCDIC as used with Thai. + + + EBCDIC as used in Iceland. + + + EBCDIC as used with Turkish. + + + EBCDIC as used with Russian. + + + EBCDIC as used with Serbian and Bulgarian. + + + EBCDIC as used with Japanese Katakana (extended) and Japanese. + + + EBCDIC as used in the United States and Canada, and with Japanese. + + + EBCDIC as used with Korean (extended) and Korean. + + + EBCDIC as used with Simplified Chinese (extended) and Simplified Chinese. + + + EBCDIC as used in the United States and Canada, and with Traditional Chinese. + + + EBCDIC as used with Japanese Latin (extended) and Japanese. + + + OEM as used in the United States. + + + OEM as used with Greek 437G. + + + OEM as used with Baltic. + + + OEM as used with multi-lingual Latin I. + + + OEM as used with multi-lingual Latin II. + + + OEM as used with Cyrillic. + + + OEM as used with Turkish. + + + OEM as used with Portuguese. + + + OEM as used with Icelandic. + + + OEM as used with Hebrew. + + + OEM as used with Canadian French. + + + OEM as used with Arabic. + + + OEM as used with Nordic languages. + + + OEM as used with Cyrillic II. + + + OEM as used with Modern Greek. + + + EUC as used with Japanese. + + + Extended Unix Code (EUC) as used with Chinese and Simplified Chinese. + + + EUC as used with Korean. + + + EUC as used with Taiwanese and Traditional Chinese. + + + ISCII as used with Devanagari. + + + ISCII as used with Bengali. + + + ISCII as used with Tamil. + + + ISCII as used with Telugu. + + + Indian Script Code for Information Interchange (ISCII) as used with Assamese. + + + ISCII as used with Oriya. + + + ISCII as used with Kannada. + + + ISCII as used with Malayalam. + + + ISCII as used with Gujarati. + + + ISCII as used with Punjabi. + + + Arabic ASMO. + + + Transparent Arabic. + + + Korean (Johab). + + + Taiwan CNS. + + + Taiwan TCA. + + + Taiwan Eten. + + + Taiwan IBM 5550. + + + Taiwan Teletext. + + + Taiwan Wang. + + + IA5, International Reference Version (IRV). + + + German (International Alphabet No. 5, or IA5). + + + IA5 as used with Swedish. + + + IA5 as used with Norwegian. + + + United States ASCII. + + + T61. + + + ISO 6937 Non-Spacing Accent. + + + KOI8-R. + + + Extended Alpha lowercase. + + + K0I8-U. + + + Europa. + + + Simplified Chinese (HZGB). + + + Simplified Chinese GB 18030. + + + UTF-7 encoding. + + + UTF-8 encoding. + + + Provides access to functionality that lets you send documents as emails directly from Microsoft Office applications. + + + Reserved for internal use. + + + + + + + + + + + + + Specifies how to use the value specified in the ExtraInfo property of the FollowHyperlink method. + + + The value specified in the ExtraInfo property is a string that is appended to the address. + + + The value specified in the ExtraInfo property is posted as a string or byte array. + + + Specifies whether the extrusion color is based on the extruded shape's fill (the front face of the extrusion) and automatically changes when the shape's fill changes, or whether the extrusion color is independent of the shape's fill. + + + Return value only; indicates a combination of the other states. + + + Extrusion color is based on shape fill. + + + Extrusion color is independent of shape fill. + + + Specifies the language to use to determine which line break level is used when the line break control option is turned on. + + + Japanese. + + + Korean. + + + Simplified Chinese. + + + Traditional Chinese. + + + Specifies how the application handles calls to methods and properties that require features not yet installed. + + + Generates a generic automation error at run time when uninstalled features are called. + + + Prompts the user to install new features. + + + Displays a progress meter during installation; does not prompt the user to install new features. + + + Specifies the type of a FileDialog object. + + + Open dialog box. + + + Save As dialog box. + + + File picker dialog box. + + + Folder picker dialog box. + + + Specifies the view presented to the user in a file dialog box. + + + Files displayed in a list without details. + + + Files displayed in a list with detail information. + + + Files displayed in a list with a pane showing the selected file's properties. + + + Files displayed in a list with a preview pane showing the selected file. + + + Files displayed as thumbnails. + + + Files displayed as large icons. + + + Files displayed as small icons. + + + Files displayed in Web view. + + + Files displayed as tiled icons. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + Specifies view to use for a file find process. + + + View file information. + + + View preview of file. + + + View summary information. + + + Specifies action to take when a user clicks an item in the task pane. + + + Edit file. + + + Create a new file. + + + Open file. + + + Specifies the task pane section to which to add a file or where the file reference exists. + + + Open Document section. + + + New section. + + + New from Existing File section. + + + New from Template section. + + + Bottom section. + + + Specifies a type of file. + + + All files. + + + Files with any of the following extensions: *.doc, *.xls, *.ppt, *.pps, *.obd, *.mdb, *.mpd, *.dot, *.xlt, *.pot, *.obt, *.htm, or *.html. + + + Microsoft Word document file (*.doc). + + + Microsoft Excel workbook (*.wbk). + + + PowerPoint presentation file (*.ppt), PowerPoint template file (*.pot), or PowerPoint slide show file (*.pps). + + + Microsoft Binder file (*.obd). + + + Database file (*.mdb). + + + Microsoft PowerPoint template (*.pot), Word template (*.dot), Excel template (*.xlt). + + + Any Microsoft Outlook item file. + + + Mail item file (*.msg). + + + Calendar item file (*.ics or *.vsc). + + + Contact item file (*.vcf). + + + Microsoft Outlook Note item. + + + Microsoft Outlook Journal item + + + Microsoft Outlook task item. + + + PhotoDraw item file (*.mix). + + + Data connection file (*.mdf). + + + Microsoft Publisher file (*.pub) + + + Project file (*.mpd). + + + Microsoft Document Imaging file (*.mdi). + + + Microsoft Visio file (*.vsd). + + + Visual Basic Active Designer file (*.dsr). + + + HTML file (*.htm or *.html). + + + + + + + + + + Specifies a shape's fill type. + + + Mixed fill. + + + Solid fill. + + + Patterned fill. + + + Gradient fill. + + + Textured fill. + + + Fill is the same as the background. + + + Picture fill. + + + Specifies how the Column and CompareTo properties are compared for an ODSOFilter object. + + + Column matches CompareTo if the CompareTo value is the same as the Column value. + + + Column matches CompareTo if the CompareTo value is not equal to the Column value. + + + Column matches CompareTo if the Column value is less than the CompareTo value. + + + Column matches CompareTo if the Column value is greater than the CompareTo value. + + + Column matches CompareTo if the Column value is less than or equal to the CompareTo value. + + + Column matches CompareTo if the Column value is greater than or equal to the CompareTo value. + + + Column passes filter if Column is blank. + + + Column passes filter if Column is blank. + + + Column matches CompareTo if any part of the CompareTo string is contained in the Column value. + + + Column matches CompareTo if any part of the CompareTo string is not contained in the Column value. + + + Specifies how a filter criterion relates to other filter criteria. + + + And conjunction. + + + Or conjunction. + + + Specifies whether a shape should be flipped horizontally or vertically. + + + Flip horizontally. + + + Flip vertically. + + + Represents one of the three language fonts contained in the collection + + + Represents the Latin font face. + + + Represents the font face for Complex Script languages. The Complex Script language collection supports Arabic, Georgian, Hebrew, Indian, Thai and Vietnamese alphabets. + + + Represents the East Asian font face. East Asian Languages include Simplified Chinese, Traditional Chinese, Japanese, and Korean. + + + Specifies the type of gradient used in a shape's fill. + + + Mixed gradient. + + + One-color gradient. + + + Two-color gradient. + + + Gradient colors set according to a built-in gradient of the set defined by the msoPresetGradientType constant. + + + + + + Specifies the style for a gradient fill. + + + Gradient is mixed. + + + Gradient running horizontally across the shape. + + + Gradient running vertically down the shape. + + + Diagonal gradient moving from a bottom corner up to the opposite corner. + + + Diagonal gradient moving from a top corner down to the opposite corner. + + + Gradient running from a corner to the other three corners. + + + Gradient running from the title outward. + + + Gradient running from the center out to the corners. + + + Specifies the horizontal alignment of text in a text frame. + + + Return value only; indicates a combination of the other states. + + + No alignment. + + + Text is centered horizontally. + + + Specifies the view in which an HTML project or project item is opened. + + + Open project in source view. + + + Open project in text view. + + + Specifies the current state of an HTMLProject object. + + + Document is locked. In a Microsoft Office host application or Microsoft Script Editor, indicates that the Refresh toolbar is displayed in the host application. + + + Project is locked. In the Microsoft Script Editor, indicates that the Refresh toolbar is displayed. + + + Document is unlocked. In a Microsoft Office host application or Microsoft Script Editor, indicates that the Refresh toolbar is not displayed at all. + + + Specifies the type of hyperlink. + + + Hyperlink applies to a Range object. + + + Hyperlink applies to a Shape object. + + + Hyperlink applies to an inline shape. Used only with Microsoft Word. + + + Specifies an icon type to show in a Balloon object. + + + No icon. + + + Alert icon. + + + Tip icon. + + + Information alert icon. + + + Warning alert icon. + + + Query alert icon. + + + Critical alert icon. + + + + + + + + + + + + + Specifies which language to use. + + + Mixed languages. + + + No language specified. + + + No proofing requested. + + + Afrikaans. + + + Albanian. + + + Amharic. + + + Arabic as spoken in Algeria. + + + Arabic as spoken in Bahrain. + + + Arabic as spoken in Egypt. + + + Arabic as spoken in Iraq. + + + Arabic as spoken in Jordan. + + + Arabic as spoken in Kuwait. + + + Arabic as spoken in Lebanon. + + + Arabic as spoken in Libya. + + + Arabic as spoken in Morocco. + + + Arabic as spoken in Oman. + + + Arabic as spoken in Qatar. + + + Arabic. + + + Arabic as spoken in Syria. + + + Arabic as spoken in Tunisia. + + + Arabic as spoken in the United Arab Emirates. + + + Arabic as spoken in Yemen. + + + Armenian. + + + Assamese. + + + Azeri-Cyrillic. + + + Azeri-Latin. + + + Basque (Basque). + + + Belarusian. + + + Bengali. + + + Bosnian. + + + The Bosnian Bosnia Herzegovina Cyrillic language. + + + The Bosnian Bosnia Herzegovina Latin language. + + + Bulgarian. + + + Burmese. + + + Catalan. + + + Chinese as spoken in Hong Kong SAR. + + + Chinese as spoken in Macao SAR. + + + Simplified Chinese. + + + Chinese as spoken in Singapore. + + + Traditional Chinese. + + + Cherokee. + + + Croatian. + + + Czech. + + + Danish. + + + Divehi. + + + Belgian Dutch. + + + Dutch. + + + Dzongkha as spoken in Bhutan. + + + Edo. + + + English as spoken in Australia. + + + English as spoken in Belize. + + + English as spoken in Canada. + + + English as spoken in the Caribbean. + + + English as spoken in Indonesia. + + + English as spoken in Ireland. + + + English as spoken in Jamaica. + + + English as spoken in New Zealand. + + + English as spoken in the Philippines. + + + English as spoken in South Africa. + + + English as spoken in Trinidad and Tobago. + + + English as spoken in the United Kingdom. + + + English as spoken in the United States. + + + English as spoken in Zimbabwe. + + + Estonian. + + + Faeroese. + + + Farsi. + + + Filipina. + + + Finnish. + + + Belgian French. + + + French as spoken in Cameroon. + + + French as spoken in Canada. + + + French as spoken in Cote d'Ivoire. + + + French. + + + French as spoken in Haiti. + + + French as spoken in Luxembourg. + + + French as spoken in Mali. + + + French as spoken in Monaco. + + + French as spoken in Morocco. + + + French as spoken in French Reunion Island. + + + French as spoken in Senegal. + + + French as spoken in Switzerland. + + + French as spoken in the West Indies. + + + French as spoken in Zaire. + + + The French Congo DRC language. + + + French as spoken in the Netherlands. + + + Fulfulde. + + + Gaelic as spoken in Ireland. + + + Gaelic as spoken in Scotland. + + + Galician. + + + Georgian. + + + German as spoken in Austria. + + + German. + + + German as spoken in Liechtenstein. + + + German as spoken in Luxembourg. + + + German as spoken in Switzerland. + + + Greek. + + + Guarani. + + + Gujarati. + + + Hausa. + + + Hawaiian. + + + Hebrew. + + + Hindi. + + + Hungarian. + + + Ibibio. + + + Icelandic. + + + Igbo. + + + Indonesian. + + + Inuktitut. + + + Italian. + + + Italian as spoken in Switzerland. + + + Japanese. + + + Kannada. + + + Kanuri. + + + Kashmiri. + + + Kashmiri in Devanagari script. + + + Kazakh. + + + Khmer. + + + Kirghiz. + + + Konkani. + + + Korean. + + + Kyrgyz. + + + Latin. + + + Lao. + + + Latvian. + + + Lithuanian. + + + Macedonian. + + + Macedonian FYROM language. + + + Malaysian. + + + Malay as spoken in Brunei Darussalam. + + + Malayalam. + + + Maltese. + + + Manipuri. + + + Maori. + + + Marathi. + + + Mongolian. + + + Nepali. + + + Bokmol as spoken in Norway. + + + Nynorsk as spoken in Norway. + + + Oriya. + + + Oromo. + + + Pashto. + + + Polish. + + + Brazilian Portuguese. + + + Portuguese. + + + Punjabi. + + + Quechua as spoken in Bolivia. + + + Quechua as spoken in Ecuador. + + + Quechua as spoken in Peru. + + + Rhaeto-Romanic. + + + Romanian as spoken in Moldova. + + + Romanian. + + + Russian as spoken in Moldova. + + + Russian. + + + Sami/Lappish. + + + Sanskrit. + + + Sepedi. + + + The Serbian Bosnia Herzegovina Cyrillic language. + + + The Serbian Bosnia Herzegovina Latin language. + + + Serbian/Cyrillic. + + + Serbian/Latin. + + + Sesotho. + + + Sindhi. + + + Sindhi as spoken in Pakistan. + + + Sinhalese. + + + Slovak. + + + Slovenian. + + + Somali. + + + Sorbian. + + + Spanish as spoken in Argentina. + + + Spanish as spoken in Bolivia. + + + Spanish as spoken in Chile. + + + Spanish as spoken in Colombia. + + + Spanish as spoken in Costa Rica. + + + Spanish as spoken in the Dominican Republic. + + + Spanish as spoken in Ecuador. + + + Spanish as spoken in El Salvador. + + + Spanish as spoken in Guatemala. + + + Spanish as spoken in Honduras. + + + Spanish as spoken in Mexico. + + + Spanish as spoken in Nicaragua. + + + Spanish as spoken in Panama. + + + Spanish as spoken in Paraguay. + + + Spanish as spoken in Peru. + + + Spanish as spoken in Puerto Rico. + + + Spanish (Modern Sort). + + + Spanish. + + + Spanish as spoken in Uruguay. + + + Spanish as spoken in Venezuela. + + + Sutu. + + + Swahili. + + + Swedish as spoken in Finland. + + + Swedish. + + + Syriac. + + + Tajik. + + + Tamil. + + + Tamazight. + + + Tamazight (Latin). + + + Tatar. + + + Telugu. + + + Thai. + + + Tibetan. + + + Tigrigna as spoken in Ethiopia. + + + Tigrigna as spoken in Eritrea. + + + Tsonga. + + + Tswana. + + + Turkish. + + + Turkmen. + + + Ukrainian. + + + Urdu. + + + Uzbek (Cyrillic). + + + Uzbek (Latin). + + + Venda. + + + Vietnamese. + + + Welsh. + + + Xhosa. + + + Yi. + + + Yiddish. + + + Yoruba. + + + Zulu. + + + Reserved for internal use. + + + + + + + + + + + + Specifies the period of time to filter files by the date last modified. Used with the LastModified property of the FileSearch object. + + + File last modified yesterday. + + + File last modified today. + + + File last modified last week. + + + File last modified this week. + + + File last modified last month. + + + File last modified this month. + + + File last modified any time. + + + Indicates the effects lighting for an object. + + + Specifies the Mixed effect. + + + Specifies the LegacyFlat1 effect. + + + Specifies the LegacyFlat2 effect. + + + Specifies the LegacyFlat3 effect. + + + Specifies the LegacyFlat4 effect. + + + Specifies the LegacyNormal1 effect. + + + Specifies the LegacyNormal2 effect. + + + Specifies the LegacyNormal3 effect. + + + Specifies the LegacyNormal4 effect. + + + Specifies the LegacyHarsh1 effect. + + + Specifies the LegacyHarsh2 effect. + + + Specifies the LegacyHarsh3 effect. + + + Specifies the LegacyHarsh4 effect. + + + Specifies the ThreePoint effect. + + + Specifies the Balanced effect. + + + Specifies the Soft effect. + + + Specifies the Harsh effect. + + + Specifies the Flood effect. + + + Specifies the Contrasting effect. + + + Specifies the Morning effect. + + + Specifies the Sunrise effect. + + + Specifies the Sunset effect. + + + Specifies the Chilly effect. + + + Specifies the Freezing effect. + + + Specifies the Flat effect. + + + Specifies the TwoPoint effect. + + + Specifies the Glow effect. + + + Specifies the BrightRoom effect. + + + Specifies the dash style for a line. + + + Not supported. + + + Line is solid. + + + Line is made up of square dots. + + + Line is made up of round dots. + + + Line consists of dashes only. + + + Line is a dash-dot pattern. + + + Line is a dash-dot-dot pattern. + + + Line consists of long dashes. + + + Line is a long dash-dot pattern. + + + + + + + + + + + + + + + Specifies the style for a line. + + + Not supported. + + + Single line. + + + Two thin lines. + + + Thick line next to thin line. For horizontal lines, thick line is below thin line. For vertical lines, thick line is to the right of the thin line. + + + Thick line next to thin line. For horizontal lines, thick line is above thin line. For vertical lines, thick line is to the left of the thin line. + + + Thick line with a thin line on each side. + + + Specifies animation style for Microsoft Office command bars. + + + No animation. + + + Random animation. + + + Menus unfold into view. + + + Menus slide into view. + + + Specifies the metadata property type. + + + Represents an unknown value. + + + Represents a Boolean value. + + + Represents a value from one or more choices. + + + Represents a calculated value. + + + Represents a computed value. + + + Represents a Currency value + + + Represents a DateTime value. + + + Represents a value from two or more choices that is written-in by the user. + + + Represents a GUID value. + + + Represents an Integer value. + + + Represents a value used to lookup another value. + + + Represents a collection of choices used to lookup another value. + + + Represents a collection of choices. + + + Represents a collection of choices that require the user to write-in a value. + + + Represents a value of one or more sentences. + + + Represents a generic number data type. + + + Represents a Text value. + + + Represents a URL. + + + Represents a category of user. + + + + + + + + + + + + Represents the maximum value for a range. + + + This enumeration has been deprecated and should not be used. + + + Internal use only. + + + Internal use only. + + + Specifies the mode type for a Balloon object. + + + Modal. User must dismiss balloon before continuing work. + + + Auto-down. Balloon is dismissed when user clicks anywhere on the screen. + + + Modeless. User can work in application while balloon is displayed. + + + This enumeration has been deprecated and should not be used. + + + Internal use only. + + + Internal use only. + + + Internal use only. + + + Internal use only. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the menu group that a command bar pop-up control belongs to when the menu groups of the OLE server are merged with the menu groups of an OLE client (that is, when an object of the container application type is embedded in another application). + + + Pop-up control is not merged. + + + File menu. + + + Edit menu. + + + Container menu. + + + Object menu. + + + Window menu. + + + Help menu. + + + Indicates how to format the child nodes in an organization chart. + + + Return value for a parent node that has children formatted using more than one MsoOrgChartLayoutType. + + + Places child nodes horizontally below the parent node. + + + Places child nodes vertically below the parent node on both the left and the right side. + + + Places child nodes vertically below the parent node on the left side. + + + Places child nodes vertically below the parent node on the right side. + + + + + + Specifies orientation of an organization chart. + + + Mixed orientation. + + + Vertical orientation. + + + Specifies orientation of an object when it is displayed or printed. + + + Mixed orientation. + + + Horizontal (landscape) orientation. + + + Vertical (portrait) orientation. + + + Specifies paragraph alignment for a text block. + + + Use a combination of alignment styles. + + + Specifies that the leftmost character of each line is aligned to the left margin, and the right edge of each line is ragged. This is the default alignment for paragraphs with left-to-right text direction. + + + + Specifies that the center of each line of text is aligned to the midpoint of the right and left text box margins, and the left and right edges of each line are ragged. + + + Specifies that the rightmost character of each line is aligned to the right margin, and the left edge of each line is ragged. This is the default alignment for paragraphs with right-to-left text direction. + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting space between and within words. The last line of the paragraph is aligned to the left margin if text direction is left-to-right, or to the right margin if text direction is right-to-left. + + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting the same amount from each character. The last line of the paragraph is aligned to the left margin if text direction is left-to-right, or to the right margin if text direction is right-to-left. + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting space between (but not within) words. The last line of the paragraph is aligned to the left margin. + + + Specifies the alignment or adjustment of kashida length in Arabic text. Kashida are special characters used to extend the joiner between two Arabic characters. + + + Specifies the format of a file or folder path. + + + Represents a mixed format. + + + Represents no format. + + + Represents the Type1 format. + + + Represents the Type2 format. + + + Represents the Type3 format. + + + Represents the Type4 format. + + + Specifies the fill pattern used in a shape. + + + Not supported. + + + 5% of the foreground color. + + + 10% of the foreground color. + + + 20% of the foreground color. + + + 25% of the foreground color. + + + 30% of the foreground color. + + + 40% of the foreground color. + + + 50% of the foreground color. + + + 60% of the foreground color. + + + 70% of the foreground color. + + + 75% of the foreground color. + + + 80% of the foreground color. + + + 90% of the foreground color. + + + Thick horizontal lines in the foreground color. + + + Thick vertical lines in the foreground color. + + + Thick lines in the foreground color running from the top to the right-hand side of the shape. + + + Thick lines in the foreground color running from the top to the left-hand side of the shape. + + + Small squares in alternating foreground/background colors. + + + Trellis pattern in the foreground color. + + + Thin horizontal lines in the foreground color. + + + Thin vertical lines in the foreground color. + + + Thin lines in the foreground color running from the top to the right-hand side of the shape. + + + Thin lines in the foreground color running from the top to the left-hand side of the shape. + + + Solid, closely spaced perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Dotted perpendicular lines in the foreground color running diagonally to form diamonds across the shape. + + + Widely spaced lines in the foreground color running from the top to the right-hand side of the shape. + + + Widely spaced lines in the foreground color running from the top to the left-hand side of the shape. + + + Dashed lines in the foreground color running from the top to the left-hand side of the shape. + + + Dashed lines in the foreground color running from the top to the right-hand side of the shape. + + + Narrowly spaced vertical lines in the foreground color. + + + Narrowly spaced horizontal lines in the foreground color. + + + Dashed vertical lines in the foreground color. + + + Dashed horizontal lines in the foreground color. + + + Large dots in the foreground color scattered across the shape. + + + Solid, widely spaced perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Rectangular brick pattern running horizontally across the shape. + + + Squares in alternating foreground/background colors. + + + Small dots in the foreground color scattered across the shape. + + + Zigzag lines running horizontally across the shape. + + + Diamond shapes in alternating foreground/background colors. + + + Rectangular brick pattern running diagonally across the shape. + + + Solid perpendicular lines in the foreground color running diagonally to form diamonds across the shape. + + + Very thick solid lines in the foreground color running vertically, coupled with very thick lines and 40% of the foreground color running horizontally. + + + Circles that use foreground and background colors to make them appear three-dimensional, oriented in rows across the shape. + + + Weave pattern in the foreground color running diagonally across the shape. + + + Dotted perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Small angled shapes in the foreground color running in alternating rows down the shape. + + + Overlapping curved rectangles running diagonally across the shape. + + + Wavy lines in the foreground color. + + + Horizontal + + + Vertical + + + Cross + + + Downward Diagonal + + + Upward Diagonal + + + Diagonal Cross + + + Specifies an Information Rights Management (IRM) permission type for a document. + + + Permission to view. + + + Permission to read. + + + Permission to edit. + + + Permission to save. + + + Permission to extract. + + + Permission to change. + + + Permission to print. + + + Permission to access the object model programmatically. + + + Full control permissions. + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the color transformation applied to a picture. + + + Mixed transformation. + + + Default color transformation. + + + Grayscale transformation. + + + Black-and-white transformation. + + + Watermark transformation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates the effects camera type used by the specified object. + + + Specifies a mixed effect. + + + Specifies Legacy Oblique Upper Left. + + + Specifies Legacy Oblique Top. + + + Specifies Legacy Oblique Upper Right. + + + Specifies Legacy Oblique Left. + + + Specifies Legacy Oblique Front. + + + Specifies Legacy Oblique Right. + + + Specifies Legacy Oblique Lower Left. + + + Specifies Legacy Oblique Bottom. + + + Specifies Legacy Oblique Lower Right. + + + Specifies Legacy Perspective Upper Left. + + + Specifies Legacy Perspective Top. + + + Specifies Legacy Perspective Upper Right. + + + Specifies Legacy Perspective Left. + + + Specifies Legacy Perspective Front. + + + Specifies Legacy Perspective Right. + + + Specifies Legacy Perspective Lower Left. + + + Specifies Legacy Perspective Bottom. + + + Specifies Legacy Perspective Lower Right. + + + Specifies Orthographic Front. + + + Specifies Isometric Top Up. + + + Specifies Isometric Top Down. + + + Specifies Isometric Bottom Up. + + + Specifies Isometric Bottom Down. + + + Specifies Isometric Left Up. + + + Specifies Isometric Left Down. + + + Specifies Isometric Right Up. + + + Specifies Isometric Right Down. + + + Specifies Isometric OffAxis1 Left. + + + Specifies Isometric OffAxis1 Right. + + + Specifies Isometric OffAxis1 Top. + + + Specifies Isometric OffAxis2 Left. + + + Specifies Isometric OffAxis2 Right. + + + Specifies Isometric OffAxis2 Top. + + + Specifies Isometric OffAxis3 Left. + + + Specifies Isometric OffAxis3 Right. + + + Specifies Isometric OffAxis3 Bottom. + + + Specifies Isometric OffAxis4 Left. + + + Specifies Isometric OffAxis4 Right. + + + Specifies Isometric OffAxis4 Bottom. + + + Specifies Oblique Upper Left. + + + Specifies Oblique Top. + + + Specifies Oblique Upper Right. + + + Specifies Oblique Left. + + + Specifies Oblique Right. + + + Specifies Oblique Lower Left. + + + Specifies Oblique Bottom. + + + Specifies Oblique Lower Right. + + + Specifies Perspective Front. + + + Specifies Perspective Left. + + + Specifies Perspective Right. + + + Specifies Perspective Above. + + + Specifies Perspective Below. + + + Specifies Perspective Above Left Facing. + + + Specifies Perspective Above Right Facing. + + + Specifies Perspective Contrasting Left Facing. + + + Specifies Perspective Contrasting Right Facing. + + + Specifies Perspective Heroic Left Facing. + + + Specifies Perspective Heroic Right Facing. + + + Specifies Perspective Heroic Extreme Left Facing. + + + Specifies Perspective Heroic Extreme Right Facing. + + + Specifies Perspective Relaxed. + + + Specifies Perspective Relaxed Moderately. + + + Specifies the direction that the extrusion's sweep path takes away from the extruded shape (the front face of the extrusion). + + + Return value only; indicates a combination of the other states. + + + Bottom right. + + + Bottom. + + + Bottom left. + + + Right. + + + No extrusion. + + + Left. + + + Top right. + + + Top. + + + Top left. + + + Specifies which predefined gradient to use to fill a shape. + + + Mixed gradient. + + + Early Sunset gradient. + + + Late Sunset gradient. + + + Nightfall gradient. + + + Daybreak gradient. + + + Horizon gradient. + + + Desert gradient. + + + Ocean gradient. + + + Calm Water gradient. + + + Fire gradient. + + + Fog gradient. + + + Moss gradient. + + + Peacock gradient. + + + Wheat gradient. + + + Parchment gradient. + + + Mahogany gradient. + + + Rainbow gradient. + + + Rainbow II gradient. + + + Gold gradient. + + + Gold II gradient. + + + Brass gradient. + + + Chrome gradient. + + + Chrome II gradient. + + + Silver gradient. + + + Sapphire gradient. + + + Specifies the location of lighting on an extruded (three-dimensional) shape relative to the shape. + + + Not supported. + + + Lighting comes from the top left. + + + Lighting comes from the top. + + + Lighting comes from the top right. + + + Lighting comes from the left. + + + No lighting. + + + Lighting comes from the right. + + + Lighting comes from the bottom left. + + + Lighting comes from the bottom. + + + Lighting comes from the bottom right. + + + Specifies the intensity of light used on a shape. + + + Not supported. + + + Dim light. + + + Normal light. + + + Bright light. + + + Specifies the extrusion surface material. + + + Return value only; indicates a combination of the other states. + + + Matte. + + + Plastic. + + + Metal. + + + Wire frame. + + + Matte2 + + + Plastic2 + + + Metal2 + + + Warm Matte + + + Translucent Powder + + + Powder + + + DarkEdge + + + Soft Edge + + + Clear + + + Flat + + + Soft Metal + + + Specifies what text effect to use on a WordArt object. + + + Not used. + + + First text effect. + + + Second text effect. + + + Third text effect. + + + Fourth text effect. + + + Fifth text effect. + + + Sixth text effect. + + + Seventh text effect. + + + Eighth text effect. + + + Ninth text effect. + + + Tenth text effect. + + + Eleventh text effect. + + + Twelfth text effect. + + + Thirteenth text effect. + + + Fourteenth text effect. + + + Fifteenth text effect. + + + Sixteenth text effect. + + + Seventeenth text effect. + + + Eighteenth text effect. + + + Nineteenth text effect. + + + Twentieth text effect. + + + Twenty-first text effect. + + + Twenty-second text effect. + + + Twenty-third text effect. + + + Twenty-fourth text effect. + + + Twenty-fifth text effect. + + + Twenty-sixth text effect. + + + Twenty-seventh text effect. + + + Twenty-eighth text effect. + + + Twenty-ninth text effect. + + + Thirtieth text effect. + + + Specifies shape of WordArt text. + + + Not used. + + + No shape applied. + + + Text follows the shape of a stop sign. + + + Text slants down, then up. + + + Text slants up, then down. + + + Text slants down to its center point and then slants up. + + + Text slants up to its center point and then slants down. + + + Text appears to be written on the inside of a 3-D ring. + + + Text appears to be written on the outside of a 3-D ring. + + + Text is an arch that curves up. + + + Text is an arch that curves down. + + + Text follows a circle, reading clockwise. + + + Text is curved around a center "button." + + + Text is a 3-D arch that curves up. + + + Text is a 3-D arch that curves down. + + + Text has a 3-D effect and follows a circle, reading clockwise. + + + Text is seen in 3-D, curved around a center "button." + + + Text curves down and to the right as font size increases. + + + Text curves down and to the right as font size decreases. + + + Text is stretched to fill the height of the shape, with only a slight curve up. + + + Text is stretched to fill the height of the shape, with only a slight curve down. + + + Text follows a wave up, then down and up again. + + + Text follows a wave down, then up and down again. + + + Text follows a line that curves up, then down, then up and down again. + + + Text follows a line that curves down, then up, then down and up again. + + + Font size of text increases to its center point, then decreases. Center point of each letter is on the same straight line. + + + Font size decreases to the text's midpoint, then increases to the starting size. + + + Font size of text increases to its center point, then decreases. Center point of each letter follows an arch that curves downward. + + + Font size decreases to the text's midpoint, then increases to the starting size, while keeping the top of the text along the same curve. + + + Font size of text increases to its center point, then decreases. Center point of each letter follows an arch that curves upward. + + + Font size decreases to the text's midpoint, then increases to the starting size, while keeping the bottom of the text along the same curve. + + + Font size increases to the text's midpoint, then decreases to the starting size. + + + Font size decreases, increases, and decreases again across the text. + + + Right side of text appears to be closer to the viewer than left side. + + + Left side of text appears to be closer to the viewer than right side. + + + Bottom of text appears to be closer to the viewer than top. + + + Top of the text appears to be closer to the viewer than bottom of the text. + + + Text slants up and to the right. + + + Text slants down and to the right. + + + Text slants down and to the right as font size increases. + + + Text slants up and to the right as font size decreases. + + + Specifies texture to be used to fill a shape. + + + Not used. + + + Papyrus texture. + + + Canvas texture. + + + Denim texture. + + + Woven mat texture. + + + Water droplets texture. + + + Paper bag texture. + + + Fish fossil texture. + + + Sand texture. + + + Green marble texture. + + + White marble texture. + + + Brown marble texture. + + + Granite texture. + + + Newsprint texture. + + + Recycled paper texture. + + + Parchment texture. + + + Stationery texture. + + + Blue tissue paper texture. + + + Pink tissue paper texture. + + + Purple mesh texture. + + + Bouquet texture. + + + Cork texture. + + + Walnut texture. + + + Oak texture. + + + Medium wood texture. + + + Specifies an extrusion (three-dimensional) format. + + + Not used. + + + First 3-D format. + + + Second 3-D format. + + + Third 3-D format. + + + Fourth 3-D format. + + + Fifth 3-D format. + + + Sixth 3-D format. + + + Seventh 3-D format. + + + Eighth 3-D format. + + + Ninth 3-D format. + + + Tenth 3-D format. + + + Eleventh 3-D format. + + + Twelfth 3-D format. + + + Thirteenth 3-D format. + + + Fourteenth 3-D format. + + + Fifteenth 3-D format. + + + Sixteenth 3-D format. + + + Seventeenth 3-D format. + + + Eighteenth 3-D format. + + + Nineteenth 3-D format. + + + Twentieth 3-D format. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies where a node is added to a diagram relative to existing nodes. + + + Node is added before current node. + + + Node is added after current node. + + + Node is added before first sibling. + + + Node is added after last sibling. + + + Specifies which part of the shape retains its position when the shape is scaled. + + + Shape's top left corner retains its position. + + + Shape's midpoint retains its position. + + + Shape's bottom right corner retains its position. + + + Specifies the ideal screen resolution to be used to view a document in a Web browser. + + + 544x376 resolution. + + + 640x480 resolution. + + + 720x512 resolution. + + + 800x600 resolution. + + + 1024x768 resolution. + + + 1152x882 resolution. + + + 1152x900 resolution. + + + 1280x1024 resolution. + + + 1600x1200 resolution. + + + 1800x1440 resolution. + + + 1920x1200 resolution. + + + Specifies scripting language of the active script. + + + Java. + + + Visual Basic. + + + Active Server Pages (ASP). + + + A language other than ASP, Java, or Visual Basic. + + + Specifies the location of the script anchor within a document. + + + Script anchor is in the head of the document. + + + Script anchor is in the body of the document. + + + Indicates the area in which the Execute method of the FileSearch object searches for files. + + + Searches the My Computer node. + + + Searches Microsoft Outlook folders. + + + Searches the My Network Places node. + + + Searches a custom path. Custom path is defined by the LookIn property of the FileSearch object. + + + Specifies the type for a segment. + + + Line. + + + Curve. + + + Specifies the type of shadowing effect. + + + Specifies a combination of inner and outer shadow effects. + + + Specifies the inner shadow effect. + + + Specifies the outer shadow effect. + + + Specifies the type of shadow displayed with a shape. + + + Not supported. + + + First shadow type. + + + Second shadow type. + + + Third shadow type. + + + Fourth shadow type. + + + Fifth shadow type. + + + Sixth shadow type. + + + Seventh shadow type. + + + Eighth shadow type. + + + Ninth shadow type. + + + Tenth shadow type. + + + Eleventh shadow type. + + + Twelfth shadow type. + + + Thirteenth shadow type. + + + Fourteenth shadow type. + + + Fifteenth shadow type. + + + Sixteenth shadow type. + + + Seventeenth shadow type. + + + Eighteenth shadow type. + + + Nineteenth shadow type. + + + Twentieth shadow type. + + + Twenty first shadow type. + + + Twenty second shadow type. + + + Twenty third shadow type. + + + Twenty forth shadow type. + + + Twenty fifth shadow type. + + + Twenty sixth shadow type. + + + Twenty seventh shadow type. + + + Twenty eighth shadow type. + + + Twenty ninth shadow type. + + + Thirtieth shadow type. + + + Thirty first shadow type. + + + Thirty second shadow type. + + + Thirty third shadow type. + + + Thirty forth shadow type. + + + Thirty fifth shadow type. + + + Thirty sixth shadow type. + + + Thirty seventh shadow type. + + + Thirty eighth shadow type. + + + Thirty ninth shadow type. + + + Fortieth shadow type. + + + Forty first shadow type. + + + Forty second shadow type. + + + Forty third shadow type. + + + Indicates the line and shape style. + + + A mix of shape styles. + + + No shape style. + + + Shape style 1. + + + Shape style 2. + + + Shape style 3. + + + Shape style 4. + + + Shape style 5. + + + Shape style 6. + + + Shape style 7. + + + Shape style 8. + + + Shape style 9. + + + Shape style 10. + + + Shape style 11. + + + Shape style 12. + + + Shape style 13. + + + Shape style 14. + + + Shape style 15. + + + Shape style 16. + + + Shape style 17. + + + Shape style 18. + + + Shape style 19. + + + Shape style 20. + + + Shape style 21. + + + Shape style 22. + + + Shape style 23. + + + Shape style 24. + + + Shape style 25. + + + Shape style 26. + + + Shape style 27. + + + Shape style 28. + + + Shape style 29. + + + Shape style 30. + + + Shape style 31. + + + Shape style 32. + + + Shape style 33. + + + Shape style 34. + + + Shape style 35. + + + Shape style 36. + + + Shape style 37. + + + Shape style 38. + + + Shape style 39. + + + Shape style 40. + + + Shape style 41. + + + Shape style 42. + + + Line style 1. + + + Line style 2. + + + Line style 3. + + + Line style 4. + + + Line style 5. + + + Line style 6. + + + Line style 7. + + + Line style 8. + + + Line style 9. + + + Line style 10. + + + Line style 11. + + + Line style 12. + + + Line style 13. + + + Line style 14. + + + Line style 15. + + + Line style 16. + + + Line style 17. + + + Line style 18. + + + Line style 19. + + + Line style 20. + + + Line style 21. + + + Specifies the type of a shape or range of shapes. + + + Return value only; indicates a combination of the other states. + + + AutoShape. + + + Callout. + + + Chart. + + + Comment. + + + Freeform. + + + Group. + + + Embedded OLE object. + + + Form control. + + + Line. + + + Linked OLE object. + + + Linked picture. + + + OLE control object. + + + Picture. + + + Placeholder. + + + Text effect. + + + Media. + + + Text box. + + + Script anchor. + + + Table. + + + Canvas. + + + Diagram. + + + Ink. + + + Ink comment. + + + + + + + + + Specifies the priority for a shared workspace task. + + + High priority. + + + Normal priority. + + + Low priority. + + + Specifies the status of a shared workspace task. + + + Not started. + + + In progress. + + + Completed. + + + Deferred. + + + Waiting. + + + Specifies properties of the signature subset. These settings act as filters for signature sets. + + + All non-visible signatures plus all signed signature lines. + + + All non-visible signatures. + + + All signature lines. + + + Signature lines that have been signed. + + + Signature lines that have not been signed. + + + All non-visible signatures plus all signature lines. + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the type of soft edge effect. + + + A mix of soft edge types. + + + No soft edge. + + + Soft Edge Type 1 + + + Soft Edge Type 2 + + + Soft Edge Type 3 + + + Soft Edge Type 4 + + + Soft Edge Type 5 + + + Soft Edge Type 6 + + + Specifies sort order for files in a FileSearch object's FoundFiles collection. + + + File name. + + + File size. + + + File type. + + + Last modified date. + + + No sort. + + + Specifies whether files in a FileSearch object's FoundFiles collection should be sorted in ascending or descending order. + + + Ascending order. + + + Descending order. + + + Specifies whether and under what circumstances synchronization is available for the document. + + + No synchronization is available. + + + Synchronization is available offline only. + + + Synchronization is available offline and online. + + + Specifies how comparison between local copy and server copy should be done in a synchronization process. + + + Compare and merge versions. + + + Compare versions side-by-side. + + + Specifies how conflicts should be resolved when synchronizing a shared document. + + + Replace the server copy with the local copy. + + + Replace the local copy with the server copy. + + + Merge changes made to the server copy into the local copy. In order to resolve the conflict with the merged changes winning, you must save the active document after merging changes, then call the ResolveConflict method again with the option. + + + Specifies a document synchronization error. + + + No error. + + + Unauthorized user. + + + Could not connect. + + + Out of space. + + + Destination file not found. + + + File too large to synchronize. + + + Destination file in use. + + + Virus uploaded. + + + Virus downloaded. + + + Upload error. + + + Download error. + + + Could not open file. + + + Could not update destination file. + + + Source and destination files could not be compared. + + + Could not resolve files. + + + No network available. + + + Unknown error. + + + Specifies the return value of a Sync event. + + + Download initiated. + + + Download succeeded. + + + Download failed. + + + Upload initiated. + + + Upload succeeded. + + + Upload failed. + + + No change detected. + + + Offline. + + + Specifies the status of the synchronization of the local copy of the active document with the server copy. + + + No shared workspace. + + + No syncronization is needed. + + + Documents are already in sync. + + + Only server copy has changes. + + + Only local copy has changes. + + + Both the local and the server copies have changes. + + + Synchronization was suspended. You can use the Unsuspend method of the Sync object to resume synchronization. + + + An error occurred. Use ErrorType property of Sync object to determine exact error. + + + Specifies which version of a shared document to open alongside the currently open local version. + + + Opens the copy of the document that is created whenever the user overwrites the local copy with the server copy. + + + Opens the server version. + + + + + + + + + + + + + + + + + + + Specifies target browser for documents viewed in a Web browser. + + + Netscape Navigator 3. + + + Netscape Navigator 4. + + + Microsoft Internet Explorer 4.0. + + + Microsoft Internet Explorer 5. + + + Microsoft Internet Explorer 6. + + + Specifies the capitalization of the text. + + + Display the text as mixed uppercase and lowercase letters. + + + Display the text with no uppercase letters. + + + Display the text with any lowercase letters displayed as uppercase that are the same height as lowercase for the current font and size. + + + Display the text as all uppercase letters. + + + Specifies the capitalization of text. + + + Display the text as sentence case characters. Sentence case specifies that the first letter of the sentence is capitalized and that all others should be lowercase (with some exceptions such as proper nouns, and acronyms). + + + Display the text as lowercase characters. + + + Display the text as uppercase characters. + + + Display the text as title case characters. Title case specifies that the first letter of each word is capitalized and that all others should be lowercase. In some cases short articles, prepositions, and conjunctions are not capitalized. + + + Indicates that lowercase text should be converted to uppercase and that uppercase text should be converted to lowercase text. + + + Indicates the type of text wrap. + + + Specifies a mixed text wrap. + + + Specifies no text wrapping. + + + Specifies wrapping text around the standard boundry of an object. + + + Specifies text wrapping that adheres to restrictions imposed by some languages such as Chinese and Japanese alphabets. + + + Specifies a custom text wrap scheme. + + + + + + + + + + + + + Specifies alignment for WordArt text. + + + Not used. + + + Left-aligned. + + + Centered. + + + Right- aligned. + + + Text is justified. Spacing between letters may be adjusted to justify text. + + + Text is justified. Spacing between words (but not letters) may be adjusted to justify text. + + + Text is justified. Letters may be stretched to justify text. + + + Indicates the text alignment scheme used for an object. + + + Specifies that there is a mix of text alignments used with the object. + + + Specifies that the text alignment will be determined by the Office application. + + + Specifies that the font is aligned to the top of the object. + + + Specifies that the font is aligned to the center of the object. + + + Specifies that the font is aligned to the baseline of the object. + + + Specifies that the font is aligned to the bottom of the object. + + + Specifies orientation for text. + + + Not supported. + + + Horizontal. + + + Upward. + + + Downward. + + + Vertical as required for Far East language support. + + + Vertical. + + + Horizontal and rotated as required for Far East language support. + + + Indicates the number of times a character is printed to darken the image. + + + Specifies that the text can contain a combination of double-strike and single-strike characters. + + + Specifies that the character is not printed. + + + Specifies that the character is printed once. + + + Specifies that the character is printed twice. + + + Indicates the text alignment against tab stops or line breaks. The default value is . + + + Specifies that mixed text alignment against tab stops is used. + + + Specifies that the following text starts immediately after the designated tab stop. + + + Specifies that the following text up to next tab or line break is centered on the designated tab stop. + + + Specifies that the following text up to the next tab or line break is rendered flush right to the designated tab stop. + + + Specifies that the following text is searched for the first occurrence of the character representing the decimal point. The text up to the next tab or line break is then aligned such that the decimal point starts at the designated tab stop. + + + Indicates the type of underline for text. + + + Specifies a mix of underline types. + + + Specifies no underline. + + + Specifies underlining words. + + + Specifies a single line underline. + + + Specifies a double line underline. + + + Specifies a heavy line underline. + + + Specifies a dotted line underline. + + + Specifies a dotted heavy line underline. + + + Specifies a dash line underline. + + + Specifies a dash underline. + + + Specifies a dashed long line underline. + + + Specifies a long heavy line underline. + + + Specifies a dot dash line underline. + + + Specifies a dot dash heavy line underline. + + + Specifies a dot dot dash line underline. + + + Specifies a dot dot dash heavy line underline. + + + Specifies a wavy line underline. + + + Specifies a wavy heavy line underline. + + + Specifies a wavy double line underline. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the texture type for the selected fill. + + + Return value only; indicates a combination of the other states. + + + Preset texture type. + + + User-defined texture type. + + + Indicates the Office theme color. + + + Specifies a mixed color theme. + + + Specifies no theme color. + + + Specifies the Dark 1 theme color. + + + Specifies the Light 1 theme color. + + + Specifies the Dark 2 theme color. + + + Specifies the Light 2 theme color. + + + Specifies the Accent 1 theme color. + + + Specifies the Accent 2 theme color. + + + Specifies the Accent 3 theme color. + + + Specifies the Accent 4 theme color. + + + Specifies the Accent 5 theme color. + + + Specifies the Accent 6 theme color. + + + Specifies the theme color for a hyperlink. + + + Specifies the theme color for a clicked hyperlink. + + + Specifies the Text 1 theme color. + + + Specifies the Background 1 theme color. + + + Specifies the Text 2 theme color. + + + Specifies the Background 2 theme color. + + + Indicates the color scheme for an Office theme. + + + Specifies color scheme Dark 1. + + + Specifies color scheme Light 1. + + + Specifies color scheme Dark 2. + + + Specifies color scheme Light 2. + + + Specifies color scheme Accent 1. + + + Specifies color scheme Accent 2. + + + Specifies color scheme Accent 3. + + + Specifies color scheme Accent 4. + + + Specifies color scheme Accent 5. + + + Specifies color scheme Accent 6. + + + Specifies a color scheme for a hyperlink. + + + Specifies a color scheme for a clicked hyperlink. + + + Specifies a tri-state Boolean value. + + + True. + + + False. + + + Not supported. + + + Not supported. + + + Not supported. + + + Specifies the vertical alignment of text in a text frame. + + + Return value only; indicates a combination of the other states. + + + Aligns text to top of text frame. + + + Anchors bottom of text string to current position, regardless of text resizing. When you resize text without baseline anchoring, text centers itself on previous position. + + + Centers text vertically. + + + Aligns text to bottom of text frame. + + + Anchors bottom of text string to current position, regardless of text resizing. When you resize text without baseline anchoring, text centers itself on previous position. + + + Indicates various image warping formats. + + + Specifies a mix of warp formats. + + + Specifies Warp Format 1. + + + Specifies Warp Format 2. + + + Specifies Warp Format 3. + + + Specifies Warp Format 4. + + + Specifies Warp Format 5. + + + Specifies Warp Format 6. + + + Specifies Warp Format 7. + + + Specifies Warp Format 8. + + + Specifies Warp Format 9. + + + Specifies Warp Format 10. + + + Specifies Warp Format 11. + + + Specifies Warp Format 12. + + + Specifies Warp Format 13. + + + Specifies Warp Format 14. + + + Specifies Warp Format 15. + + + Specifies Warp Format 16. + + + Specifies Warp Format 17. + + + Specifies Warp Format 18. + + + Specifies Warp Format 19. + + + Specifies Warp Format 20. + + + Specifies Warp Format 21. + + + Specifies Warp Format 22. + + + Specifies Warp Format 23. + + + Specifies Warp Format 24. + + + Specifies Warp Format 25. + + + Specifies Warp Format 26. + + + Specifies Warp Format 27. + + + Specifies Warp Format 28. + + + Specifies Warp Format 29. + + + Specifies Warp Format 30. + + + Specifies Warp Format 31. + + + Specifies Warp Format 32. + + + Specifies Warp Format 33. + + + Specifies Warp Format 34. + + + Specifies Warp Format 35. + + + Specifies Warp Format 36. + + + Specifies the change to the Office Assistant Help session. + + + Make Office Assistant inactive. + + + Make Office Assistant active. + + + Suspend Office Assistant. + + + Resume Office Assistant. + + + Specifies context under which a wizard's callback procedure is called. + + + Not supported. + + + User clicked the right button in the decision or branch balloon. + + + User clicked the left button in the decision or branch balloon. + + + Passed to the ActivateWizard method if msoWizardActSuspend is specified for the Act argument. + + + Passed to the ActivateWizard method if msoWizardActResume is specified for the Act argument. + + + Specifies where in the z-order a shape should be moved relative to other shapes. + + + Bring shape to the front. + + + Send shape to the back. + + + Bring shape forward. + + + Send shape backward. + + + Bring shape in front of text. + + + Send shape behind text. + + + The NewFile object represents items listed on the New Item task pane available in several Microsoft Office applications. + + + Adds a new item to the New Item task pane. + Required String. The name of the file to add to the list of files on the task pane. + Optional Object. The section to which to add the file. Can be any constant. + Optional Object. The text to display in the task pane. + Optional Object. The action to take when a user clicks on the item. Can be any constant. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes an item from the New Item task pane. + Required String. The name of the file reference. + Optional Object. The section of the task pane where the file reference exists. Can be any constant. + Optional Object. The display text of the file reference. + Optional Object. The action taken when a user clicks on the item. Can be any constant. + + + Represents a field in a data source. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the name of the specified object. + + + Returns the Parent object for the specified object. + + + Returns the value of a field in a data source. + + + A collection of objects that represent the data fields in a mail merge data source. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a member of the specified collection. + Required Object. The name or index number of the ODSOColumn item to be returned. + + + Returns the Parent object for the specified object. + + + Represents a filter to be applied to an attached mail merge data source. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a String that represents the name of the field in the mail merge data source to use in the filter. + + + Returns or sets a String that represents the text to compare in the query filter criterion. + + + Returns or sets a constant that represents how to compare the and properties. + + + Returns or sets a constant that represents how a filter criterion relates to other filter criteria in the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the Parent object for the specified object. + + + Represents all the filters to apply to the data source attached to the mail merge publication. + + + Adds a new filter to the collection. + Required String. The name of the table in the data source. + Required . How the data in the table is filtered. + Required . Determines how this filter relates to other filters in the ODSOFilters object. + Optional String. If the argument is something other than msoFilterComparisonIsBlank or msoFilterComparisonIsNotBlank, a string to which the data in the table is compared. + Optional Boolean. Default value is False. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes a filter object from the collection. + Required Integer. The number of the filter to delete. + Optional Boolean. + + + Returns a member of the specified collection. + Required Integer. The index number of the ODSOFilter to be returned. + + + Returns the Parent object for the specified object. + + + Represents the mail merge data source in a mail merge operation. + + + Applies a filter to a mail merge data source to filter specified records meeting specified criteria. + + + Returns an object that represents the fields in a data source. + + + Returns or sets a String that represents the connection to the specified mail merge data source. + + + Returns or sets a String that represents the name of the attached data source. + + + Returns a collection. + + + Moves the focus to a specified row in a mail merge data source. + Required . The row that receives the focus. + Optional Integer. The row number of the row that receives the focus. + + + Opens a connection to a mail merge data source. + Optional String. The name of the data source. + Optional String. The connection string to the data source. + Optional String. The name of a table in the data source. + Optional Integer. Sets whether the data source is opened for exclusive access. + Optional Integer. Sets whether prompts are displayed. + + + Returns an Integer that represents the number of records in the specified data source. + + + Sets the sort order for mail merge data. + Required String. The first field on which to sort the mail merge data. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + Optional String. The second field on which to sort the mail merge data. Default is an empty string. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + Optional String. The third field on which to sort the mail merge data. Default is an empty string. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + + + Returns a String that represents the name of the table within the data source file that contains the mail merge records. + + + Represents a Microsoft Office theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the parent object for the object. Read-only. + Object + + + Gets a object that represents the color scheme of a Microsoft Office theme. Read-only. + + + + + + Gets a object that represents the effects scheme of a Microsoft Office theme. Read-only. + + + + + + Gets a object that represents the font scheme of a Microsoft Office theme. Read-only. + + + + + + + + + + + + + + + + Represents the paragraph formatting of a text range. + + + Gets or sets a value specifying the alignment of the paragraph. Read/write. + + + + + + Gets an object that represents the application that contains the object. Read-only. + Object + + + Gets or sets a constant that represents the vertical position of fonts in a paragraph. Read/write. + + + + + + Gets a object for the paragraph. Read-only. + + + + + + Gets a value representing the application that created the object. Read-only. + Integer + + + Gets or sets the East Asian line break control level for the specified paragraph. Read/write. + + + + + + Gets or sets the value (in points) for a first line or hanging indent. Read/write. + Single + + + Determines whether hanging punctuation is enabled for the specified paragraphs. +Read/write. + + + + + + Gets or sets a value representing the indent level assigned to text in the selected paragraph. Read/write. + Integer + + + Gets or sets a value that represents the left indent value (in points) for the specified paragraphs. Read/write. + Single + + + Determines whether line spacing after the last line in each paragraph is set to a specific number of points or lines. Read/write. + + + + + + Determines whether line spacing before the first line in each paragraph is set to a specific number of points or lines. Read/write. + + + + + + Determines whether line spacing between base lines is set to a specific number of points or lines. Read/write. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets the right indent (in points) for the specified paragraphs. Read/write. + Single + + + Gets or sets the amount of spacing (in points) after the specified paragraph. Read/write. + Single + + + Gets or sets the spacing (in points) before the specified paragraphs. Read/write. + Single + + + Gets or sets the amount of space between base lines in the specified paragraph, in points or lines. Read/write. + Single + + + Gets a collection that represents all the custom tab stops for the specified paragraphs. Read-only. + + + + + + Gets or sets the text direction for the specified paragraph. Read/write. + + + + + + Determines whether the application wraps the Latin text in the middle of a word in the specified paragraphs. Read/write. + + + + + + Use the Permission object to restrict permissions to the active document and to return or set specific permissions settings. + + + Creates a new set of permissions on the active document for the specified user. + Optional Object. The email address (in the format ) of the user to whom permissions on the active document are being granted. + Optional String. The permissions on the active document that are being granted to the specified user. + Required String. The expiration date for the permissions that are being granted. + + + Returns an Application object that represents the container application for the object. + + + Applies the specified permission policy to the active document. + Required String. The path and filename of the permission policy template file. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the name in email form of the author of the active document. + + + Returns or sets a Boolean value that indicates whether permissions are enabled on the active document. + + + Returns or sets the option that allows a user to view a document with restricted permissions in a web browser if the user does not have the appropriate client application installed. + + + + Returns a object that is a member of the collection. + Optional Object. The numeric index of the UserPermission in the Permission collection, or the email address of the user whose set of permissions on the active document is to be returned. + + + Returns the Parent object for the specified object. + + + Returns a Boolean value that indicates whether a permission policy has been applied to the active document. + + + Returns the description of the permissions policy applied to the active document. + + + Returns the name of the permissions policy applied to the active document. + + + Removes all objects from the collection of the active document and disables restrictions on the active document. + + + Returns or sets the file or web site URL to visit or the email address to contact for users who need additional permissions on the active document. + + + Returns a Boolean value that indicates whether the user's license to view the active document should be cached to allow offline viewing when the user cannot connect to a rights management server. + + + Provides dialog user interface functionality for picking people or picking data. + + + Gets a Application object that represents the container application for the PickerDialog object. + + + Creates an empty object. + Returns a . + + + Gets a 32-bit integer that indicates the application in which the PickerDialog object was created. + + + Sets or gets the GUID of the Picker Dialog data handler component. + + + Returns the object to specify custom properties for data handler component. + + + Resolves the token using the Picker Dialog and retrieves the results. + Returns . + The text string to resolve. + + + Displays the Picker Dialog with already specified data handler and given options. + Returns . + Specifies whether the Picker Dialog user interface provides multiple item selection functions. + Contains existing in Picker Dialog user interface. These results are displayed in the selected item control. + + + Gets or sets the title of a picker dialog displayed in the Picker Dialog. + + + Represents the field definitions of sub-items in a object. Each PickerField object represents a column definition of a Picker dialog. + + + Gets a Application object that represents the container application for the PickerField object. + + + Gets a 32-bit integer that indicates the application in which the PickerField object was created. + + + Gets a Boolean that specifies whether the Picker field is hidden. + + + Gets the name of the Picker field. + + + The type of the Picker field. + + + A collection of objects. Each PickerField object represents a column definition of Picker dialog. + + + Gets a object that represents the container application for the PickerFields object. + + + Retrieves the count of the number of objects contained within the PickerFields collection. + + + Gets a 32-bit integer that indicates the application in which the PickerFields object was created. + + + Returns an enumerator that iterates through the collection of objects. + Returns . + + + Gets a object at the specified index. + Specifies an integer representing the index of the . + + + A collection of objects. + + + Adds a object to the collection. + Returns . + Specifies the key name of the property. + Specifies the value of the property. + + that specifies the type of the property. + + + Gets a object that represents the container application for the PickerProperties object. + + + Gets the count of the number of objects contained within the PickerProperties collection. + + + Gets a 32-bit integer that indicates the application in which the PickerProperties object was created. + + + Returns an enumerator that iterates through the collection. + Returns . + + + Gets a object at the specified index. + Specifies an integer representing the index of the object. + + + Removes a from the collection. + Specifies the identifier of the to remove. + + + Represents an object for passing a custom property. + + + Gets a object that represents the container application for the PickerProperty object. + + + Gets a 32-bit integer that indicates the application in which the PickerProperty object was created. + + + Gets the unique identifier of the associated PickerProperty object. + + + Gets the type of the Picker property. + + + Gets the value of a Picker property. + + + Represents a resolved or selected item of data. + + + Gets a object that represents the container application for the PickerResult object. + + + Gets a 32-bit integer that indicates the application in which the PickerResult object was created. + + + Represents a display name of PickerResult. + + + Gets PickerResult collection if the result of resolving results has multiple candidates. + + + Gets the field definitions of sub items in a collection. + + + Retrieves the unique identifier of the associated PickerResult object. + + + Gets or sets a non-display purpose item binding to data. + + + Gets or sets the identifier for Office Communication Server. It is used only for people picking scenario. + + + Gets or sets display purpose or non-display purpose field data of a PickerResult object. It is used for passing column values in a Picker dialog. + + + Gets the type of a PickerResult object. + + + A collection of objects. + + + Adds a object to the PickerResults collection. + Returns . + Specifies the identifier of the . + Specifies the display name of the . + Specifies the type of the . + Currently not supported. The is the identifier for Office Communication Server. It is used only for the people picking scenario. + Specifies the non- displaying item binding data. + Displays the purpose or non-display purpose field data of the . It is used for passing column values in the Picker Dialog. + + + Gets a object that represents the container application for the PickerResults object. + + + Retrieves the count of the number of objects contained within the PickerResults collection. + + + Gets a 32-bit integer that indicates the application in which the PickerResults object was created. + + + Returns . + + + Gets a PickerResult object at the specified index. + Specifies an integer representing the indexed location of the object. + + + Represents a picture effect. + + + Gets a object that represents the container application for the PictureEffect object. + + + Gets a 32-bit integer that indicates the application in which the PictureEffect object was created. + + + Deletes a picture effect. + + + Gets an object. + + + Gets or sets the position of a picture effect in a chain of composite effects. + + + Gets the type of picture effect. + + + Gets or sets a Boolean value representing the visible state of the picture effect. + + + Represents a collection of objects. + + + Gets a object that represents the container application for the PictureEffects object. + + + Gets the count of the number of objects contained within the PictureEffects collection. + + + Gets a 32-bit integer that indicates the application in which the PictureEffects object was created. + + + Deletes a object from the collection. + Specifies the index number of the object to delete. + + + Returns . + + + Inserts a picture effect in a chain of composite effects. + Returns a . + An enumeration specifying the type of picture effect. + Specifies the position of the effect in the composite chain of picture effects. + + + Gets a object at the specified index. + Specifies an integer representing the indexed location of the object. + + + Reserved for internal use. + + + + + + + + An object used to remove a portion of an image. + Returns . + + + + + + + + + + + + A collection of all the objects in the specified series in a chart. + + + + Gets the Application object in which this object was created. Read-only. + Object + + + Returns the number of objects in the collection. + Integer. + + + Returns the ID of the application in which this object was created. + Integer + + + Returns . + + + Returns a single object from a collection. + A object contained by the collection. + The index number for the object. + + + Returns the parent object for the specified object. Read-only. + Returns . + + + Represents an item within a object that contains the settings for one policy. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the information that is used to implement the policy item. Read-only. + String + + + Gets a description of the current state of the policy item. Read-only. + String + + + Gets the ID of a policy item. objects are contained in objects. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Represents a single file search criterion. + + + Returns an Application object that represents the container application for the object. + + + Returns the condition of the specified search criteria. + + + Returns the connector between two similar property test values. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the name of the specified object. + + + Returns an optional second value property test (as in a range) for the file search. + + + Returns the value of a property test for a file search. + + + A collection of objects that represent all the search criteria of a file search. Search criteria are listed in the Advanced Find dialog box (File menu, Open command, Advanced Find button). + + + Add a new object to the collection representing the search criteria of a file search. + Required String. The name of the PropertyTest object. + Required . A constant representing the condition used for the search. + Optional Object. A value used by . + Optional Object. A second value used by . + Optional MsoCondition. A constant representinat a connector such as Or or And used in the criterion. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Optional Integer. The index number of the property test to be returned. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Represents the reflection effect in Office graphics. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets or sets the amount of blur, measured in points, of the shape's reflection image. + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the amount of separation, measured in points, of the reflected image from the shape. + + + Gets or sets the size, measured in percentages, of the shape's reflection image. + + + Gets or sets the amount of transparency, measured in percentages, of the shape's reflection image. + + + Gets or sets the type of the object. Read/write. + + + + + + + + + + + + + Represents the ruler for the text in the specified shape or for all text in the specified text style. Contains tab stops and the indentation settings for text outline levels. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets a object that represents outline text formatting. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets a collection that represents the tab stops for the specified text. Read-only. + + + + + + Contains first-line indent and hanging indent information for an outline level. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the first-line indent for the specified outline level, in points. Read/write. + Single + + + Gets or sets the left indent for the specified outline level, in points. Read/write. + Single + + + Gets the parent object for the object. Read-only. + Object + + + A collection of all the objects on the specified ruler. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Integer indicating the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a member of the collection. + + + + The index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Corresponds to a searchable folder. + + + Adds a object the collection. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the name of the specified object. + + + Returns a String indicating the full path of a object. + + + Returns a collection. + + + A collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that represents a subfolder of the parent object. + Required Integer. Determines which subfolder to return. + + + Represents a block of HTML script in a Microsoft Word document, on a Microsoft Excel spreadsheet, or on a Microsoft PowerPoint slide. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Returns or sets attributes added to the <SCRIPT> tag, with the exception of the LANGUAGE and ID attributes. + + + Returns or sets the ID of a object. + + + Returns or sets the scripting language of the active script. + + + Returns the location of the script anchor in the specified HTML document. + + + Returns the Parent object for the specified object. + + + Returns or sets the text contained in a block of script. + + + Returns a Shape object or InlineShape object, depending on the Microsoft Office host application. + + + A collection of objects that represent the collection of HTML scripts in the specified document. + + + Adds a object to the collection of one of the following objects: a Document or Range object in Microsoft Word; a Worksheet or Chart object in Microsoft Excel; or a Slide, SlideRange, slide Master, or title Master object in Microsoft PowerPoint. + Optional Object (Microsoft Excel only). The argument accepts an Excel Range object, which specifies the placement of the script anchor on an Excel Worksheet. You cannot insert script anchors into Excel charts. + Optional . Specifies the location of the script anchor in a document. If you’ve specified the argument, the argument isn’t used; the location of the argument determines the location of the script anchor. + Optional . Specifies the script language. + Optional String. The ID of the <SCRIPT> tag in HTML. The argument specifies an SGML identifier used for naming elements. Valid identifiers include any string that begins with a letter and is composed of alphanumeric characters; the string can also include the underscore character ( _ ). The ID must be unique within the HTML document. This parameter is exported as the ID attribute in the <SCRIPT> tag. + Optional String. Specifies attributes that are to be added to the <SCRIPT> tag (LANGUAGE and ID attributes are exported through the and parameters and should not be exported through the parameter). The default is the empty string. Attributes are separated by spaces, the same as in HTML. The Microsoft Office host application doesn’t provide any means of checking the syntax of passed attributes. + Optional String. Specifies the text contained in a block of script. The default is the empty string. The Microsoft Office host application doesn’t check the syntax of the script. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + + Returns a member of the collection. + Required Object. The ID or index number of the script to be returned. + + + Returns the Parent object for the specified object. + + + A collection of objects that determines which folders are searched when the method of the object is called. + + + Adds a search folder to a file search. + Required . The folder to add to the search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that represents a subfolder of the parent object. + Required Integer. Determines which subfolder to return. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Corresponds to a type of folder tree that can be searched by using the object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a object. + + + Returns a value that corresponds to the type of object. + + + A collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that corresponds to an area in which to perform a file search, such as local drives or Microsoft Outlook folders. + Required Integer. Determines which SearchScope object to return. + + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + Represents a policy specified for a document type stored on a server running Office SharePoint Server 2007. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Boolean value that indicates whether you can preview items using this policy. Read-only. + Boolean + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + A description of what the server policy is and its purpose. Read-only. + String + + + Gets the ID of a server policy. Read-only. + String + + + Gets a object from the collection. Read-only. + PolicyItem + The name or index number of the PolicyItem object to be returned. + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets the information specified in the Policy Statement. Read-only. + String + + + Reserved for internal use. + + + + Returns or sets the degree of blurriness of the specified shadow. Read/write. + Single + + + + + + + + + + + Returns or sets an that represents whether to rotate the shadow when rotating the shape. Read/write. + + + + + + Returns or sets the size of the specified shadow. Read/write. + Single + + + Returns or sets the style of the specified shadow. Read/write. + + + + + + + + + Reserved for internal use. + + + + + + + + Returns or sets the background style. Read/write. + + + + + + + + + + + + + Returns the chart contained in the shape. Read-only. + + + + + + + + + + + Copies the object to the Clipboard. + + + + Cuts the object to the Clipboard or pastes it into a specified destination. + + + + + + + + + Returns a object for a specified shape that contains glow formatting properties for the shape. Read-only. + + + + + + + Returns whether a shape contains a chart. Read-only. + + + + + + + + + + + + + + + + + + + + + + + + Returns a object for a specified shape that contains reflection formatting properties for the shape. Read-only. + + + + + + + + + + + + + + + Returns or sets an that represents the shape style of shape range. Read/write. + + + + + + Gets top-level class for interacting with a SmartArt graphic. + + + Returns a object for a specified shape that contains soft edge formatting properties for the shape. Read-only. + + + + + + + + Returns a object that contains text formatting for the specified shape. Read-only. + + + + + + + Sets or gets the title of a file dialog box displayed using the object. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A SharedWorkspace object allows the developer to add the active document to a Microsoft Windows SharePoint Services document workspace on the server and to manage other objects in the shared workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a Boolean value that indicates whether or not the active document is currently saved in and connected to a shared workspace. + + + Creates a new document workspace on the server and adds the active document to the new shared workspace. + Optional String. The URL for the parent folder in which the new shared workspace is to be created. If you do not supply a URL, the new shared workspace is created in the user's default server location. + Optional String. The name of the new shared workspace. Defaults to the name of the active document without its file extension. For example, if you create a shared workspace for Budget.xls, the name of the new shared workspace becomes "Budget". + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current shared workspace and all data within it. + + + Disconnects the local copy of the active document from the shared workspace. + + + Returns a collection that represents the list of files stored in the document library associated with the current shared workspace. + + + Returns a collection that represents the list of subfolders in the document library associated with the current shared workspace. + + + Returns the date and time when the method was most recently called. + + + Returns a collection that represents the list of links saved in the current shared workspace. + + + Returns a collection that represents the list of members in the current shared workspace. + + + Returns or sets the name of the specified object. + + + Returns the Parent object for the specified object. + + + Refreshes the local cache of the object's files, folders, links, members, and tasks from the server. + + + Removes the active document from the shared workspace. + + + Designates the location of the public copy of a shared document to which changes should be published after the document has been revised in a separate document workspace. + + + Returns a collection that represents the list of tasks in the current shared workspace. + + + Returns the top-level Uniform Resource Locator (URL) of the shared workspace. + + + The SharedWorkspaceFile object represents a file saved in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns the Parent object for the specified object. + + + Returns the full uniform resource locator (URL) and file name of the shared workspace file. + + + A collection of the objects in the current shared workspace. + + + Adds a file to the document library in a shared workspace. + Required String. The path and filename of the file to be added to the current shared workspace. + Optional . The subfolder in which to place the file, if not the main document library folder within the shared workspace. Add the file to the main document library folder by leaving this optional argument empty. + Optional Boolean. True to overwrite an existing file by the same name. Default is False. + Optional Boolean. True to keep the local copy of the document synchronized with the copy in the shared workspace. Default is False. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Files collection of the shared workspace. + Optional Integer. Returns the SharedWorkspaceFile at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceFolder object represents a folder in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current shared workspace folder and all data within it. + Optional Boolean. True to delete the folder without warning even if the folder contains files. Default is False. + + + Returns the name of a subfolder within the main document library folder of a shared workspace. + + + Returns the Parent object for the specified object. + + + A collection of the objects in the current shared workspace. + + + Adds a folder to the document library in a shared workspace. + Required String. The name of the folder to be added to the current shared workspace. + Optional . The subfolder in which to place the new folder, if not the main document library folder within the shared workspace. Add the folder to the main document library folder by leaving this optional argument empty. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Folders collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceFolder at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceLink object represents a URL link saved in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns or sets a descriptive String value for the specified object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns or sets the optional notes associated with a shared workspace link. + + + Returns the Parent object for the specified object. + + + Uploads changes made programmatically to a to the server. + + + Returns or sets the uniform resource locator (URL) of the link saved in the shared workspace. + + + A collection of the objects in the current shared workspace. + + + Adds a link to the list of links in a shared workspace. + Required Object. The URL of the web site to which a link is being added. + Optional Object. Optional description of the link. + Optional String. Optional notes about the link. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Links collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceLink at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceMember object represents a user who has rights in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns the domain and user name of the specified in the format domain\user. + + + Returns the email name of the specified in the format user@domain.com. + + + Reserved for internal use. + + + Returns the name of the specified object. + + + Returns the Parent object for the specified object. + + + A collection of the objects in the current shared workspace. + + + Adds a member to the list of members in a shared workspace. + Required String. The new member's email address in the format . Raises an error if the user is not a valid candidate for membership in the shared workspace. + Required String. The new member's Windows user name in the format . + Required String. The friendly name to display for the new member. + Optional String. An optional role that determines the tasks the new member can accomplish in the shared workspace; for example, "Contributor". An invalid role name raises an error. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Members collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceMember at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceTask object represents a task in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the to whom the task is assigned. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns or sets a descriptive String value for the specified object. + + + Returns or sets the optional due date and time of a object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns the Parent object for the specified object. + + + Returns or sets the status of the specified shared workspace task. + + + Uploads changes made programmatically to a to the server. + + + Returns or sets the status of the specified shared workspace task. + + + Returns or sets the title of a object. + + + A collection of the objects in the current shared workspace. + + + Adds a task to the list of tasks in a shared workspace and returns a object. + Required String. The title of the new task. + Optional . The status of the new task. Default is msoSharedWorkspaceTaskStatusNotStarted. + Optional . The priority of the new task. Default is msoSharedWorkspaceTaskPriorityNormal. + Optional . The member to whom the new task is assigned. + Optional String. The description of the new task. + Optional Date. The due date of the new task. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Tasks collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceTask at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + Corresponds to a digital signature that is attached to a document. + + + Returns an Application object that represents the container application for the object. + + + Determine if the digital certificate that corresponds to the specified object is attached to the document. + + + Gets a Boolean value indicating whether the user can set properties of the object. Read-only. + Boolean + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Gets information about a signature. Read-only. + + + + + + Returns an Object representing the date on which the digital signature that corresponds to the object will expire. + + + Determine if the digital certificate that corresponds to the object has expired. + + + Determine if the digital certificate that corresponds to the object has been revoked by the issuer of the certificate. + + + Gets a value indicating whether this is a signature line. Read-only. + Boolean + + + Gets a Boolean value indicating whether the document was signed successfully. Read-only. + Boolean + + + Returns a String representing the name of the issuer of the digital certificate that corresponds to the object. + + + Determines if the digital signature that corresponds to the object is a valid signature. + + + Returns the Parent object for the specified object. + + + Gets a object that provides access to various properties of a signature packet. Read-only. + SignatureSetup + + + Displays details related to a signature packet. + + + Creates a signature packet. + The signature line graphic image. + The suggested signer. + The additional signature line. + The e-mail address of the suggested signer. + + + Gets the object associated with a object that is a signature line. Read-only. + Object + + + Returns an Object representing the date and time that the digital certificate corresponding to the object was attached to the document. + + + Returns a String representing the name of the person who attached the digital certificate that corresponds to the object to the document. + + + Gets a value representing the sort order of the signatures in a packet with multiple signatures. Read-only. + Integer + + + Indicates additional information about a signature. + + + Specifies the local signing time. + + + Specifies the application name. + + + Specifies the application version. + + + Specifies the Office version. + + + Specifies the Windows version. + + + Specifies the number of monitors + + + Specifies the horizontal resolution. + + + Specifies the vertical resolution. + + + Specifies the color depth. + + + Specifies the signed data. + + + Specifies the document preview image. + + + Specifies the IP form hash. + + + Specifies the IP current view. + + + Specifies the signature type. + + + Specifies the hash algorithm. + + + Specifies the Should Show View Warning setting. + + + Specifies the suggested signer delegate. + + + Specifies the set of suggested signer's delegates. + + + Specifies the suggested signer's delegate's signature line. + + + Specifies the set of suggested signer's delegate's signature lines. + + + Specifies the suggested signer's delegate's e-mail. + + + Indicates whether an email for a suggested signer delegate has been specified. + + + Represents the information used to create a digital or in-document signature. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the results from the verification of a digital certificate. Read-only. + + + + + + Gets a value representing the results of the verification of the hashed contents of a signed document. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Displays a specified detail related to a digital certificate. + Object + An enumerated value specifying which certificate detail to display. + + + Displays a specified detail related to a signature. + Object + An enumerated value specifying which signature detail to display. + + + Gets a Boolean value indicating whether the digital certificate is expired. Read-only. + Boolean + + + Gets a Boolean value indicating whether the digital certificate is revoked. Read-only. + Boolean + + + Gets a Boolean value indicating whether the digital certificate used to digitally sign a document comes from a trusted source. Read-only. + Boolean + + + Gets a Boolean value indicating whether the signature was successfully validated following signature verification. Read-only. + Boolean + + + Gets a Boolean value indicating whether the object is read-only. Read-only. + Boolean + + + Displays a dialog box containing information about a digital certificate following vertification of the user from a thumbprint. + Contains information about the signer identified by the thumbprint. + + + Displays a dialog box that allows users to select which signature certificate to use for signing a document. + Contains a handle to the window containing the certificate selection dialog box. + + + Displays the selected or default digital certificate. + Contains the handle to the window containing the Certificate dialog box. + + + Gets or sets a value containing comments included in a signature packet. Read/write. + String + + + Gets or sets the value of the image used to sign the document. Read/write. + IPictureDisp + + + Gets a value identifying an installed signature provider add-in. Read-only. + String + + + Gets or sets the value of the signature text used to sign this document. Read/write. + String + + + Indicates the signature line image. + + + The SoftwareRequired image. + + + The Unsigned image. + + + The SignedValid image. + + + The SignedInvalid image. + + + + + + Represents a signature provider add-in. + + + Gets a signature line image. + IPictureDisp + Contains the name if the signature line graphic. + Specifies initial settings of the signature provider add-in. + Specifies information about the signature provider add-in. + + + Queries the signature provider add-in for various details. + Object + Contains an enumerated value representing the type of information to query the add-in for. + + + Allows a signature provider add-in to create a hash value for the document that you can use to determine if the document contents were tampered with after digital signing. + Array + Provides a way to query the host application for permission to continue the hashing process. + Contains the data stream. + + + Used to display a dialog box informing the user that the signing process has completed and providing additional functionality for the add-in. + Allows the host application to obtain the handle to the window containing the displayed dialog box. + Contains initial settings of the signature provider. + Contains information about the signature provider add-in. + + + Provides a signature provider add-in the opportunity to display details about a signed signature line and display additional stored information such as a secure time-stamp. + Contains the handle to the window containing the signature details. + Specifies initial settings of the signature provider. + Specifies information about the signed signature line. + Represents a steam of data or binary large object of XML. + Contains a value representing the results of verificating the signature content. + Contains a value representing the results of verificating the signing certification. + + + Provides a signature provider add-in the opportunity to display the Signature Setup dialog box to the user. + Contains the handle to the window containing the Signature Setup dialog box. + Specifies initial settings of the signature provider. + + + Provides a signature provider add-in the opportunity to display the Signature dialog box to users, allowing them to specify their identity and then be authenticated. + Contains the handle to the window containing the Signature dialog box. + Specifies initial settings of the signature provider. + Specifies information about the signature provider. + + + Used to sign the XMLDSIG template. + Provides a way to query the host application for permission to continue the verification operation. + Specifies configuration information about a signature line. + Specifies information captured from the signing ceremony. + Represents a steam of data containing XML, which represents an XMLDSIG object. + + + Verifies a signature based on the signed state of the document and the legitimacy of the certificate used for signing. + Provides a way to query the host application for permission to continue the verification operation. + Specifies configuration information about a signature line. + Specifies information captured from the signing ceremony. + Represents a steam of data containing XML, which represents an XMLDSIG object. + Specifies the status of the signature verification action. + Specifies the status of the signing certificate verification. + + + Specifies properties of a signature provider. + + + The URL of the signature provider. + + + Hash algorithm used to hash the data in the file. + + + + Indicates that the signature provider only uses a custom user interface. + + + + + + + + + A collection of objects that correspond to the digital signatures attached to a document. + + + Returns a object that represents a new e-mail signature. + + + Creates a signature packet when digitally signing a document. + + + + Represents the ID of the signature provider. + + + Adds lines to a document where signatures are collected. + Signature + Represents the ID of the signature provider. + + + Returns an Application object that represents the container application for the object. + + + Gets a Boolean value indicating whether you can add a signature line to a document. Read-only. + Boolean + + + Commits all changes of the specified collection to disk. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that corresponds to one of the digital signatures with which the document is currently signed. + Required Integer. Determines which Signature object to return. + + + Returns the Parent object for the specified object. + + + Gets or sets a Boolean value indicating whether the Signature task pane should be displayed. Read/write. + Boolean + + + Gets or sets a value that acts as a filter on the available objects for a document. Read/write. + + + + + + Represents the information used to set up a signature packet. + + + Gets or sets any additional XML information added to the signature during setup. Read/write. + String + + + Gets or sets a Boolean value specifying whether the signer can enter comments in the Sign dialog box. Read/write. + Boolean + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the ID of the signature provider for a document. Read-only. + String + + + Gets a Boolean value indicating whether the object is read-only. Read-only. + Boolean + + + Gets or sets a Boolean value indicating whether the date the document was signed should be displayed. Read/write. + Boolean + + + Gets a value identifying an installed signature provider add-in. Read-only. + String + + + Gets or sets the instructions for signing the document. Read/write. + String + + + Gets or sets the name of the principle signer of the document. Read/write. + String + + + Gets or sets the e-mail address of the signer of the document. Read/write. + String + + + Gets or sets the second line of suggested signer information (for example, title). Read/write. + String + + + Specifies properties of a signature. + + + A signature not generated by Office. + + + + A signature that is not visible in the content of the document. + + + + A signature that is visible in the content of the document. + + + Specifies the maximum number of the signature types available in the current version of Office. + + + The top level class for interacting with a SmartArt graphic. Specifies constants that define the types of SmartArt nodes. + + + Gets a object containing all of the nodes within the SmartArt diagram. + + + Gets a object that represents the container application for the SmartArt object. + + + Gets or sets the Smart Art color style applied to the Smart Art graphic. + + + Gets a 32-bit integer that indicates the application in which the SmartArt object was created. + + + Gets or sets the Smart Art layout associated with the Smart Art graphic. + + + Gets the children of the root node of the SmartArt diagram. + + + Gets the calling object. + + + Gets or sets the SmartArt quick style applied to the SmartArt graphic. + + + Resets the SmartArt graphic to its original state. + + + Gets or sets the state of the SmartArt diagram with regard to (left-to-right) LTR or (right-to-left) RTL, if the diagram supports reversal. + + + Represents the color scheme for the SmartArt diagram. + + + Gets an Application object that represents the container application for the SmartArtColor object. + + + Retrieves the primary category name associated with the SmartArt color style. + + + Returns a 32-bit integer that indicates the application in which this object was created. + + + Returns the description of the SmartArt color style. + + + Returns the unique identifier of the associated SmartArt color style. + + + Returns the string name of the SmartArt color style. + + + Returns the calling object. + + + A collection of SmartArt color styles. + + + Gets a object that represents the container application for the SmartArtColors object. + + + Gets the count of the number of SmartArtColor objects contained within the SmartArtColors collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtColors object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the identifier of the SmartArt color. + + + Returns the calling object. + + + Represents a SmartArt diagram. + + + Gets a object that represents the container application for the SmartArtLayout object. + + + Gets the primary category name associated with the SmartArt layout. + + + Gets a 32-bit integer that indicates the application in which the SmartArtLayout object was created. + + + Gets the description of the SmartArt layout. + + + Retrieves the unique identifier of the associated SmartArt layout. + + + Gets the string name of the SmartArt layout. + + + Gets the calling object. + + + Represents a collection of SmartArt layout diagrams. + + + Gets a object that represents the container application for the SmartArtLayouts object. + + + Gets the count of the number of objects contained within the SmartArtLayouts collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtLayouts object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the location of the object. + + + Gets the calling object. + + + A single semantic node within the data model of a SmartArt graphic. + + + Adds a new SmartArt node to the data model in the way specified by the value, and . + Specifies the location of the SmartArtNode in the data model. For example, or . + Specifies the type of the added SmartArtNode. For example, or . + + + Gets an Application object that represents the container application for the SmartArtNode object. + + + Gets a 32-bit integer that indicates the application in which the SmartArtNode object was created. + + + Removes the current SmartArt node. + + + Demotes the current node a single level within the data model. + + + Returns true if this node is a hidden node in the data model. + + + Increases the size of the SmartArt. Mimics the behavior of the Larger button on the Microsoft Office Fluent Ribbon Format tab for SmartArt. + + + Returns the node’s level in the hierarchy. + + + Returns the child nodes associated with this SmartArt Node. + + + Returns or sets the associated with this node if there is one. + + + Gets the calling object. + + + Returns the parent SmartArtNode of this SmartArtNode. + + + Promotes the current node (and all its children) a single level within the data model. + + + Swaps a node with the next node in the bulleted list. This method reorders the node’s entire family. + + + Swaps a node with the previous node in the bulleted list. This method reorders the node’s entire family. + + + Returns the shape range associated with this SmartArtNode object. + + + Decreases the size of the SmartArt. Mimics the behavior of the Smaller button on the Microsoft Office Fluent Ribbon UI Format tab for SmartArt. + + + Returns the text associated with the SmartArtNode object. + Returns a . + + + Returns the type of SmartArt node. + + + Represents a collection of nodes within a SmartArt diagram. + + + Adds a new object to the diagram with specified text. + + + Gets a object that represents the container application for the SmartArtNodes object. + + + Gets the number of objects contained within the SmartArtNodescollection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtNodes object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or a string the location of the object. + + + Gets the calling object. + + + Represents a SmartArt quick style + + + Gets a object that represents the container application for the SmartArtQuickStyle object. + + + Gets the primary category name associated with the SmartArt quick style. + + + Gets a 32-bit integer that indicates the application in which the SmartArtQuickStyle object was created. + + + Gets the description of the SmartArt quick style. + + + Gets the unique identifier of the associated SmartArt quick style. + + + Gets the string name of the SmartArt quick style. + + + Returns the calling object. + + + Represents a collection of SmartArt quick styles. + + + Gets a object that represents the container application for the SmartArtQuickStyles object. + + + Gets the count of the number of objects contained within the SmartArtQuickStyles collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtQuickStyles object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the location of the object. + + + Gets the calling object. + + + The SmartDocument property of the Microsoft Office Word 2003 Document object and the Microsoft Office Excel 2003 Workbook object returns a SmartDocument object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Displays a dialog box which allows the user to choose an available XML expansion pack to attach to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + Optional Boolean. True displays all available XML expansion packs installed on the user's computer. False displays only XML expansion packs applicable to the active document. Default value is False. + + + Refreshes the Document Actions task pane for the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Returns or sets the ID, often a globally unique identifier (GUID), which identifies the XML expansion pack attached to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Returns or sets an absolute URL that provides the complete path to the XML expansion pack file attached to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Represents the soft edges effect in Office graphics. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the size, measured in points, of the soft edge effect of the shape. + + + Gets or sets the type of the object. Read/write. + + + + + + Use the Sync object to manage the synchronization of the local and server copies of a shared document stored in a Windows SharePoint Services document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a constant which indicates the type of the most recent document synchronization error. + + + Compares the local version of the shared document to the version on the server. + + + Returns the date and time when the local copy of the active document was last synchronized with the server copy. + + + Opens a different version of the shared document alongside the currently open local version. + Required . + + + Returns the Parent object for the specified object. + + + Updates the server copy of the shared document with the local copy. + + + Resolves conflicts between the local and the server copies of a shared document. + Required . + + + Returns the status of the synchronization of the local copy of the active document with the server copy. + + + Resumes synchronization between the local copy and the server copy of a shared document. + + + Displays the friendly name of the user who last saved changes to the server copy of a shared document. + + + Represents a single tab stop. The TabStop2 object is a member of the collection. + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Removes the specified custom tab stop + + + Gets a 32-bit integer that represents the Microsoft Office application in which the + + object was created. Read-only. + Integer + + + Gets the parent of the object. + +Read-only. + Object + + + Gets or sets the position of a tab stop relative to the left margin. Read/write. + Single + + + Gets or sets the type of the object. Read/write. + + + + + + The collection of objects. + + + Adds a new tab stop to the specified object. + + + + The type of tab stop to add. + The horizontal position of the new tab stop relative to the left edge of the text frame. Numeric values are evaluated in points; strings are evaluated in the units specified and can be in any measurement unit supported by the Microsoft Office product. + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Gets the number of items in the + + collection. Read-only. + Integer + + + Gets a 32-bit integer that represents the Microsoft Office application in which the + + object was created. Read-only. + Integer + + + Gets or sets the default spacing between tab stops. Read/write. + Single + + + + Gets an individual object from the collection. + + + + The number of the object to return. + + + Gets the parent of the specified object. Read-only. + Object + + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the + + object was created. Read-only. + Integer + + + Gets or sets the index of the object. Read/write + Integer + + + Gets or sets the spacing between text columns in a object. Read/write. + Single + + + Gets or sets the direction of text in the object. Read/write. + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + Returns or sets a value that specifies if the text on a shape is rotated if the shape itself is being rotated. + + + + + + + + + + + + + Represents the text frame in a Shape or ShapeRange objects. + + + Adds period (.) punctuation to the right side of the text contained in object for left-to-right languages and on the left side for right-to-left languages. + + + Used without an object qualifier, this property returns an Application + object that represents the current instance of the Microsoft Office application. Used with an object qualifier, this property returns an Application object that represents the creator of the object. When used with an OLE Automation object, it returns the object's application. Read-only. + Object + + + Gets the height, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the left coordinate, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the top coordinate, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the width, in points, of the text bounding box for the specified text. Read-only. + Single + + + Changes the case of a object to one of the values in the enumeration. + Specifies the type of change to make to the text. + + + Read-only. + + + + The first character in the returned range. + The number of characters to be returned. + + + Copies a object. + + + Gets the number of items in the + + collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the + + object was created. Read-only. + Integer + + + Removes a portion or all of the text from a range of text. + + + Deletes a object. + + + Searches a object for a subset of text. + TextRange2 + Contains the text to find. + Specifies the point in the text range to start the search. + Specifies if the target text must exactly match the case of the search text. + Specifies that only whole words will be searched. + + + Returns a Font + object that represents character formatting for the object. Read-only. + Font + + + + Inserts text to the right of the existing text in the object. + TextRange2 + Contains the text to be inserted. + + + Inserts text to the left of the existing text in the object. + TextRange2 + Contains the text to be inserted. + + + Inserts a symbol from the specified font set into the range of text represented by the object. + TextRange2 + The name of the font set. + The number of the symbol. + Indicates whether the value of the symbol is specified as a unicode value. + + + Gets the range of text specified by the index number from the object. + TextRange2 + The index number of the text range. + + + Gets or sets the value of the object. Read/write. + MsoLanguageID + + + Gets the length of a text range. Read-only. + Integer + + + Returns the specified subset of text lines. Read-only. + + + + The first line in the returned range. + The number of lines to be returned. + + + Returns a object that represents the specified subset of left-to-right text runs. A text run consists of a range of characters that share the same font attributes. + + + + Returns the paragraph formatting for the specified text. Read-only. + + + + + + Gets the specified subset of text paragraphs. Read-only. + + + + The first paragraph in the returned range. + The number of paragraphs to be returned. + + + Gets the parent object for the object. + +Read-only. + Object + + + Pastes the contents of the Clipboard into the object. + TextRange2 + + + Replaces the text range with the contents of the Clipboard in the format specified. If the paste succeeds, this method returns a object including the text range that was pasted. + TextRange2 + Determines the format for the Clipboard contents when they're inserted into the document. + + + Removes all period (.) punctuation from the text in the object. + + + Finds specific text in a text range, replaces the found text with a specified string, and returns a object that represents the first occurrence of the found text. Returns Nothing if no match is found. + TextRange2 + The text to search for. + The text you want to replace the found text with. + The position of the character (in the specified text range) after which you want to search for the next occurrence of . For example, if you want to search from the fifth character of the text range, specify 4 for . If this argument is omitted, the first character of the text range is used as the starting point for the search. + Determines whether a distinction is made on the basis of case. + Determines whether only whole words are searched. + + + Gets the coordinates of the vertices of the text bounding box for the specified text range. Read-only. + Returns the position (in points) of the X coordinate of the first vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the first vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the second vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the second vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the third vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the third vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the fourth vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the fourth vertex of the bounding box for the text within the specified text range. + + + Returns a object that represents the specified subset of right-to-left text runs. A text run consists of a range of characters that share the same font attributes. + + + Gets the specified subset of text runs. A text run consists of a range of characters that share the same font attributes. Read-only. + + + + The first run in the returned range. + The number of runs to be returned. + + + Selects the object. + + + Returns the specified subset of text sentences. Read-only. + + + + The first sentence in the returned range. + The number of sentences to be returned. + + + Gets the starting point of the specified text range. Read-only. + Integer + + + Gets or sets a String value that represents the text in a text range. Read/write. + String + + + Returns the specified text minus any trailing spaces. + + + + + + Gets the specified subset of text words. Read-only. + + + + The first word in the returned range. + The number of words to be returned. + + + Represents a color in the color scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets a value of a color in the color scheme of a Microsoft Office theme. Read/write. + MsoRGBType + + + Gets the index value for a color scheme of a Microsoft Office theme. Read-only. + + + + + + Represents the color scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets an object that represents a color in the color scheme of a Microsoft Office theme. + ThemeColor + The index value of the object. + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets a value that represents a color in the color scheme of a Microsoft Office theme. + MsoRGBType + The name of the custom color. + + + + Loads the color scheme of a Microsoft Office theme from a file. + The name of the color theme file. + + + Gets the parent object for the object. Read-only. + Object + + + Saves the color scheme of a Microsoft Office theme to a file. + The name of the file. + + + Represents the effects scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Loads the effects scheme of a Microsoft Office theme from a file. + The name of the effect scheme file. + + + Gets the parent object for the object. Read-only. + Object + + + Represents a container for the font schemes of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the name of a font in the font scheme of a Microsoft Office theme. Read/write. + String + + + Gets the parent object for the object. Read-only. + Object + + + Represents a collection of major and minor fonts in the font scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets one of the three language fonts contained in the collection. + ThemeFont + The index value of the object. + + + Gets the parent object for the object. Read-only. + Object + + + Represents the font scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Loads the font scheme of a Microsoft Office theme from a file. + The name of the font scheme file. + + + Gets the font setting for the "Headings" in a document. Read-only. + + + + + + Gets the font settings for the "Body" of a document. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Saves the font scheme of a Microsoft Office theme to a file. + The name of the file. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns or sets the project text state for the specified object. Read/write + + + + + + + + + + + + + + Returns the Z order of the specified object. Read/write. + Single + + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + The UserPermission object associates a set of permissions on the active document with a single user and an optional expiration date. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the optional expiration date of the permissions on the active document assigned to the user associated with the specified object. + + + Returns the Parent object for the specified object. + + + Returns or sets an Integer value representing the permissions on the active document assigned to the user associated with the specified object. + + + Removes the specified object from the collection of the active document. + + + Returns the email name of the user whose permissions on the active document are determined by the specified object. + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + Represents the default font used when documents are saved as Web pages for a particular character set. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the fixed-width font setting in the host application. + + + Returns or sets the fixed-width font size setting in the host application in points. + + + Returns or sets the proportional font setting in the host application. + + + Returns or sets the proportional font size setting in the host application in points. + + + A collection of objects that describe the proportional font, proportional font size, fixed-width font, and fixed-width font size used when documents are saved as Web pages. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection for a particular value of . + Required . The specified character set. + + + Represents a single workflow task in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the name of the person that the workflow task is assigned to. Read-only. + String + + + Gets the name of the person that created the workflow task. Read-only. + String + + + Gets the date that a workflow task was created. Read-only. + DateTime + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of a workflow task. Read-only. + String + + + Gets the date that a workflow task is due. Read-only. + DateTime + + + Gets the ID of the Sharepoint list item. Read-only. + String + + + Gets the ID of the list containing the workflow task. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Displays a workflow task edit user interface for the specified object. + Integer + + + Gets the ID of the workflow associated with a workflow task. Read-only. + String + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + WorkflowTask + The index number of the WorkflowTask object to be returned. + + + Represents one of the workflows available for the current document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of a workflow template. Read-only. + String + + + Gets the name of the document library associated with the workflow template. Read-only. + String + + + Gets the URL address of the document library where workflow templates are stored. Read-only. + String + + + Gets the ID of a template used to create a workflow instance. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Displays a workflow specific configuration user interface for the specified object. + Integer + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Long indicating the number of items in the WorkflowTemplates collection. Read-only. + Long + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + WorkflowTemplate + The index number of the WorkflowTemplate object to be returned. + + + Specifies the point on the specified axis where the other axis crosses. + + + Microsoft Excel sets the axis crossing point. + + + The CrossesAt property specifies the axis crossing point. + + + The axis crosses at the maximum value. + + + The axis crosses at the minimum value. + + + Specifies the type of axis group. + + + Primary axis group. + + + Secondary axis group. + + + Specifies the axis type. + + + Axis displays categories. + + + Axis displays data series. + + + Axis displays values. + + + Specifies the shape used with the 3-D bar or column chart. + + + Box. + + + Pyramid, coming to point at value. + + + Pyramid, truncated at value. + + + Cylinder. + + + Cone, coming to point at value. + + + Cone, truncated at value. + + + Specifies the weight of the border around a range. + + + Hairline (thinnest border). + + + Medium. + + + Thick (widest border). + + + Thin. + + + Specifies the type of the category axis. + + + Axis groups data by an arbitrary set of categories. + + + Axis groups data on a time scale. + + + Excel controls the axis type. + + + Specifies the position of the chart element. + + + Automatically sets the position of the chart element. + + + Specifies a specific position for the chart element. + + + Specifies the type of the chart item. + + + Data label. + + + Chart area. + + + Series. + + + Chart title. + + + Walls. + + + Corners. + + + Data table. + + + Trend line. + + + Error bars. + + + X error bars. + + + Y error bars. + + + Legend entry. + + + Legend key. + + + Shape. + + + Major gridlines. + + + Minor gridlines. + + + Axis title. + + + Up bars. + + + Plot area. + + + Down bars. + + + Axis. + + + Series lines. + + + Floor. + + + Legend. + + + HiLo lines. + + + Drop lines. + + + Radar axis labels. + + + Nothing. + + + Leader lines. + + + Display unit label. + + + PivotChart field button. + + + PivotChart drop zone. + + + + + + + + + + + + + + + + Specifies how pictures are displayed on a column, bar picture chart, or legend key. + + + Picture is sized to a specified number of units and repeated the length of the bar. + + + Picture is sized to repeat a maximum of 15 times in the longest stacked bar. + + + Picture is stretched the full length of stacked bar. + + + Specifies the values displayed in the second chart in a pie chart or a bar of pie chart. + + + Second chart displays the smallest values in the data series. The number of values to display is specified by the SplitValue property. + + + Second chart displays values less than some percentage of the total value. The percentage is specified by the SplitValue property. + + + Arbitrary slides are displayed in the second chart. + + + Second chart displays values less than the value specified by the SplitValue property. + + + Specifies the chart type. + + + 3D Clustered Column + + + Stacked Column + + + 100% Stacked Column + + + 3D Clustered Column + + + 3D Stacked Column + + + 3D 100% Stacked Bar + + + Clustered Bar + + + Stacked Bar + + + 100% Stacked Bar + + + 3D Clustered Bar + + + 3D Stacked Bar + + + 3D 100% Stacked Bar + + + Stacked Line + + + 100% Stacked Line + + + Line with Markers + + + Stacked Line with Markers + + + 100% Stacked Line with Markers + + + Pie of Pie + + + Exploded Pie + + + Exploded 3D Pie + + + Bar of Pie + + + Scatter with Smoothed Lines + + + Scatter with Smoothed Lines and No Data Markers + + + Scatter with Lines + + + Scatter with Lines and No Data Markers + + + Stacked Area + + + 100% Stacked Area + + + 3D Stacked Area + + + 100% Stacked Area + + + Exploded Doughnut + + + Radar with Data Markers + + + Filled Radar + + + 3D Surface + + + 3D Surface (wireframe) + + + Surface (Top View) + + + Surface (Top View wireframe) + + + Bubble + + + Bubble with 3D effects + + + High-Low-Close + + + Open-High-Low-Close + + + Volume-High-Low-Close + + + Volume-Open-High-Low-Close + + + Clustered Cone Column + + + Stacked Cylinder Bar + + + 100% Stacked Cylinder Column + + + Clustered Cylinder Bar + + + Stacked Cylinder Bar + + + 100% Stacked Cylinder Bar + + + 3D Cylinder Column + + + Clustered Cone Column + + + Stacked Cone Column + + + 100% Stacked Cone Column + + + Clustered Cone Bar + + + Stacked Cone Bar + + + 100% Stacked Cone Bar + + + 3D Cone Column + + + Clustered Pyramid Column + + + Stacked Pyramid Column + + + 100% Stacked Pyramid Column + + + Clustered Pyramid Bar + + + Stacked Pyramid Bar + + + 100% Stacked Pyramid Bar + + + 3D Pyramid Column + + + 3D Column + + + Line + + + 3D Line + + + 3D Pie + + + Pie + + + Scatter + + + 3D Area + + + Area + + + Doughnut + + + Radar + + + Specifies the color of a selected feature such as border, font, or fill. + + + Automatic color. + + + No color. + + + Specifies global constants used in Microsoft Excel. + + + -4105 + + + -4111 + + + -4114 + + + 2 + + + 3 + + + -4099 + + + -4103 + + + -1 + + + -4142 + + + 0 + + + 1 + + + 1 + + + -4017 + + + -4108 + + + 9 + + + 8 + + + 2 + + + 16 + + + 4 + + + 2 + + + -4117 + + + 5 + + + 1 + + + 1 + + + 17 + + + -4124 + + + -4125 + + + -4126 + + + 18 + + + 15 + + + -4127 + + + 2 + + + -4130 + + + -4131 + + + 13 + + + 11 + + + 14 + + + 12 + + + -4134 + + + 2 + + + 4 + + + 3 + + + 4 + + + 3 + + + 3 + + + 2 + + + 9 + + + 2 + + + -4152 + + + 3 + + + 10 + + + 4 + + + 5 + + + 3 + + + 2 + + + 2 + + + 1 + + + 1 + + + 5 + + + 4 + + + -4160 + + + 2 + + + 3 + + + Indicates the position of data labels relative to the data markers. + + + Data label centered on data point or inside bar or pie. + + + Data label positioned above point. + + + Data label positioned below point. + + + Data label positioned at bottom of bar or pie. + + + Data label positioned at top of bar or pie. + + + Data label positioned at top of bar or pie. + + + Data label positioned arbitrarily. + + + Data label positioned arbitrarily. + + + Office application controls position of data label. + + + Data label positioned at bottom of bar or pie. + + + Data label centered on data point or inside bar or pie. + + + Specifies the type of data label to apply. The default is typically . + + + No data labels. + + + Value for the point (assumed if this argument isn't specified). + + + Percentage of the total. Available only for pie charts and doughnut charts. + + + Category for the point. + + + Percentage of the total, and category for the point. Available only for pie charts and doughnut charts. + + + Show the size of the bubble in reference to the absolute value. + + + Specifies how blank cells are plotted on a chart. + + + Values are interpolated into the chart. + + + Blank cells are not plotted. + + + Blanks are plotted as zero. + + + Indicates numeric units of measurement. + + + Specifies units of hundreds. + + + Specifies units of thousands. + + + Specifies units of tens of thousands. + + + Specifies units of hundreds of thousands. + + + Specifies units of millions. + + + Specifies units of tens of millions. + + + Specifies units of hundreds of millions. + + + Specifies units of thousands of millions. + + + Specifies units of mllions of millions. + + + Specifies custom units. + + + No units are displayed. + + + Specifies the end style for error bars. + + + Caps applied. + + + No caps applied. + + + Specifies which axis values are to receive error bars. + + + Bars run parallel to the Y axis for X-axis values. + + + Bars run parallel to the X axis for Y-axis values. + + + Specifies which error-bar parts to include. + + + Both positive and negative error range. + + + Only negative error range. + + + No error bar range. + + + Only positive error range. + + + Specifies the range marked by error bars. + + + Range is set by fixed values or cell values. + + + Fixed-length error bars. + + + Percentage of range to be covered by the error bars. + + + Shows range for specified number of standard deviations. + + + Shows standard error range. + + + Specifies the horizontal alignment for the object. + + + Center. + + + Center across selection. + + + Distribute. + + + Fill. + + + Align according to data type. + + + Justify. + + + Left. + + + Right. + + + Specifies the position of the legend on a chart. + + + Below the chart. + + + In the upper right-hand corner of the chart border. + + + Left of the chart. + + + Right of the chart. + + + Above the chart. + + + A custom position. + + + Specifies the marker style for a point or series in a line chart, scatter chart, or radar chart. + + + Automatic markers. + + + Circular markers. + + + Long bar markers. + + + Diamond-shaped markers. + + + Short bar markers. + + + No markers. + + + Picture markers. + + + Square markers with a plus sign. + + + Square markers. + + + Square markers with an asterisk. + + + Triangular markers. + + + Square markers with an X. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the location of the field in a PivotTable report. + + + Specifies the Column field. + + + Specifies the Data field. + + + Specifies that the field is hidden. + + + Specifies the Page field. + + + Specifies the Row field. + + + + + + + + + + + + + Specifies whether the values corresponding to a particular data series are in rows or columns. + + + Data series is in a column. + + + Data series is in a row. + + + Specifies the scale type of the value axis. + + + Linear. + + + Logarithmic. + + + Indicates what the size measurement is in relation to. + + + The size measure is for the width. + + + The size measure is for the area. + + + Specifies the text orientation for tick-mark labels. + + + Text orientation set by Excel. + + + Text runs down. + + + Characters run horizontally. + + + Text runs up. + + + Characters run vertically. + + + Specifies the position of tick-mark labels on the specified axis. + + + Top or right side of the chart. + + + Bottom or left side of the chart. + + + Next to axis (where axis is not at either side of the chart). + + + No tick marks. + + + Specifies the position of major and minor tick marks for an axis. + + + Crosses the axis. + + + Inside the axis. + + + No mark. + + + Outside the axis. + + + Indicates units of time measurement. + + + Specifies Day units. + + + Specifies Month units. + + + Specifies Year units. + + + Specifies how the trendline that smoothes out fluctuations in the data is calculated. + + + Uses an equation to calculate the least squares fit through points, for example, y=ab^x . + + + Uses the linear equation y = mx + b to calculate the least squares fit through points. + + + Uses the equation y = c ln x + b to calculate the least squares fit through points. + + + Uses a sequence of averages computed from parts of the data series. The number of points equals the total number of points in the series less the number specified for the period. + + + Uses an equation to calculate the least squares fit through points, for example, y = ax^6 + bx^5 + cx^4 + dx^3 + ex^2 + fx + g. + + + Uses an equation to calculate the least squares fit through points, for example, y = ax^b. + + + Specifies the type of underline applied to a font. + + + Double thick underline. + + + Two thin underlines placed close together. + + + No underlining. + + + Single underlining. + + + Not supported. + + + Specifies the vertical alignment for the object. + + + Bottom + + + Center + + + Distributed + + + Justify + + + Top + + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Accessibility.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Accessibility.dll new file mode 100644 index 0000000..ced8100 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Accessibility.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll new file mode 100644 index 0000000..80489b8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/DirectWriteForwarder.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/DirectWriteForwarder.dll new file mode 100644 index 0000000..76b87cb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/DirectWriteForwarder.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.deps.json b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.deps.json new file mode 100644 index 0000000..92de9af --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.deps.json @@ -0,0 +1,1288 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "Installer/1.0.0": { + "dependencies": { + "Microsoft.NET.ILLink.Analyzers": "7.0.100-1.23211.1", + "Microsoft.NET.ILLink.Tasks": "7.0.100-1.23211.1", + "Microsoft.Office.Interop.Excel": "15.0.4795.1001", + "Microsoft.Vbe.Interop": "15.0.0.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.36", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "6.0.36" + }, + "runtime": { + "Installer.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.3624.51421" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.3624.51421" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "14.40.33810.0" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "42.42.42.42424" + }, + "api-ms-win-core-console-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-console-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-datetime-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-debug-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-errorhandling-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-fibers-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l2-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-handle-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-heap-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-interlocked-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-libraryloader-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-localization-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-memory-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-namedpipe-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processenvironment-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processthreads-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processthreads-l1-1-1.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-profile-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-rtlsupport-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-string-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-synch-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-synch-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-sysinfo-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-timezone-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-util-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-conio-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-convert-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-environment-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-filesystem-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-heap-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-locale-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-math-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-multibyte-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-private-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-process-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-runtime-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-stdio-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-string-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-time-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-utility-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "clretwrc.dll": { + "fileVersion": "6.0.3624.51421" + }, + "clrjit.dll": { + "fileVersion": "6.0.3624.51421" + }, + "coreclr.dll": { + "fileVersion": "6.0.3624.51421" + }, + "createdump.exe": { + "fileVersion": "6.0.3624.51421" + }, + "dbgshim.dll": { + "fileVersion": "6.0.3624.51421" + }, + "hostfxr.dll": { + "fileVersion": "6.0.3624.51421" + }, + "hostpolicy.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscordaccore.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscordaccore_amd64_amd64_6.0.3624.51421.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscordbi.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscorrc.dll": { + "fileVersion": "6.0.3624.51421" + }, + "msquic.dll": { + "fileVersion": "1.9.1.0" + }, + "ucrtbase.dll": { + "fileVersion": "10.0.22000.194" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51513" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "PresentationCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationUI.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "ReachFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Drawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Printing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Xaml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsBase.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22621.3233" + }, + "PenImc_cor3.dll": { + "fileVersion": "6.0.3624.51603" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "6.0.24.46601" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.40.33810.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "6.0.3624.51603" + } + } + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": {}, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": {}, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4795.1000" + } + } + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "runtime": { + "Microsoft.Vbe.Interop.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + }, + "office/15.0.0.0": { + "runtime": { + "office.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + } + } + }, + "libraries": { + "Installer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0GvbEgDGcUQA9KuWcQU1WwYHXt1tBzNr1Nls/M57rM7NA/AndFwCaCEoJpJkmxRY7xLlPDBnmGp8h5+FNqUngg==", + "path": "microsoft.net.illink.analyzers/7.0.100-1.23211.1", + "hashPath": "microsoft.net.illink.analyzers.7.0.100-1.23211.1.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvG8XZYLjT0o3WicCyKBZysVWo1jC9HdCFmNRmddx3WbAz0UCsd0qKZqpiEo99VLA8Re+FzWK51OcRldQPbt2Q==", + "path": "microsoft.net.illink.tasks/7.0.100-1.23211.1", + "hashPath": "microsoft.net.illink.tasks.7.0.100-1.23211.1.nupkg.sha512" + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "hashPath": "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512" + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "office/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.dll new file mode 100644 index 0000000..1947985 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.exe b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.exe new file mode 100644 index 0000000..63a20c7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.exe differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.pdb b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.pdb new file mode 100644 index 0000000..fa737b4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.pdb differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.runtimeconfig.json b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.runtimeconfig.json new file mode 100644 index 0000000..617f954 --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Installer.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.36" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.36" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.CSharp.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..39b5df2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.CSharp.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..03f5288 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Office.Interop.Excel.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Office.Interop.Excel.dll new file mode 100644 index 0000000..9d6d158 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Office.Interop.Excel.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Vbe.Interop.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Vbe.Interop.dll new file mode 100644 index 0000000..6c91b03 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Vbe.Interop.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..1c4ea23 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll new file mode 100644 index 0000000..433e666 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..9ef90a3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..c4e4035 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..9b2653c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..c1c9d24 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..313e5cc Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PenImc_cor3.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PenImc_cor3.dll new file mode 100644 index 0000000..52bb058 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PenImc_cor3.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationCore.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationCore.dll new file mode 100644 index 0000000..834f114 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationCore.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll new file mode 100644 index 0000000..c3cd243 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemData.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemData.dll new file mode 100644 index 0000000..fcb41d1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemData.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll new file mode 100644 index 0000000..6fd26e7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll new file mode 100644 index 0000000..18bf358 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll new file mode 100644 index 0000000..3676696 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero.dll new file mode 100644 index 0000000..3047a9a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero2.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero2.dll new file mode 100644 index 0000000..d299393 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero2.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll new file mode 100644 index 0000000..a8e8fea Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Classic.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Classic.dll new file mode 100644 index 0000000..1f96bfa Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Classic.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Luna.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Luna.dll new file mode 100644 index 0000000..fdc5503 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Luna.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Royale.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Royale.dll new file mode 100644 index 0000000..5a81cf9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.Royale.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.dll new file mode 100644 index 0000000..cb99daf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationFramework.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationNative_cor3.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationNative_cor3.dll new file mode 100644 index 0000000..dd150ad Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationNative_cor3.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationUI.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationUI.dll new file mode 100644 index 0000000..d26e605 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/PresentationUI.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ReachFramework.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ReachFramework.dll new file mode 100644 index 0000000..f84e5d4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ReachFramework.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.AppContext.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.AppContext.dll new file mode 100644 index 0000000..7ba712d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.AppContext.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Buffers.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Buffers.dll new file mode 100644 index 0000000..2cf6038 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Buffers.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.CodeDom.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.CodeDom.dll new file mode 100644 index 0000000..37f744d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.CodeDom.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Concurrent.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..dfc5729 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Concurrent.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Immutable.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..62aed01 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Immutable.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.NonGeneric.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..580633c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.NonGeneric.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Specialized.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..8c2fa3b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.Specialized.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.dll new file mode 100644 index 0000000..18a8a2b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Collections.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..bd9bf65 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..07aed62 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..8693324 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..a84952b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..3fca5ca Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.dll new file mode 100644 index 0000000..02c8342 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ComponentModel.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..b234469 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Configuration.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Configuration.dll new file mode 100644 index 0000000..cb86565 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Configuration.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Console.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Console.dll new file mode 100644 index 0000000..a6b59ed Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Console.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Core.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Core.dll new file mode 100644 index 0000000..4c1e1d1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Core.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.Common.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.Common.dll new file mode 100644 index 0000000..64248ae Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.Common.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..95dc1fd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.dll new file mode 100644 index 0000000..5763e3a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Data.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Design.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Design.dll new file mode 100644 index 0000000..0be2484 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Design.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..32201d2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Debug.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..57925a2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Debug.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..f9dd550 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..741fa8c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..444dc1a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..2cb5ee5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..a255d66 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Process.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..2efb32a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Process.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..fb5011e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..e618a51 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tools.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..505db14 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tools.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..65748d9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..4979f06 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.DirectoryServices.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.DirectoryServices.dll new file mode 100644 index 0000000..feb0a75 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.DirectoryServices.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Common.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Common.dll new file mode 100644 index 0000000..c6f074f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Common.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Design.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Design.dll new file mode 100644 index 0000000..356c0ae Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Design.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..2f0521c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.dll new file mode 100644 index 0000000..48e1f18 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Drawing.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Dynamic.Runtime.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..2014b1a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Dynamic.Runtime.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Formats.Asn1.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..a097007 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Formats.Asn1.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.Calendars.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..ba2b212 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.Calendars.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.Extensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..1f77dc8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.Extensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.dll new file mode 100644 index 0000000..7455c59 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Globalization.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..ce57142 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..5ae9379 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Native.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Native.dll new file mode 100644 index 0000000..27d7e53 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Native.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..9b89d8b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.dll new file mode 100644 index 0000000..ece41e7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Compression.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..163f8cd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..f029d4b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..d2da425 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..8fb1b8e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..c056ea4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..0a52b03 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..4c17eec Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll new file mode 100644 index 0000000..cfcbddf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..b1c70a4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..23f62e4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..3cf06a1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.dll new file mode 100644 index 0000000..66eb49d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.IO.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Expressions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..c530d07 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Expressions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Parallel.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..15fa9b6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Parallel.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Queryable.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..b0ad105 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.Queryable.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.dll new file mode 100644 index 0000000..866e0d2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Linq.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Memory.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Memory.dll new file mode 100644 index 0000000..3032fe4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Memory.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Http.Json.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..218055d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Http.Json.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Http.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Http.dll new file mode 100644 index 0000000..efd5231 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Http.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.HttpListener.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..d7747e6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.HttpListener.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Mail.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Mail.dll new file mode 100644 index 0000000..c8e6cbb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Mail.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.NameResolution.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..65fb0bf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.NameResolution.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.NetworkInformation.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..c5b534f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.NetworkInformation.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Ping.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Ping.dll new file mode 100644 index 0000000..6089d2d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Ping.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..2009135 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Quic.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Quic.dll new file mode 100644 index 0000000..bc5b66b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Quic.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Requests.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Requests.dll new file mode 100644 index 0000000..28bcedb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Requests.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Security.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Security.dll new file mode 100644 index 0000000..7182b5c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Security.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.ServicePoint.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..4e3f87a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.ServicePoint.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Sockets.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..39e2214 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.Sockets.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebClient.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..7547388 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebClient.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..ff4a9c8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebProxy.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..5f8a987 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebProxy.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..a4b37c2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..1bd9677 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.dll new file mode 100644 index 0000000..ba5e27e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Net.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Numerics.Vectors.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..43cc40e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Numerics.Vectors.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Numerics.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Numerics.dll new file mode 100644 index 0000000..ea04d7a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Numerics.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ObjectModel.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ObjectModel.dll new file mode 100644 index 0000000..8ad8583 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ObjectModel.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Printing.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Printing.dll new file mode 100644 index 0000000..2c35a5d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Printing.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.CoreLib.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..4a0f7b0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.CoreLib.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..4cb7f64 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Uri.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Uri.dll new file mode 100644 index 0000000..58d44e2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Uri.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Xml.Linq.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..4e71c42 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Xml.Linq.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Xml.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Xml.dll new file mode 100644 index 0000000..d02de19 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Private.Xml.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..13f1271 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..9a62e69 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..d3deaf4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..30ac549 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Extensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..98a30b8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Extensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Metadata.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..1fbf2f7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Metadata.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..2c63019 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..baea98c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.dll new file mode 100644 index 0000000..5f25cc0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Reflection.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Extensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Extensions.dll new file mode 100644 index 0000000..ec4c400 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Extensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Reader.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..8acbdec Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Reader.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.ResourceManager.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..21357e1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.ResourceManager.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Writer.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..8780c41 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Resources.Writer.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..5df76b1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..515b363 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Extensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..5a13835 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Extensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Handles.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..6be0766 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Handles.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..8b208c6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..0cddb78 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..e2f5b32 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Loader.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..ca5fc1d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Loader.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Numerics.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..41f8a77 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Numerics.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..67cf05e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..2ec66d0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..291e37f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..43030f3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..cedd13b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.dll new file mode 100644 index 0000000..58c374a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Runtime.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.AccessControl.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..b2720e9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.AccessControl.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Claims.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Claims.dll new file mode 100644 index 0000000..a28f01a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Claims.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..80e4e17 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..bbe2268 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..ad67338 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..123f0db Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..1e121c5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..849af6c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..17ebbbc Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..ffac07f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..2f2c843 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..db7a269 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Permissions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Permissions.dll new file mode 100644 index 0000000..9c64522 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Permissions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Principal.Windows.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..102c2bb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Principal.Windows.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Principal.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Principal.dll new file mode 100644 index 0000000..36d876d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.Principal.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.SecureString.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..79dffe9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.SecureString.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.dll new file mode 100644 index 0000000..18202d2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Security.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ServiceModel.Web.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..6cd66d1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ServiceModel.Web.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ServiceProcess.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..7eaa3ba Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ServiceProcess.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..dedeb34 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..b612d6d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..9cac878 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encodings.Web.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..2edc5ad Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Encodings.Web.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Json.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Json.dll new file mode 100644 index 0000000..9337643 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.Json.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.RegularExpressions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..80b39c4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Text.RegularExpressions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.AccessControl.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.AccessControl.dll new file mode 100644 index 0000000..a22b14e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.AccessControl.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Channels.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..aae559e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Channels.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Overlapped.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..e3e5f9a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Overlapped.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..6603915 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..40a8868 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..24c7b29 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..03fa0f5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Thread.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..137f90c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Thread.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.ThreadPool.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..6198605 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.ThreadPool.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Timer.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..750b627 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.Timer.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.dll new file mode 100644 index 0000000..9919424 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Threading.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Transactions.Local.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..446c302 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Transactions.Local.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Transactions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Transactions.dll new file mode 100644 index 0000000..33aafaf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Transactions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ValueTuple.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ValueTuple.dll new file mode 100644 index 0000000..944ad29 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.ValueTuple.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Web.HttpUtility.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..32ffd8f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Web.HttpUtility.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Web.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Web.dll new file mode 100644 index 0000000..8512afd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Web.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll new file mode 100644 index 0000000..fa87f0d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Extensions.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Extensions.dll new file mode 100644 index 0000000..beda0a8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Extensions.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll new file mode 100644 index 0000000..7303749 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.dll new file mode 100644 index 0000000..3488253 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll new file mode 100644 index 0000000..52d6088 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.dll new file mode 100644 index 0000000..517e222 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll new file mode 100644 index 0000000..acbb29c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Presentation.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Presentation.dll new file mode 100644 index 0000000..efb9c55 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.Presentation.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.dll new file mode 100644 index 0000000..adb81a2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Windows.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xaml.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xaml.dll new file mode 100644 index 0000000..6ca10c5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xaml.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.Linq.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..c7c0ce2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.Linq.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..a33799b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.Serialization.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..3696fbf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.Serialization.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XDocument.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..e88a234 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XDocument.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..c53fd95 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..54dfbab Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XmlDocument.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..11966ac Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XmlDocument.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..59e2840 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.dll new file mode 100644 index 0000000..8976fb5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.Xml.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.dll new file mode 100644 index 0000000..a5e75f9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/System.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationClient.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationClient.dll new file mode 100644 index 0000000..9a816a0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationClient.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll new file mode 100644 index 0000000..672fab5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationProvider.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationProvider.dll new file mode 100644 index 0000000..fe8d324 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationProvider.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationTypes.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationTypes.dll new file mode 100644 index 0000000..b07c636 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/UIAutomationTypes.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/WindowsBase.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/WindowsBase.dll new file mode 100644 index 0000000..3b6cf90 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/WindowsBase.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/WindowsFormsIntegration.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/WindowsFormsIntegration.dll new file mode 100644 index 0000000..27d4dca Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/WindowsFormsIntegration.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..726b975 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll new file mode 100644 index 0000000..b9d1ed4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..f2ecfa7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..7bd075b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..3bafba9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll new file mode 100644 index 0000000..651ffe1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..12bf0b6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..da64db3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..9246b98 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..c96e31d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..baa932f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..7aa0639 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..ddd5e27 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..7b90b7c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..63e54f3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..37e956e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..a2f3605 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..f4d3a03 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..7bc40e0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..da2b687 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..ae6dce5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..32b52be Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..b88f76a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..a17135a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..527d1a1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..bab2d02 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..080a9c9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..2355a62 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..ddd2b4c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..e2fe9ef Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..97ea465 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..4e3af05 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..5fcd98b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..c3f2800 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..e86ce81 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..62c45dd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..bc346dc Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..d0a43f8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..59e68c0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..08015e2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..6e3ba53 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..eaa7204 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/clretwrc.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/clretwrc.dll new file mode 100644 index 0000000..208e4fb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/clretwrc.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/clrjit.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/clrjit.dll new file mode 100644 index 0000000..75cbc42 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/clrjit.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/coreclr.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/coreclr.dll new file mode 100644 index 0000000..8d2e7a4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/coreclr.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/createdump.exe b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/createdump.exe new file mode 100644 index 0000000..f03b3cc Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/createdump.exe differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..56e938e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationCore.resources.dll new file mode 100644 index 0000000..fecbf8b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll new file mode 100644 index 0000000..554d312 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationUI.resources.dll new file mode 100644 index 0000000..53957bd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/ReachFramework.resources.dll new file mode 100644 index 0000000..629aa0e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..ba1db32 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..718f895 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..625e397 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..ec7bd96 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..8242747 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Xaml.resources.dll new file mode 100644 index 0000000..1c2bcbf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a9e04ea Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..35090a0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..cf03cd6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..a59e0ef Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/WindowsBase.resources.dll new file mode 100644 index 0000000..70bae3a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..10e3825 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/dbgshim.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/dbgshim.dll new file mode 100644 index 0000000..78f638b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/dbgshim.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..cd445f6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationCore.resources.dll new file mode 100644 index 0000000..b728739 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationFramework.resources.dll new file mode 100644 index 0000000..3112793 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationUI.resources.dll new file mode 100644 index 0000000..cec09d8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/ReachFramework.resources.dll new file mode 100644 index 0000000..6f75493 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..90288e9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..4d7c3d0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..a992bb4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..0e960e5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..179792a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Xaml.resources.dll new file mode 100644 index 0000000..4a358fe Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll new file mode 100644 index 0000000..0af6488 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..3169440 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..0de4a9d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..2c8b8e5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/WindowsBase.resources.dll new file mode 100644 index 0000000..a7d8d73 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..f5936d1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..c6a87ee Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationCore.resources.dll new file mode 100644 index 0000000..1a4c35d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationFramework.resources.dll new file mode 100644 index 0000000..e279b45 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationUI.resources.dll new file mode 100644 index 0000000..94c7c0f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/ReachFramework.resources.dll new file mode 100644 index 0000000..026acc4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..4faa6ef Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..15d4064 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..9b2cc73 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..3397abe Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..d91a454 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Xaml.resources.dll new file mode 100644 index 0000000..a5d6318 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll new file mode 100644 index 0000000..0fb8075 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0aeea94 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..810e24c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..190372c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/WindowsBase.resources.dll new file mode 100644 index 0000000..d550ae6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..d71e7ef Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..3876b30 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationCore.resources.dll new file mode 100644 index 0000000..437aff8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll new file mode 100644 index 0000000..a3d0b4d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationUI.resources.dll new file mode 100644 index 0000000..a145dc5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/ReachFramework.resources.dll new file mode 100644 index 0000000..b6d72aa Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..feac0d9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..47d329d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..596c835 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..0eb8287 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..9a33e46 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Xaml.resources.dll new file mode 100644 index 0000000..04fe8fd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..c8a0d4e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..cfbe99d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..a30e57d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..429edcf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/WindowsBase.resources.dll new file mode 100644 index 0000000..9bbef22 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..a39ebe1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/hostfxr.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/hostfxr.dll new file mode 100644 index 0000000..3dbddf6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/hostfxr.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/hostpolicy.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/hostpolicy.dll new file mode 100644 index 0000000..4b644f6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/hostpolicy.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..e8f0ff0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationCore.resources.dll new file mode 100644 index 0000000..4de7f12 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationFramework.resources.dll new file mode 100644 index 0000000..5335f56 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationUI.resources.dll new file mode 100644 index 0000000..17b15e6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/ReachFramework.resources.dll new file mode 100644 index 0000000..5157854 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..5cf9797 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..5bc7fc6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..50e7dcf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..6c59b19 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..c507fb5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Xaml.resources.dll new file mode 100644 index 0000000..48b6a6b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll new file mode 100644 index 0000000..877b1db Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..d86b0ae Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..c11917a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..4b4fa76 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/WindowsBase.resources.dll new file mode 100644 index 0000000..f1e0acc Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..4b5e5d1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..762bf48 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationCore.resources.dll new file mode 100644 index 0000000..4dde8bb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll new file mode 100644 index 0000000..1c125de Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationUI.resources.dll new file mode 100644 index 0000000..697e272 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/ReachFramework.resources.dll new file mode 100644 index 0000000..a01f212 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..162cbf0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..7ebd39a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..e92cd11 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..123d073 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..ed5ec27 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Xaml.resources.dll new file mode 100644 index 0000000..6c5f34b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll new file mode 100644 index 0000000..3db9469 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..87797d3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..98b5035 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..34b80d7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/WindowsBase.resources.dll new file mode 100644 index 0000000..48b2971 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..87a0674 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..816c0c0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationCore.resources.dll new file mode 100644 index 0000000..694cd8e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll new file mode 100644 index 0000000..a8b3b87 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationUI.resources.dll new file mode 100644 index 0000000..24ed85c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/ReachFramework.resources.dll new file mode 100644 index 0000000..f179e43 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..f36296e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..a15eb4b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..3721ae2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..cf3f11a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..72c5752 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Xaml.resources.dll new file mode 100644 index 0000000..6a091ee Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll new file mode 100644 index 0000000..d450499 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0bb52fb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..907311d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..fd32c5f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/WindowsBase.resources.dll new file mode 100644 index 0000000..f91450a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..0b70cc5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordaccore.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordaccore.dll new file mode 100644 index 0000000..e27cb78 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordaccore.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.3624.51421.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.3624.51421.dll new file mode 100644 index 0000000..e27cb78 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.3624.51421.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordbi.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordbi.dll new file mode 100644 index 0000000..4f74868 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscordbi.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscorlib.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscorlib.dll new file mode 100644 index 0000000..c509a2e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscorlib.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscorrc.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscorrc.dll new file mode 100644 index 0000000..09dc6cd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/mscorrc.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/msquic.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/msquic.dll new file mode 100644 index 0000000..07cd9e3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/msquic.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/netstandard.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/netstandard.dll new file mode 100644 index 0000000..e897d4b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/netstandard.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/office.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/office.dll new file mode 100644 index 0000000..1c82961 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/office.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/office.xml b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/office.xml new file mode 100644 index 0000000..e0a7c79 --- /dev/null +++ b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/office.xml @@ -0,0 +1,17424 @@ + + + + office + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a button control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a value that indicates if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Returns a value that indicates if the specified command bar control is a built-in control of the container application. + + + Returns or sets a value that indicates if the face of a command bar button control is its original built-in face. + + + Returns or sets the caption text for a command bar control. + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + + + Copies the face of a command bar button control to the Clipboard. + + + Returns a value that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Returns or sets a value that indicates if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the ID number for the face of a command bar button control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context ID number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns or sets the type of hyperlink associated with the specified command bar button. + + + Returns the ID for a built-in command bar control. + + + Returns a value that indicates the index number for an object in the collection. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns a value that indicates if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns a value that indicates the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Returns or sets an IPictureDisp object that represents the mask image of a object. + + + Moves the specified command bar control to an existing command bar. + A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a Visual Basic procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a value that an application can use to execute a command. + + + Returns a value that indicates the parent object for the specified object. + + + Pastes the contents of the Clipboard onto a command bar button control. + + + Returns or sets an IPictureDisp object representing the image of a object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets the shortcut key text displayed next to a button control when the button appears on a menu, submenu, or shortcut menu. + + + Returns or sets the appearance of a command bar button control. + + + Returns or sets the way a command bar button control is displayed. + + + Returns or sets the information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Returns or sets a value that indicates if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + Reserved for internal use. + + + + A Delegate type used to add an event handler for the event. The Click event occurs when the user clicks a object. + Required CommandBarButton. Denotes the CommandBarButton control that initiated the event. + Required Boolean. False if the default behavior associated with the CommandBarButton control occurs, unless it’s canceled by another process or add-in. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when the user clicks a object. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + Represents a combo box control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Adds a list item to the specified command bar combo box control. + Required String. The text added to the control. + Optional Object. The position of the item in the list. If this argument is omitted, the item is added to the end of the list. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar or command bar control is a built-in command bar or control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Removes all list items from a command bar combo box control (drop-down list box or combo box) and clears the text box (edit box or combo box). + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Returns or sets the number of lines in a command bar combo box control. + + + Returns or sets the width (in pixels) of the list for the specified command bar combo box control. + + + Determines if the specified command bar or command bar control is enabled. + + + Runs a procedure, command, or user action depending on the specified object. + + + Returns or sets the height of a command bar control or command bar. + + + Returns or sets the Help context Id number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + Reserved for internal use. + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns or sets the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Returns or sets an item in the command bar combo box control. + Required Integer. The list item to be set. + + + Returns the number of list items in a command bar combo box control. + + + Returns or sets the number of list items in a command bar combo box control that appears above the separator line. + + + Returns or sets the index number of the selected item in the list portion of the command bar combo box control. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a Visual Basic procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Removes an item from a command bar combo box control. + Required Integer. The item to be removed from the list. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets the way a command bar is displayed. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text in the display or edit portion of the command bar combo box control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar or command bar control. + + + Reserved for internal use. + + + + A Delegate type used to add an event handler for the event. The Change event occurs when the end user changes the selection in a command bar combo box. + The command bar combo box control. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when the end user changes the selection in a command bar combo box. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + A collection of objects that represent the command bars in the container application. + + + Returns the object whose property is set to the running procedure. + + + Returns a object that represents the active menu bar in the container application. + + + Checks or unchecks the check box control for the option to show menus in Microsoft Office as full or personalized. + + + Creates a new command bar and adds it to the collection of command bars. + Optional Object. The name of the new command bar. If this argument is omitted, a default name is assigned to the command bar (such as Custom 1). + Optional Object. The position or type of the new command bar. Can be one of the constants listed in the following table.ConstantDescriptionmsoBarLeft, msoBarTop, msoBarRight, msoBarBottomIndicates the left, top, right, and bottom coordinates of the new command barmsoBarFloatingIndicates that the new command bar won't be dockedmsoBarPopupIndicates that the new command bar will be a shortcut menumsoBarMenuBarMacintosh only + Optional Object. True to replace the active menu bar with the new command bar. The default value is False. + Optional Object. True to make the new command bar temporary. Temporary command bars are deleted when the container application is closed. The default value is False. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Commits the rendering transaction. Returns Nothing. + + + Returns or sets an Integer value indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Determines if the Answer Wizard dropdown menu is enabled. + + + Determines if toolbar customization is disabled. + + + Determines if the font names in the Font box are displayed in their actual fonts. + + + Determines if shortcut keys are displayed in the ToolTips for each command bar control. + + + Determines if ScreenTips are displayed whenever the user positions the pointer over command bar controls. + + + Executes the control identified by the parameter. + Identifier for the control. + + + Returns a object that fits the specified criteria. + Optional . The type of control. + Optional Object. The identifier of the control. + Optional Object. The tag value of the control. + Optional Object. True to include only visible command bar controls in the search. The default value is False. Visible command bars include all visible toolbars and any menus that are open at the time the FindControl method is executed. + + + Returns the collection that fits the specified criteria. + Optional . The type of control. + Optional Object. The control’s identifier. + Optional Object. The control’s tag value. + Optional Object. True to include only visible command bar controls in the search. The default value is False. + + + Returns True if the control identified by the parameter is enabled. + Boolean + Identifier for the control. + + + + Returns an IPictureDisp object of the control image identified by the parameter scaled to the dimensions specified by width and height. + IPictureDisp + Identifier for the control. + The width of the image. + The height of the image. + + + Returns the label of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns a value indicating whether the toggleButton control identified by the parameter is pressed. + Boolean + Identifier for the control. + + + Returns the screentip of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns the supertip of the control identified by the parameter as a String. + String + Identifier for the control. + + + Returns True if the control identified by the parameter is visible. + Boolean + Identifier for the control. + + + Reserved for internal use. + + + Returns a object from the collection. + Required Object. The name or index number of the object to be returned. + + + Determines if the toolbar buttons displayed are larger than normal size. + + + Returns or sets the way a command bar is animated. + + + Returns the parent object for the specified object. + + + Releases the user interface focus from all command bars. + + + Reserved for internal use. + + + Reserved for internal use. + + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Occurs when any change is made to a command bar. + + + Reserved for internal use. + + + A Delegate type used to add an event handler for the event. The OnUpdate event occurs when any change is made to a command bar. + + + Reserved for internal use. + + + + + + Represents a custom task pane in the container application. + + + Gets the Application object of the host application. Read-only. + Object + + + Gets the Microsoft ActiveX® control instance displayed in the custom task pane frame. Read-only. + Object + + + Deletes the active custom task pane. + + + Gets or sets an enumerated value specifying the docked position of a object. Read/write. + + + + + + Gets or sets an enumerated value specifying a restriction on the orientation of a object. Read/write. + + + + + + Gets or sets the height of the object (in points). Read/write. + Integer + + + Gets the title of a CustomTaskPane object. Read-only. + String + + + True if the specified object is visible. Read/write. + Boolean + + + Gets or sets the width of the task pane specified by the object. Read/write. + Integer + + + Gets the parent window object of the object. Read-only. + Object + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user changes the docking position of the active custom task pane. + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user changes the visibility of the custom task pane. + + + Reserved for internal use. + + + + + + + + + Represents a single in a collection. + + + Adds a node to the XML tree. + Represents the node under which this node should be added. If adding an attribute, the parameter denotes the element that the attribute should be added to. + Represents the base name of the node to be added. + Represents the namespace of the element to be appended. This parameter is required to append nodes of type or , otherwise it is ignored. + Represents the node which should become the next sibling of the new node. If not specified, the node is added to the end of the parent node’s children. This parameter is ignored for additions of type . If the node is not a child of the parent, an error is displayed. + Specifies the type of node to append. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the appended node for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a value that indicates whether the is built-in. Read-only + Boolean + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the current from the data store (IXMLDataStore interface). + + + Gets the root element of a bound region of data in a document. If the region is empty, the property returns Nothing. Read-only. + + + + + + Gets a object that provides access to any XML validation errors, if any exists. If no validation errors exist, this property returns Nothing. Read-only. + + + + + + Gets a String containing the GUID assigned to the current object. Read-only. + String + + + Allows the template author to populate a from an existing file. Returns True if the load was successful. + Boolean + Points to the file on the user’s computer or on a network containing the XML to be loaded. + + + Allows the template author to populate a object from an XML string. Returns True if the load was successful. + Boolean + Contains the XML to load. + + + Gets the set of namespace prefix mappings used against the current object. Read-only. + + + + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets a object representing the set of schemas attached to a bound region of data in a document. Read/write. + + + + + + Selects a collection of nodes from a custom XML part. + + + + Contains the XPath expression. + + + Selects a single node within a custom XML part matching an XPath expression. + + + + Contains an XPath expression. + + + Gets the XML representation of the current object. Read-only. + String + + + + + + + + + + + Occurs after a node is deleted in a object. + + + Occurs after a node is inserted in a object. + + + Occurs just after a node is replaced in a object. + + + + + + + + + + + + + + + + + Represents a collection of objects. + + + Allows you to add a new to a file. + + + + Optional String. Contains the XML to add to the newly created . + Optional . Represents the set of schemas to be used to validate this stream. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Returns . + + + Gets a object from the collection. Read-only. + + + + Required Object. The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Selects a custom XML part matching a GUID. + + + + Required String. Contains the GUID for the custom XML part. + + + Selects the collection of custom XML parts whose namespace matches the search criteria. + + + + Required String. Contains a namespace URI. + + + + + + + + + + + Occurs just after a object is added to the collection. + + + Occurs just after a object is loaded. + + + Occurs just before a object is deleted from the collection. + + + + + + + + + + + + + + + + + Represents a collection of objects attached to a data stream. + + + Allows you to add one or more schemas to a schema collection that can then be added to a stream in the data store and to the Schema Library. + + + + Optional String. Contains the namespace of the schema to be added to the collection. If the schema already exists in the Schema Library, the method will retrieve it from there. + Optional String. Contains the alias of the schema to be added to the collection. If the alias already exists in the Schema Library, the method can find it using this argument. + Optional String. Contains the location of the schema on a disk. If this parameter is specified, the schema is added to the collection and to the Schema Library. + Optional Boolean. Specifies whether, in the case where the method is adding the schema to the Schema Library, the Schema Library keys should be written to the registry(HKey_Local_Machine for all users or HKey_Current_User for just the current user). The parameter defaults to False and writes to HKey_Current_User. + + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Returns . + + + Gets a object from the collection. Read-only. + + + + Required Object. The name or index number of the object to be returned. + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + Required Integer. The index number of the object. + + + Gets the parent object for the object. Read-only. + Object + + + Specifies whether the schemas in a schema collection are valid (conforms to the syntactic rules of XML and the rules for a specified vocabulary; a standard for structuring XML). + Boolean + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + Represents the Answer Wizard in a Microsoft Office application. + + + Returns an Application object that represents the container application for the object. + + + Clears the list of files for the current AnswerWizard, including the default list of files for the Microsoft Office host application. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an collection that represents the list of files available to the current AnswerWizard. + + + Returns the Parent object for the specified object. + + + Resets the list of files for the current AnswerWizard to the default list of files for the Microsoft Office host application. + + + The AnswerWizardFiles collection contains all of the Answer Wizard files (with the file name extension .AW) available to the active Microsoft Office application. + + + Creates a new reference to an Answer Wizard file and adds it to the collection. + Required String. The fully qualified path to the specified Answer Wizard file. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Required String. The name of the file to be deleted, including the fully qualified path, file name, and extension. + + + Returns a file name string from an collection. + Required Integer. The index number of the Answer Wizard file name string, or the file name, to be returned. + + + Returns the parent object for the specified object. + + + Represents the Microsoft Office Assistant. + + + Resumes or suspends Office Assistant Help during a custom wizard. + The number returned by the method. + Specifies the change to the Office Assistant Help session. + The animation the Office Assistant performs when it is suspended or resumed. + + + Returns or sets an animation action for the Office Assistant. + + + Returns an Application object that represents the container application for the object. + + + True if the Office Assistant balloon delivers application alerts when the Office Assistant is visible. + + + True if the Office Assistant appears when the user presses the F1 key to display Help. + + + True if the Office Assistant provides online Help with wizards. + + + Returns a value that indicates the last recorded balloon error. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Displays an alert and returns an Integer that indicates which button the user pressed. + Sets the title of the alert. + Sets the text of the alert. + Determines which buttons are displayed on the alert. + Determines the icon that is displayed on the alert. + Determines which button is set as the default button of the alert. If this argument is set to a value greater than the number of buttons, an error is returned. + Always set this to msoAlertCancelDefault. Any other setting may return an error. + True if the alert is displayed in a message box or False if the alert is displayed through the Office Assistant. + + + Releases the variable returned by the method. + The number returned by the StartWizard method. + True to indicate that the user completed the wizard successfully. + The animation the Office Assistant performs if is set to True. The default value is msoAnimationCharacterSuccessMajor. + + + True if the Office Assistant provides information about using application features more effectively. + + + Returns or sets the path and file name for the active Office Assistant. + + + True if the Office Assistant balloon presents a list of Help topics based on keywords the user selects before clicking the Assistant window or pressing F1. + + + Displays the Office Assistant and the built-in "What would you like to do?" Assistant balloon for standard Office online Help. + + + True if the Office Assistant displays high-priority tips. + + + Returns the text associated with an object. + + + True if the Office Assistant displays Help about keyboard shortcuts. + + + Sets or returns the horizontal position of the Office Assistant window (in points), or the distance (in pixels) of the command bar, from the left edge of the specified object relative to the screen. + + + True if the Office Assistant provides suggestions for using the mouse effectively. + + + Moves the Office Assistant to the specified location. + The left position of the Office Assistant window, in points. + The top position of the Office Assistant window, in points. + + + True if the Office Assistant window automatically moves when it's in the way of the user's work area. + + + Returns or sets the name of the specified object. + + + Creates an Office Assistant balloon. + + + True if the Office Assistant is enabled. + + + Returns the Parent object for the specified object. + + + True if the Office Assistant window appears in its smaller size. + + + Resets the application tips that appear in the Office Assistant balloon. + + + True if the Office Assistant displays application and programming Help. + + + True if the Office Assistant produces the sounds that correspond to animations. + + + Starts the Office Assistant and returns an Integer value that identifies the session. + True to display the Office decision balloon. The Office decision balloon asks the user whether he or she wants help with the active custom wizard. It isn't necessary to use the property to display the Office Assistant if you specify True for this argument. + The name of the callback procedure run by the Office decision balloon and the branch balloon. The branch balloon allows the user to choose between custom Help you've provided for the wizard and standard Office Help. + A number that identifies the balloon that initiated the callback procedure. + The animation the Office Assistant performs when this method is used. The default value is msoAnimationGetWizardy. + False to display the Office decision balloon. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + The position of the corners (in points and relative to the screen) of the custom wizard form the Office Assistant will avoid when the Office Assistant appears. + + + True if the Office Assistant displays a special tip each time the Office application is opened. + + + Sets or returns the distance (in points) from the top of the Office Assistant, or from the top edge of the specified command bar, to the top edge of the screen. + + + True if the specified object is visible. + + + A collection of all the objects in the specified chart. + + + Returns . + + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object (you can use this property with an OLE Automation object to return the application of that object). Read-only. + Object + + + Returns the number of objects in the collection. + Integer + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only + Long + + + Returns a single Axis object from the collection. + + + + The axis type. + The axis. Optional. + + + Returns the parent object for the specified object. Read-only. + Object + + + Represents the balloon where the Office Assistant displays information. + + + Returns or sets an animation action for the Office Assistant. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the type of balloon the Office Assistant uses. + + + Returns or sets the type of button displayed at the bottom of the Office Assistant balloon. + + + Returns or sets the name of the procedure to run from a modeless balloon. + + + Returns the collection that represents all the check boxes contained in the specified balloon. + + + Closes the active modeless balloon. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the heading that appears in the Office Assistant balloon. + + + Returns or sets the type of icon that appears in the upper-left portion of the Office Assistant balloon. + + + Returns a collection that represents the button labels, number labels, and bullet labels contained in the specified Office Assistant balloon. + + + Returns or sets the modal behavior of the Office Assistant balloon. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets an integer that identifies the Office Assistant balloon that initiated the callback procedure. + + + Prevents the Office Assistant balloon from being displayed in a specified area of the screen. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + Required Integer. The coordinates (in points and relative to the screen) of the area of the screen that the Office Assistant balloon will avoid when it's displayed. + + + Displays the specified balloon object and returns a constant. + + + Returns or sets the text displayed after the heading but before the labels or check boxes in the Office Assistant balloon. + + + Represents a checkbox in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified checkbox in the Office Assistant balloon is checked. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the text associated with an object. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets the text displayed next to a checkbox or label in the Office Assistant balloon. + + + A collection of objects that represent all the check boxes in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object. + Required Item. The index number of the check box or label to be returned. + + + Returns the name of the specified object. + + + Returns the parent object for the specified object. + + + Represents a label in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the text associated with an object. + + + Returns the name of the specified object. + + + Returns the parent object for the specified object. + + + Returns or sets the text displayed next to a check box or label in the Office Assistant balloon. + + + A collection of objects that represent all the labels in the Office Assistant balloon. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object. + Required Integer. The index number of the check box or label to be returned. + + + Returns or sets the name of the specified object. + + + Returns the parent object for the specified object. + + + Represents bullet formatting. + + + Gets an object that represents the object. Read-only. + Object + + + Gets or sets the Unicode character value that is used for bullets in the specified text. Read/write. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the font that represents the formatting for a object. Read-only. + + + + + + Gets the bullet number of a paragraph. Read-only. + Integer + + + Gets the parent of the object. Read-only. + Object + + + Sets the graphics file to be used for bullets in a bulleted list. + The file name of a valid graphics file. + + + + Returns or sets the bullet size relative to the size of the first text character in the paragraph. Read/write. + Single + + + Gets or sets the beginning value of a bulleted list. Read/write. + Integer + + + Returns or sets a constant that represents the style of a bullet. Read/write. + + + + + + Gets or sets a constant that represents the type of bullet. Read/write. + + + + + + Determines whether the specified bullets are set to the color of the first text character in the paragraph. Read/write. + + + + + + Determines whether the specified bullets are set to the font of the first text character in the paragraph. Read/write. + + + + + + Gets or sets a value that specifies whether the bullet is visible. Read/write. + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + Provides information about the digital certificate. + + + Specifies that the digital certificate is available for signing. + + + The holder of a Private Key corresponding to a Public Key. + + + The issuing authority of the certification. + + + The expiration date of the certificate. + + + A hash of the certificate's complete contents. + + + Provides the results of verifying a digital certificate. + + + The verification resulted in an error. + + + The certificate is currently being verified. + + + The certification is currently unverified. + + + The certification is valid. + + + The certification is invalid. + + + The certification has expired. + + + The certification has been revoked. + + + The certification is from an untrusted source. + + + Represents the color of a one-color object or the foreground or background color of an object with a gradient or patterned fill. + + + + Returns an Application object that represents the container application for the object. + Object + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only + Long + + + Returns the parent object for the specified object. Read-only. + Object + + + Returns an Integer value that represents the red-green-blue value of the specified color. + Integer + + + Returns or sets an Integer value that represents the color of a Color object, as an index in the current color scheme. + IntegerReturns a Long value that represents the red-green-blue value of the specified color. + + + Returns an Integer value that that represents the color format type. + Integer + + + Used only with charts. Represents fill formatting for chart elements. + + + Returns an Application object that represents the container application for the object. + Object + + + Returns or sets the fill background color. + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + Returns or sets the foreground fill or solid color. + + + + + + Returns the gradient color type for the specified fill. Read-only + + + + + + Returns the gradient degree of the specified one-color shaded fill as a floating-point value from 0.0 (dark) through 1.0 (light). Read-only. + Single + + + Returns the gradient style for the specified fill. Read-only + + + + + + Returns the shade variant for the specified fill as an integer value from 1 through 4. The values for this property correspond to the gradient variants (numbered from left to right and from top to bottom) on the Gradient tab in the Fill Effects dialog box. Read-only + Integer + + + Sets the specified fill to a one-color gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + Required Single. The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light). + + + Returns the parent object for the specified object. Read-only. + Object + + + Returns or sets the fill pattern. + + + + + + Sets the specified fill to a pattern. + Required . The type of pattern. + + + Sets the specified fill to a preset gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + + + Returns the preset gradient type for the specified fill. Read-only. + + + + + + Returns the preset texture for the specified fill. Read-only. + + + + + + Sets the specified fill format to a preset texture. + Required . The type of texture to apply. + + + Sets the specified fill to a uniform color. Use this method to convert a gradient, textured, patterned, or background fill back to a solid fill. + + + Returns the name of the custom texture file for the specified fill. Read-only. + String + + + Returns the texture type for the specified fill. Read-only. + + + + + + Sets the specified fill to a two-color gradient. + Required . The gradient style. + Required Integer. The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If is , the argument can only be 1 or 2. + + + Returns the fill type. + + + + + + Fills the specified shape with an image. + Optional Object. The filename of the image. + Optional Object. An value that indicates the format of the picture. + Optional Object. A Double value that specifies the picture stack or scale unit (depends on the argument). + Optional Object. An XlChartPicturePlacement value that indicates the placement of the picture. + + + Fills the specified shape with small tiles of an image. If you want to fill the shape with one large image, use the method. + Required String. The name of the picture file. + + + Returns or sets a value that determines whether the object is visible. Read/write. + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integerc + + + + + + + Returns the parent object for the specified object. Read-only. + Objects + + + + + + + + + A collection of all the ChartGroup objects in the specified chart. + + + Returns an Application object that represents the container application for the object. + Object + + + Returns the number of objects in the collection. Read-only + Integer + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + Returns . + + + Returns a single object from a collection. + + + + Required Object. The name or index number for the object. + + + Returns the parent object for the specified object. Read-only. + Object + + + + + Returns an Application object that represents the container application for the object. + Object + + + + + + + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + + Gets or sets the height of a command bar control. + + + + + Gets the horizontal position of the specified control (in pixels) relative to the left edge of the screen. Returns the distance from the left side of the docking area. + + + + + + + + + Gets the name of the built-in object. + + + + + + + Double + + + + + + + Gets the distance (in pixels) from the top edge of the specified control to the top edge of the screen. + + + Gets or sets the width (in pixels) of the specified control. + + + Reserved for internal use. + + + + + + Returns or sets a color that is mapped to the theme color scheme. Read/write. + + + + + + + + + + + Represents a COM add-in in the Microsoft Office host application. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the state of the connection for the specified object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets a descriptive String value for the specified object. + + + Returns the globally unique class identifier (GUID) for the specified object. + + + Returns or sets the object that is the basis for the specified object. + + + Returns the parent object for the specified object. + + + Returns the programmatic identifier (ProgID) for the specified object. + + + A collection of objects that provide information about a COM add-in registered in the Windows Registry. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a member of the specified collection. + Required Object. Either an ordinal value that returns the COM add-in at that position in the COMAddIns collection, or a String value that represents the ProgID of the specified COM add-in. + + + Returns the parent object for the specified object. + + + Reserved for internal use. + + + Updates the contents of the collection from the list of add-ins stored in the Windows Registry. + + + Represents a command bar in the container application. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Determines if an individual menu is enabled to use adaptive menus. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar or command bar control is a built-in command bar or control of the container application. + + + Returns or sets a string that determines where a command bar will be saved. + + + Returns a object that represents all the controls on a command bar or pop-up control. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Determines if the specified command bar or is enabled. + This property returns True if the specified command bar is enabled; False if not enabled.Setting this property to True causes the name of the command bar to appear in the list of available command bars. + + + Returns a object that fits the specified criteria. + Optional . The type of control. + Optional Object. The identifier of the control. + Optional Object. The tag value of the control. + Optional Object. True to include only visible command bar controls in the search. The default value is False. Visible command bars include all visible toolbars and any menus that are open at the time the FindControl method is executed. + Optional Boolean. True to include the command bar and all of its pop-up subtoolbars in the search. The default value is False. + + + Returns or sets the height of a command bar. + + + Reserved for internal use. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + + Returns or sets the distance (in pixels) of the command bar from the left edge of the specified object relative to the screen. + + + Returns or sets the name of the specified object. + + + Returns the name of a built-in command bar as it's displayed in the language version of the container application, or returns or sets the name of a custom command bar. + + + Returns the parent object for the specified object. + + + Returns or sets the position of a command bar. + + + Returns or sets the way a command bar is protected from user customization. + + + Resets a built-in command bar to its default configuration. + + + Returns or sets the docking order of a command bar in relation to other command bars in the same docking area. + + + Displays a command bar as a shortcut menu at the specified coordinates or at the current pointer coordinates. + Optional Object. The x-coordinate for the location of the shortcut menu. If this argument is omitted, the current x-coordinate of the pointer is used. + Optional Object. The y-coordinate for the location of the shortcut menu. If this argument is omitted, the current y-coordinate of the pointer is used. + + + Returns or sets the distance (in points) from the top edge of the specified command bar to the top edge of the screen. + + + Returns the type of command bar. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar. + + + Represents a button control on a command bar. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + Is True if the face of a command bar button control is its original built-in face. Read/write. + + + + + + + Copies the face of a command bar button control to the Clipboard. + + + + + + + + Gets or sets the Id number for the face of a CommandBarButton control. Read/write. + + + + + + Sets or gets a MsoCommandBarButtonHyperlinkType constant that represents the type of hyperlink associated with the specified command bar button. Read/write. + + + + + + + + + Gets or sets an IPictureDisp object representing the mask image of a CommandBarButton object. The mask image determines what parts of the button image are transparent. Read/write. + + + + + + + + Pastes the contents of the Clipboard onto a CommandBarButton. + + + Gets or sets an IPictureDisp object representing the image of a CommandBarButton object. Read/write. + + + + + + + + + + + + + + Gets or sets the shortcut key text displayed next to a CommandBarButton control when the button appears on a menu, submenu, or shortcut menu. Read/write. + + + + + + + + + + + Represents a combo box control on a command bar. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the number of lines in a command bar combo box control. The combo box control must be a custom control and it must be a drop-down list box or a combo box. Read/write. + + + Gets or sets the width (in pixels) of the list for the specified command bar combo box control. Read/write. + + + + + + + + + + + + + + Gets or sets an item in the CommandBarComboBox control. Read/write. + The list item to be set. + + + + Gets the number of list items in a CommandBarComboBox control. Read-only. + + + Gets or sets the number of list items in a CommandBarComboBox control that appears above the separator line. Read/write. + + + Gets or sets the index number of the selected item in the list portion of the CommandBarComboBox control. If nothing is selected in the list, this property returns zero. Read/write. + + + + + + + + + + Removes an item from a CommandBarComboBox control. + The item to be removed from the list. + + + + + + + + + + + + + + + + + + + + Represents a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar control is a built-in control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Reserved for internal use. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. Set to True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Determines if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context Id number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the Parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + A collection of objects that represent the command bar controls on a command bar. + + + Creates a new object and adds it to the collection of controls on the specified command bar. + Optional Object. The type of control to be added to the specified command bar. Can be one of the following constants: msoControlButton, msoControlEdit, msoControlDropdown, msoControlComboBox, or msoControlPopup. + Optional Object. An integer that specifies a built-in control. If the value of this argument is 1, or if this argument is omitted, a blank custom control of the specified type will be added to the command bar. + Optional Object. For built-in controls, this argument is used by the container application to run the command. For custom controls, you can use this argument to send information to procedures, or you can use it to store information about the control (similar to a second property value). + Optional Object. A number that indicates the position of the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is added at the end of the specified command bar. + Optional Object. True to make the new control temporary. Temporary controls are automatically deleted when the container application is closed. The default value is False. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Required Object. The name or index number of the object to be returned. + + + Returns the Parent object for the specified object. + + + Represents a pop-up control on a command bar. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Returns an Application object that represents the container application for the object. + + + Determines if the specified command bar control appears at the beginning of a group of controls on the command bar. + + + Determines if the specified command bar control is a built-in control of the container application. + + + Returns or sets the caption text for a command bar control. + + + Returns a object that represents the menu displayed by the specified pop-up control. + + + Reserved for internal use. + + + Returns a object that represents all the controls on a command bar or pop-up control. + + + Copies a command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar. If this argument is omitted, the control is copied to the command bar where the control already exists. + Optional Object. A number that indicates the position for the new control on the command bar. The new control will be inserted before the control at this position. If this argument is omitted, the control is copied to the end of the command bar. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from its collection. + Optional Object. True to delete the control for the current session. The application will display the control again in the next session. + + + Returns or sets the description for a command bar control. + + + Determines if the specified command bar control is enabled. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets the height of a command bar control. + + + Returns or sets the Help context ID number for the Help topic attached to the command bar control. + + + Returns or sets the file name for the Help topic attached to the command bar control. + + + Returns the ID for a built-in command bar control. + + + Returns an Integer representing the index number for an object in the collection. + + + Reserved for internal use. + + + + Determines if the control is currently dropped from the menu or toolbar based on usage statistics and layout space. + + + Returns or sets the horizontal position of the specified command bar control (in pixels) relative to the left edge of the screen. + + + Moves the specified command bar control to an existing command bar. + Optional Object. A object that represents the destination command bar for the control. If this argument is omitted, the control is moved to the end of the command bar where the control currently resides. + Optional Object. A number that indicates the position for the control. The control is inserted before the control currently occupying this position. If this argument is omitted, the control is inserted on the same command bar. + + + Returns or sets the menu group that the specified command bar pop-up control belongs to when the menu groups of the OLE server are merged with the menu groups of an OLE client - that is, when an object of the container application type is embedded in another application. + + + Returns or sets the OLE client and OLE server roles in which a command bar control will be used when two Microsoft Office applications are merged. + + + Returns or sets the name of a procedure that will run when the user clicks or changes the value of a command bar control. + + + Returns or sets a string that an application can use to execute a command. + + + Returns the Parent object for the specified object. + + + Returns or sets the priority of a command bar control. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + Resets a built-in command bar control to its original function and face. + + + Moves the keyboard focus to the specified command bar control. + + + Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control. + + + Returns or sets the text displayed in a command bar control's ScreenTip. + + + Returns the distance (in pixels) from the top edge of the specified command bar control to the top edge of the screen. + + + Returns the type of command bar control. + + + Determines if the specified object is visible. + + + Returns or sets the width (in pixels) of the specified command bar control. + + + A collection of objects that represent the command bars in the container application. + + + Reserved for internal use. + + + + + + + + + + Commits the rendering transaction. Returns Nothing (null in C#). + Specifies a handle to the window in which to commit the rendering transaction. + + + + + + + + + + + + + + + + + + + + + + + + + Gets a CommandBars + collection. Read-only. + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + Represents a Microsoft Office system contact card. + + + Returns an Application object that represents the parent Office application for the ContactCard object. + + + Closes the contact card. + + + Returns a that indicates the application in which the ContactCard object was created. + + + Displays the contact card at the specified x-coordinate position outside the specified rectangle. + + that determines whether the card is displayed as a hover card or as a fully expanded card. + Specifies the x-coordinate of the left side of the rectangle where the card is not displayed. + Specifies the x-coordinate of the right side of the rectangle where the card is not displayed. + Specifies the y-coordinate of the top side of the rectangle where the card is not displayed. + Specifies the y-coordinate of the bottom side of the rectangle where the card is not displayed. + Specifies the x-coordinate position of the left edge of the card. + Determines if there is a delay before the card is displayed. + + + Provides the status of verifying whether the content of a document has changed. + + + The verification resulted in an error. + + + The content of the document is currently being verified. + + + The document has not been verified. + + + The content of the has been verified and is valid. + + + The content of the document has been modified since it was digitally signed. + + + An object used to remove a portion of an image. + + + Gets the Application object of the host application. + + + Gets a 32-bit integer that indicates the application in which the Crop object was created. + + + Gets or sets the height of the image that is to be cropped. + + + Gets or sets the x-axis offset of the image that is to be cropped. + + + Gets or sets the y-axis offset of the image that is to be cropped. + + + Gets or sets the width of the image that is to be cropped. + + + Gets or sets the height of a shape that is used to crop an image. + + + Gets or sets the location of the left-side of a shape that is used to crop an image. + + + Gets or sets the location of the top of a shape that is used to crop an image. + + + Gets or sets the width of a shape that is used to crop an image. + + + + + + + + + + + + + + + + + + + + + + Occurs when the user changes the docking position of the active custom task pane. + The active custom task pane. + + + Occurs when the user changes the visibility of the custom task pane. + The active task pane. + + + Represents an XML node in a tree in a document. The object is a member of the collection. + + + Appends a single node as the last child under the context element node in the tree. + Represents the base name of the element to be appended. + Represents the namespace of the element to be appended. This parameter is required to append nodes of type or , otherwise it is ignored. + Specifies the type of node to append. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the appended node for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Adds a subtree as the last child under the context element node in the tree. + Represents the subtree to add. + + + Gets an Application object that represents the container application for a . Read-only. + Object + + + Gets a collection representing the attributes of the current element in the current node. Read-only. + + + + + + Gets the base name of the node without the namespace prefix, if one exists, in the Document Object Model (DOM). Read-only. + String + + + Gets a collection containing all of the child elements of the current node. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the current node from the tree (including all of its children, if any exist). + + + Gets a object corresponding to the first child element of the current node. If the node has no child elements (or if it isn’t of type ), returns Nothing. Read-only. + + + + + + Returns True if the current element node has child element nodes. + Boolean + + + Inserts a new node just before the context node in the tree. + Represents the base name of the node to be added. + Represents the namespace of the element to be added. This parameter is required if adding nodes of type or , otherwise it is ignored. + Specifies the type of the node to be added. If the parameter is not specified, it is assumed to be a node of type . + Used to set the value of the node to be added for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + Represents the context node. + + + Inserts the specified subtree into the location just before the context node. + Represents the subtree to be added. + Specifies the context node. + + + Gets a object corresponding to the last child element of the current node. If the node has no child elements (or if it is not of type ), the property returns Nothing. Read-only. + + + + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the next sibling node (element, comment, or processing instruction) of the current node. If the node is the last sibling at its level, the property returns Nothing. Read-only. + + + + + + Gets the type of the current node. Read-only. + + + + + + Gets or sets the value of the current node. Read/write. + String + + + Gets the object representing the Microsoft Office Excel workbook, Microsoft Office PowerPoint presentation, or the Microsoft Office Word document associated with this node. Read-only. + Object + + + Gets the object representing the part associated with this node. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets the parent element node of the current node. If the current node is at the root level, the property returns Nothing. Read-only. + + + + + + Gets the previous sibling node (element, comment, or processing instruction) of the current node. If the current node is the first sibling at its level, the property returns Nothing. Read-only. + + + + + + Removes the specified child node from the tree. + Represents the child node of the context node. + + + Removes the specified child node (and its subtree) from the main tree, and replaces it with a different node in the same location. + Represents the child node to be replaced. + Represents the base name of the element to be added. + Represents the namespace of the element to be added. This parameter is required if adding nodes of type or , otherwise it is ignored. + Specifies the type of node to add. If the parameter is not specified, it is assumed to be of type . + Used to set the value of the node to be added for those nodes that allow text. If the node doesn’t allow text, the parameter is ignored. + + + Removes the specified node (and its subtree) from the main tree, and replaces it with a different subtree in the same location. + Represents the subtree to be added. + Represents the child node to be replaced. + + + Selects a collection of nodes matching an XPath expression. This method differs from the method in that the XPath expression will be evaluated starting with the 'expression' node as the context node. + + + + Contains an XPath expression. + + + Selects a single node from a collection matching an XPath expression. This method differs from the method in that the XPath expression will be evaluated starting with the 'expression' node as the context node. + + + + Contains an XPath expression. + + + Gets or sets the text for the current node. Read/write. + String + + + Gets the XML representation of the current node and its children, if any exist. Read-only. + String + + + Gets a String with the canonicalized XPath for the current node. If the node is no longer in the Document Object Model (DOM), the property returns an error message. Read-only. + String + + + Contains a collection of objects representing the XML nodes in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a count of the number of objects in a collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a namespace prefix. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object of the object. Read-only. + Object + + + Gets the prefix for a object. Read-only. + String + + + Represents a collection of objects. + + + Allows you to add a custom namespace/prefix mapping to use when querying an item. + Contains the prefix to add to the prefix mapping list. + Contains the namespace to assign to the newly added prefix. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Allows you to get the namespace corresponding to the specified prefix. + String + Contains a prefix in the prefix mapping list. + + + Allows you to get a prefix corresponding to the specified namespace. + String + Contains the namespace URI. + + + Gets the parent object for the object. Read-only. + Object + + + Represents a schema in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the specified schema from the collection. + + + Gets a String that represents the location of a schema on a computer. Read-only. + String + + + Gets the unique address identifier for the namespace of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Reloads a schema from a file. + + + + + + + + + + + + + + + + Represents a single validation error in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Deletes the object representing a data validation error. + + + Gets a number representing a validation error in a object. Read-only. + Integer + + + Gets the name of an error in a object. If no errors exist, the property returns Nothing. Read-only. + String + + + Gets a node in a object, if any exist. If no nodes exist, the property returns Nothing. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets the text in the object. Read-only. + String + + + Gets the type of error generated from the object. Read-only. + + + + + + Represents a collection of objects. + + + Adds a object containing an XML validation error to the collection. + Represents the node where the error occurred. + Contains the name of the error. + Contains the descriptive error text. + Specifies whether the error is to be cleared from the collection when the XML is corrected and updated. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + Represents a Document Inspector module in a collection. + + + Gets an object that represents the creator of the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of the object. Read-only. + String + + + Performs an action on specific information items or document properties depending on the Document Inspector module specified. + An enumeration representing that staus of the document. Status is an output parameter which means that its value is returned when the method has completed its purpose. + Contains the results of the action. Results is an output parameter. + + + Inspects a document for specific information or document properties. + An enumeration representing that status of the document. is an output parameter which means that its value is returned when the method has completed its purpose. + Contains a lists the information items or document properties found in the document. + + + Gets the name of the module represented by a object. Read-only. + String + + + Gets an object that represents the parent of the object. Read-only. + Object + + + Represents a collection of objects. + + + Gets an Application object that represents the creator of the object. Read-only. + Object + + + Gets the number of items in the object. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets the object specified by the index. Read-only. + + + + The index number of the object. + + + Gets an object that represents the parent of a object. Read-only. + Object + + + The DocumentLibraryVersion object represents a single saved version of a shared document that has versioning enabled and that is stored in a document library on the server. + + + Returns an Application object that represents the container application for the object. + + + Returns any optional comments associated with the specified version of the shared document. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a document library version from the collection. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the date and time at which the specified version of the shared document was last saved to the server. + + + Returns the name of the user who last saved the specified version of the shared document to the server. + + + Opens the specified version of the shared document from the collection in read-only mode. + + + Returns the parent object for the specified object. + + + Restores a previous saved version of a shared document from the collection. + + + The DocumentLibraryVersions object represents a collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a Boolean value that indicates whether the document library in which the active document is saved on the server is configured to create a backup copy, or version, each time the file is edited on the Web site. + + + Returns a object from the collection. + Required Integer. The index number of the DocumentLibraryVersion returned. + + + Returns the parent object for the specified object. + + + A collection of objects. + + + Creates a new custom document property. + Required String. The name of the property. + Required Boolean. Specifies whether the property is linked to the contents of the container document. If this argument is True, the argument is required; if it's False, the value argument is required. + Optional Object. The data type of the property. Can be one of the following constants: msoPropertyTypeBoolean, msoPropertyTypeDate, msoPropertyTypeFloat, msoPropertyTypeNumber, or msoPropertyTypeString. + Optional Object. The value of the property, if it's not linked to the contents of the container document. The value is converted to match the data type specified by the type argument. If it can't be converted, an error occurs. If is True, the argument is ignored and the new document property is assigned a default value until the linked property values are updated by the container application (usually when the document is saved). + Optional Object. Ignored if is False. The source of the linked property. The container application determines what types of source linking you can use. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Required Object. The name or index number of the document property returned. + + + Returns the Parent object for the specified object. + + + Represents a custom or built-in document property of a container document. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a custom document property. + + + Returns or sets the source of a linked custom document property. + + + Determine if the value of the custom document property is linked to the content of the container document. + + + Returns or sets the name of the specified object. + + + Returns the Parent object for the specified object. + + + Returns or sets the document property type. + + + Returns or sets the value of a document property. + + + Describes a single Picture Effect parameter. + + + Gets an Application object that represents the container application for the EffectParameter object. + + + Gets a 32-bit integer that indicates the application in which the EffectParameter object was created. + + + Gets the string name of the EffectParameterparameter. + + + Gets or sets the value of the EffectParameter object. + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the EffectParameters object. + + + Gets the count of the number of objects contained within the EffectParameters collection. + + + Gets a 32-bit integer that indicates the application in which the EffectParameters object was created. + + + Returns . + + + Gets an object at the specified index or with the specified unique identifier. + Specifies either an integer representing the index or a string representing the location of the . + + + + + + + + + + Provides the methods for setting up permissions, applying the cryptography of the underlying encryption and decryption, and user authentication. + + + Used to determine whether the user has the proper permissions to open the encrypted document. + Integer + Specifies the window that is called to display the encryption settings. + Contains the encrypted data for the current document. + The user interface displayed by the encryption provider add-in. + + + Creates a second, working copy of the object’s encryption session for a file that is about to be saved. + Integer + The ID of the cloned session. + + + Decrypts and returns a stream of encrypted data for a document. + The ID of the current session. + The ID of the stream of data. + The encrypted data stream. + The data stream before decryption. + + + Encrypts and returns a stream of data for a document. + The ID of the current session. + The name of the encrypted stream of document data. + The data stream before encryption. + The data stream information after it has been encrypted. + + + Ends the current encryption session. + The ID of the current session. + + + Displays information about the encryption of the current document. + object + Specifies the encryption information that you want. + + + Used by the object to create a new encryption session. This session is used by the provider to cache document-specific information about the encryption, users, and rights while the document is in memory. + Integer + Specifies the window that is called to display the encryption settings. + + + Saves an encrypted document. + Integer + The ID of the current session. + Contains the encryption information. + + + Used to display a dialog of the encryption settings for the current document. + The ID of the current session. + Specifies the window that is called to display the encryption settings. + Specifies whether you want the user to be able to change the encryption settings. + If True, the encryption for a document will be removed during the next save operation. + + + + + + + + + + + + + + + + + + + Provides file dialog box functionality similar to the functionality of the standard Open and Save dialog boxes found in Microsoft Office applications. + + + Determines if the user is allowed to select multiple files from a file dialog box. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a String representing the text that is displayed on the action button of a file dialog box. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an constant representing the type of file dialog box that the object is set to display. + + + Runs the procedure or built-in command assigned to the specified command bar control. + + + Returns or sets an Integer indicating the default file filter of a file dialog box. + + + Returns a collection. + + + Returns or sets a String representing the path and/or file name that is initially displayed in a file dialog box. + + + Returns or sets a constant representing the initial presentation of files and folders in a file dialog box. + + + Returns the text associated with an object. + + + Returns the Parent object for the specified object. + + + Returns a collection. + + + Displays a file dialog box and returns an Integer indicating whether the user pressed the action button (-1) or the cancel button (0). + + + Returns or sets the title of a file dialog box displayed using the object. + + + Represents a file filter in a file dialog box displayed through the object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the description of each object as a String value. + + + Returns a String value containing the extensions that determine which files are displayed in a File dialog box for each object. + + + Returns the Parent object for the specified object. + + + A collection of objects that represent the types of files that can be selected in a file dialog box that is displayed using the object. + + + Adds a new file filter to the list of filters in the Files of type list box in the File dialog box, and returns a FileDialogFilter object that represents the newly added file filter. + Required String. The text representing the description of the file extension you want to add to the list of filters. + Required String. The text representing the file extension you want to add to the list of filters. More than one extension may be specified and each must be separated by a semi-colon (;). For example, the argument can be assigned to the string: "*.txt; *.htm".Note Parentheses do not need to be added around the extensions. Office will automatically add parentheses around the extensions string when the description and extensions strings are concatenated into one file filter item. + Optional Object. A number that indicates the position of the new control in the filter list. The new filter will be inserted before the filter at this position. If this argument is omitted, the filter is added at the end of the list. + + + Returns an Application object that represents the container application for the object. + + + Removes all list items from a command bar combo box control (drop-down list box or combo box) and clears the text box (edit box or combo box). + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes a file dialog filter. + Optional Object. The filter to be removed. + + + + Returns a object that is a member of the specified collection. + Required Integer. The index number of the FileDialogFilter object to be returned. + + + Returns the Parent object for the specified object. + + + A collection of String values that correspond to the paths of the files or folders that a user has selected from a file dialog box displayed through the object. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a String that corresponds to the path of one of the files that the user selected from a file dialog box that was displayed using the method of the object. + Required Integer. The index number of the string to be returned. + + + Returns the Parent object for the specified object. + + + Represents the functionality of the Open dialog box accessible by the File menu. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Begins the search for the specified file(s). + Optional . The method used to sort the returned file(s). + Optional . The order in which the returned file(s) are sorted. + Optional Boolean. True to include files that have been added, modified, or deleted since the file index was last updated as part of the file search. The default value is True. + + + Returns or sets the name of the file to look for during a file search. + + + Returns or sets the type of file to look for during a file search. + + + Returns a collection. + + + Returns a object that contains the names of all the files found during a search. + + + Returns or sets a constant that represents the amount of time since the specified file was last modified and saved. + The default value is msoLastModifiedAnyTime. + + + Returns or sets the folder to be searched during the specified file search. + + + Determines if the file search is expanded to include all forms of the specified word contained in the body of the file or in the file's properties. + + + Determines if the specified file search will find only files whose body text or file properties contain the exact word or phrase that you've specified. + + + Resets all the search criteria settings to their default settings. + + + Returns the collection that represents all the search criteria for a file search. + + + Refreshes the list of currently available objects. + + + Returns a collection. + + + Returns a collection. + + + Determines if the search includes all the subfolders in the folder specified by the property. + + + Returns or sets the word or phrase to be searched for, in either the body of a file or the file's properties, during the file search. + + + A collection of values of the type that determine which types of files are returned by the method of the object. + + + Adds a new file type to a file search. + Required . Specifies the type of file for which to search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a value that indicates which file type will be searched for by the method of the object. + Optional Integer. The index number of the object to be returned. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + Gets a collection of objects. + + + + + + + + + + + + + + + + + + + + + + + Contains font attributes (for example, font name, font size, and color) for an object. + + + True if the font is formatted as all capital letters. Read/write. + + + + + + Gets an object that represents the application the object is used in. Read-only. + Object + + + Gets or sets a value that specifies whether the numbers in a numbered list should be rotated when the text is rotated. Read/write. + + + + + + Gets or sets a value specifying the horizontal offset of the selected font. Read/write. + Single + + + Gets or sets a value specifying whether the font should be bold. Read/write. + + + + + + Gets or sets a value specifying that the text should be capitalized. Read/write. + + + + + + Gets a value indicating the application the object was created in. Read-only. + Integer + + + True if the specified font is formatted as double strikethrough text. Read/write. + + + + + + Gets a value indicating whether the font can be embedded in a page. Read-only. + + + + + + Gets a value specifying whether the font is embedded in a page. Read-only. + + + + + + Gets or sets a value specifying whether the text for a selection should be spaced equal distances apart. Read/write. + + + + + + + Gets a value indicating whether the font is displayed as a glow effect. Read-only. + + + + + + Gets a value indicating whether the font is displayed as highlighted. Read-only. + + + + + + Gets or sets a value specifying whether the text for a selection is italic. Read/write. + + + + + + Gets or sets a value specifying the amount of spacing between text characters. Read/write. + Single + + + Gets a value specifiying the format of a line. Read-only. + + + + + + Gets or sets a value specifying the font to use for a selection. Read/write. + String + + + Gets or sets the font used for Latin text (characters with character codes from 0 (zero) through 127). Read/write. + String + + + Gets or sets the complex script font name. Used for mixed language text. Read/write. + String + + + Gets or sets an East Asian font name. Read/write. + String + + + Gets or sets the font used for characters whose character set numbers are greater than 127. Read/write. + String + + + Gets the parent of the object. Read-only. + Object + + + Gets a value specifying the type of reflection format for the selection of text. Read-only. + + + + + + Gets the value specifying the type of shadow effect for the selection of text. Read-only. + + + + + + Gets or sets a value specifying the size of the font. Read/write. + Single + + + Gets or sets a value specifying whether small caps should be used with the selection of text. Small caps are the same height as the lowercase letters in a selection of text. Read/write. + + + + + + Gets or sets a value specifying the type of soft edge effect used in a selection of text. Read/write. + + + + + + Gets or sets a value specifying the spacing between characters in a selection of text. Read/write. + Single + + + Gets or sets a value specifying the strike format used for a selection of text. Read/write. + + + + + + Gets or sets a value specifying the text should be rendered in a strikethrough appearance. Read/write. + + + + + + Gets or sets a value specifying that the selected text should be displayed as subscript. Read/write. + + + + + + Gets or sets a value specifying that the selected text should be displayed as superscript. Read/write. + + + + + + Gets a value specifying the color of the underline for the selected text. Read-only. + + + + + + Gets or sets a value specifying the underline style for the selected text. Read/write. + + + + + + Gets or sets a value specifying the text effect for the selected text. Read/write. + + + + + + Represents the list of files returned from a file search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a file name from the list of file names represented by the object. + Required Integer. The index number of the Answer Wizard file name string or the file name to be returned. + + + Reserved for internal use. + + + + + + + + Represents a glow effect around an Office graphic. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the color of text formatted as glow. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the radius value of the glow effect for the object. Read/write. + Single + + + Gets or sets the degree of transparency of the specified glow as a value between 0.0 (opaque) and 1.0 (clear). + + + Represents one gradient stop. + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object. Read-only. + Object + + + Gets a value representing the color of the gradient stop. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets a value representing the position of a stop within the gradient expressed as a percent. Read/write. + Single + + + Gets or sets a value representing the opacity of the gradient fill expressed as a percent. Read/write. + Single + + + Contains a collection of objects. + + + When used without an object qualifier, this property returns an Application object that represents the Microsoft Office application. When used with an object qualifier, this property returns an Application object that represents the creator of the specified object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Removes a gradient stop. + The index number of the gradient stop. + + + + Adds a stop to a gradient. + Specifies the color at that the gradient stop. + Specifies the position of the stop within the gradient expressed as a percent. + Specifies the opacity of color at the gradient stop. + The index number of the stop. + + + Adds a stop to a gradient and specifies the brightness, as well as the transparency, of the color. + Specifies the color at that the gradient stop. + Specifies the position of the stop within the gradient expressed as a percent. + Specifies the opacity of color at the gradient stop. + The index number of the stop. + Specifies the brightness of the color at the gradient stop. + + + Gets a object from a collection. Read-only. + GradientStop + The name or index number of the object returned. + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + Reserved for internal use. + + + + + + + + + + Represents a top-level project branch, as in the Project Explorer in the Microsoft Script Editor. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the collection that is included in the specified HTML project. + + + Opens the specified HTML project or HTML project item in the Microsoft Script Editor in one of the views specified by the optional constants. + Optional . The view in which the specified project or project item is opened. + + + Returns the Parent object for the specified object. + + + Refreshes the specified HTML project in the Microsoft Office host application. + Optional Boolean. True if all changes are to be saved; False if all changes are to be ignored. + + + Refreshes the specified HTML project in the Microsoft Script Editor. + Optional Boolean. True if the document will be refreshed; False if the document will not be refreshed. + + + Returns the current state of an object. + + + Represents an individual project item that’s a project item branch in the Project Explorer in the Microsoft Script Editor. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Determines if the specified HTML project item is open in the Microsoft Script Editor. + + + Updates the text in the Microsoft Script Editor with text from the specified file (on disk). + Required String. The fully qualified path of the text file that contains the text to be loaded. + + + Returns the name of the specified object. + + + Opens the specified HTML project or HTML project item in the Microsoft Script Editor in one of the views specified by the optional constants. + Optional . The view in which the specified project or project item is opened. + + + Returns the Parent object for the specified object. + + + Saves the specified HTML project item using a new file name. + Required String. The fully qualified path of the file to which you want to save the HTML project item. + + + Returns or sets the HTML text in the HTML editor. + + + A collection of objects that represent the HTML project items contained in the object. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns the object that represents a particular project in the Microsoft Script Editor. + Required Object. The name or index number of the HTML project item to be returned. + + + Returns the Parent object for the specified object. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + Provides a means for developers to create a customized help experience for users within Microsoft Office. + + + Clears the default help topic previously defined in the method. + The ID of the default help topic. + + + Performs a search from the Office Help Viewer based on one or more keywords. Keywords can be a word or a phrase. + Represents the search keyword or phrase. + Optional, the namespace registered within the host application. + + + Sets a help topic as the default topic that will be displayed when the user opens a help window. + The ID of the default help topic. + + + Displays the help topic specified by its ID in the Office Help Viewer or, for help topics that ship with Office, in the Help window of the current Office application. + Optional, the ID of the help topic. + Optional, the namespace registered within the host application. + + + An object that provides the ability to manipulate blog entries. + + + Contains information about the provider. + The name of the blog provider. + Represents the name displayed in the user interface. + Represents how many categories are supported by the provider. + Specifies whether table padding is recognized. + + + This method returns the list of blog categories for an account so Microsoft Office Word can populate the categories dropdown list. + Represents the GUID of the account registry key. + Represents the HWND of the host window. + The current document. + A list of categories supported by the provider. + + + Returns the list of the user’s last fifteen blog posts that Microsoft Office Word then displays in the Open Existing Post dialog. This method does not actually return the blog post contents. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Office Word is calling from. + The current document. + Contains the titles of the last fifteen posts. + Contains the dates of the last fifteen posts. + Contains the IDs of the last fifteen posts. + + + Returns the list and details of user blogs associated with the specified account. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Contains all blog names under the current account. + Contains all blog IDs under the current account. + Contains all blog URLs under the current account. + + + Opens the blog specified by the blog ID. It is called by the Open Existing Post dialog based on the item selected by the user. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + The ID of the post. + Contains the HWND for the window Microsoft Office Word is calling from. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + + + Hands off the current post so it can be published by the provider. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + Specifies whether this is a draft version of the post. + The ID of the original post if this post has been republished. + Specifies what is displayed in the publish bar. + + + Hands off the current post so it can be republished by the provider. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + The ID of the original post. + Represents the xHTML of the current document. + The title of the post. + The date the entry was posted. + A list of categories supported by the provider. + Specifies whether this is a draft version of the post. + Specifies what is displayed in the publish bar. + + + Called from the Choose Account dialog when the provider’s name is chosen in the Blog Host dropdown or when the user requests to change a provider’s account in the Blog Accounts dialog box. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Word is calling from. + The current document. + Indicates whether this is a new account. + Indicates whether Microsoft Office Word’s picture user interface needs to be displayed. + + + Represents an object that provides the ability to manipulate blog images. + + + Enables picture providers to offer themselves as an upload location for blog pictures. + The ID of the picture provider. + The friendly name of the picture provider. + + + Allows a picture provider to display the user interface needed to guide the user through setting up a picture account. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + The ID of the provider. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + + + Used to post a picture object to its final destination in a blog. + Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account. + Contains the HWND for the window Microsoft Office Word is calling from. + The current document. + Represents the name of the image file. + The URI of the picture. + + + Reserved for internal use. + + + + Reserved for internal use. + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + Used to create a custom task pane. + + + Creates an instance of a custom task pane. + + + + The CLSID or ProgID of a Microsoft ActiveX® object. + The title for the task pane. + The window that hosts the task pane. If not present, the parent of the task pane is the ActiveWindow property of the host application. + + + An interface that provides access to the method that is used to create an instance of a custom task pane. + + + Passes an object to a Microsoft ActiveX add-in that can then be used when creating a custom task pane. + The object is used by an add-in to create a task pane. + + + + + + + + + + + Represents the interface through which the methods of a object are accessed. + + + Performs some action on specific information items or document properties by using a custom Document Inspector module. + Specifies nn object representing the container object. + Specifies the unique identifier of the active document window. + Specifies an enumeration that indicates the status of the action. + Contains the results of the action. + + + Gets information about a custom Document Inspector module. + Represents the name of the module. + Represents the description of the module. + + + Inspects a document for specific information items or document properties by using a custom Document Inspector module. + An object representing the container document. + An value that represents the results of the inspection. + Contains a list of the information items or document properties found in the document. + Indicates to the user what action to take based on the results of the inspection. + + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + This parameter is for Macintosh only and should not be used. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a Contact card. + + + Gets the address in a Contact card. + + + Gets the value that represents the address type for the Contact card object. + + + Gets an Application object that represents the container application for the IMsoContactCard object. + + + Gets an value that represents the type of a Contact card. + + + Gets a 32-bit integer that indicates the application in which the IMsoContactCard object was created. + + + Returns the calling object. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value that indicates whether the data table changes font size when the data table size changes. Returns True, the default value, if the font size changes with data table size changes. Read/write. + Variant + + + Provides access to properties that determine visual characteristics of a data table border. Read-only. + IMsoBorder + + + + Deletes a data table. + + + Provides access to properties that determine the characteristics of the text in a data table. Read-only. + ChartFont + + + + Gets or sets a Boolean value that specifies whether the data table has a horizontal border. Read/write. + Boolean + + + Gets or sets a Boolean value that specifies whether to display a border around a data table. Read/write. + Boolean + + + Gets or sets a Boolean value that specifies whether the data table has a vertical border. Read/write. + Boolean + + + Gets the Parent object for the IMsoDataTable object. Read-only. + Object + + + Selects a IMsoDataTable object. + + + Gets or sets a Boolean value that specifies whether to display the legend with the data table. Read/write. + Boolean + + + Reserved for internal use. + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides access to functionality that lets you send documents as emails directly from Microsoft Office applications. + + + Returns a collection. + + + Sets or returns the introductory text that is included with a document that is sent using the MsoEnvelope object. The introductory text is included at the top of the document in the e-mail. + + + Returns a MailItem object that can be used to send the document as an e-mail. + + + Returns the Parent object for the specified object. + + + Reserved for internal use. + + + + + A Delegate type used to add an event handler for the event. The EnvelopeHide event occurs when the user interface (UI) that corresponds to the object is hidden. + + + A Delegate type used to add an event handler for the event. The EnvelopeShow event occurs when the user interface (UI) that corresponds to the object is displayed. + + + Events interface for Microsoft Office object events. + + + Reserved for internal use. + + + Reserved for internal use. + + + Occurs when the user interface (UI) that corresponds to the object is hidden. + + + Occurs when the user interface (UI) that corresponds to the object is displayed. + + + Reserved for internal use. + + + Reserved for internal use. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents the object passed into every Ribbon user interface (UI) control's callback procedure. + + + Represents the active window containing the Ribbon user interface that triggers a callback procedure. Read-only. + Object + + + Gets the ID of the control specified in the Ribbon XML markup customization file. Read-only. + String + + + Used to store arbitrary strings and fetch them at runtime. Read-only + String + + + The interface through which the Ribbon user interface (UI) communicates with a COM add-in to customize the UI. + + + Loads the XML markup, either from an XML customization file or from XML markup embedded in the procedure, that customizes the Ribbon user interface. + String + + + The object that is returned by the onLoad procedure specified on the customUI tag. The object contains methods for invalidating control properties and for refreshing the user interface. + + + Activates the specified custom tab. + Specifies the identifier of the custom Ribbon tab to be activated. + + + Activates the specified built-in tab. + Specifies the identifier of the custom Ribbon tab to be activated. + + + Activates the specified custom tab on the Microsoft Office Fluent Ribbon UI. Uses the fully qualified name of the tab which includes the identifier and the namespace of the tab. + Specifies the identifier of the custom Ribbon tab to be activated. + Specifies the namespace of the tab element. + + + Invalidates the cached values for all of the controls of the Ribbon user interface. + + + Invalidates the cached value for a single control on the Ribbon user interface. + Specifies the ID of the control that will be invalidated. + + + Used to invalidate a built-in control. + Specified the identifier of the control that will be invalidated. + + + Returns information about the language settings in a Microsoft Office application. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the locale identifier (LCID) for the install language, the user interface language, or the Help language. + Required . + + + Determines if the value for the constant has been identified in the Windows Registry as a preferred language for editing. + Required . + + + Returns the Parent object for the specified object. + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + Specifies the format for an e-mail message. These formats correspond to the formats supported by Microsoft Outlook for e-mail messages. + + + Plain text. + + + Hypertext Markup Language (HTML) formatting. + + + Rich Text Format (RTF) formatting. + + + Represents a collection of properties describing the metadata stored in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets an Integer indicating the number of items in the collection. Read-only. + Integer + + + Gets ID of the application in which the object was created. Read-only. + Integer + + + + Gets a property's value specifying its name as opposed to its index value. + + + + Contains the name of the property. + + + Gets a object from the collection. Read-only. + + + + The name or index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Gets the schema XML for the object. Read-only. + String + + + Validates all of the properties in a collection object according to a schema. + String + + + + Represents a single property in a collection of properties describing the metadata stored in a document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the ID of the object. Read-only. + String + + + Gets a Boolean value that specifies whether the meta property is read-only. Read-only. + Boolean + + + Gets a Boolean value that specifies whether the meta property is required. Read-only. + Boolean + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets the data type of the object. Read-only. + + + + + + Validates a object representing a single property value according to a schema. + String + + + + Gets or sets the value of the object. Read/write. + Object + + + Specifies the buttons to be displayed when issuing an alert to the user with the DoAlert method of the Assistant object. + + + OK button. + + + OK and Cancel buttons. + + + Abort, Retry, and Ignore buttons. + + + Yes, No, and Cancel buttons. + + + Yes and No buttons. + + + Retry and Cancel buttons. + + + Yes, Yes to All, No, and Cancel buttons. Can only be used if the varSysAlert argument of the DoAlert method is set to False. + + + Specifies behavior when the user cancels an alert. Only is currently supported. + + + Default behavior for canceling an alert. + + + Not supported. + + + Not supported. + + + Not supported. + + + Not supported. + + + Not supported. + + + Specifies which button is set as the default when calling the DoAlert method of the Assistant object. + + + Default to first button. + + + Default to second button. + + + Default to third button. + + + Default to fourth button. + + + Default to fifth button. + + + Specifies which icon, if any, to display with an alert. + + + Displays no icon with the alert message. + + + Displays the Critical icon. + + + Displays the Query icon. + + + Displays the Warning icon. + + + Displays the Info icon. + + + Defines how to align specified objects relative to one another. + + + Align left sides of specified objects. + + + Align centers of specified objects. + + + Align right sides of specified objects. + + + Align tops of specified objects. + + + Align middles of specified objects. + + + Align bottoms of specified objects. + + + Specifies the animation action for the Office Assistant. + + + "Idle" animation action. + + + "Greeting" animation action. + + + "Goodbye" animation action. + + + "Begin speaking" animation action. + + + "Rest pose" animation action. + + + "Major success" animation action. + + + Major "Get attention" animation action. + + + Minor "Get attention" animation action. + + + "Searching" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Printing" animation action. + + + "Gesture right" animation action. + + + "Noting something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Working at something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Thinking" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Sending mail" animation action. + + + "Listens to computer" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Disappear" animation action. + + + "Appear" animation action. + + + "Get artsy" animation action. + + + "Get techy" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Get wizardy" animation action. + + + "Checking something" animation action. Repeats until Assistant is dismissed or Animation property is reset with another animation. + + + "Look down" animation action. + + + "Look down and left" animation action. + + + "Look down and right" animation action. + + + "Look left" animation action. + + + "Look right" animation action. + + + "Look up" animation action. + + + "Look up and left" animation action. + + + "Look up and right" animation action. + + + "Saying" animation action. + + + "Gesture down" animation action. + + + "Gesture left" animation action. + + + "Gesture up" animation action. + + + "Empty trash" animation action. + + + Specifies a language setting in a Microsoft Office application. + + + Install language. + + + User interface language. + + + Help language. + + + Execution mode language. + + + User interface language used prior to the current user interface language. + + + Specifies the length of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states in the specified shape range. + + + Short. + + + Medium. + + + Long. + + + Specifies the style of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states. + + + No arrowhead. + + + Triangular. + + + Open. + + + Stealth-shaped. + + + Diamond-shaped. + + + Oval-shaped. + + + Specifies the width of the arrowhead at the end of a line. + + + Return value only; indicates a combination of the other states. + + + Narrow. + + + Medium. + + + Wide. + + + Specifies the security mode an application uses when programmatically opening files. + + + Enables all macros. This is the default value when the application is started. + + + Uses the security setting specified in the Security dialog box. + + + Disables all macros in all files opened programmatically, without showing any security alerts. + + + Specifies the shape type for an AutoShape object. + + + Return value only; indicates a combination of the other states. + + + Rectangle. + + + Parallelogram. + + + Trapezoid. + + + Diamond. + + + Rounded rectangle. + + + Octagon. + + + Isosceles triangle. + + + Right triangle. + + + Oval. + + + Hexagon. + + + Cross. + + + Pentagon. + + + Can. + + + Cube. + + + Bevel. + + + Folded corner. + + + Smiley face. + + + Donut. + + + "No" symbol. + + + Block arc. + + + Heart. + + + Lightning bolt. + + + Sun. + + + Moon. + + + Arc. + + + Double bracket. + + + Double brace. + + + Plaque. + + + Left bracket. + + + Right bracket. + + + Left brace. + + + Right brace. + + + Block arrow that points right. + + + Block arrow that points left. + + + Block arrow that points up. + + + Block arrow that points down. + + + Block arrow with arrowheads that point both left and right. + + + Block arrow that points up and down. + + + Block arrows that point up, down, left, and right. + + + Block arrow with arrowheads that point left, right, and up. + + + Block arrow that follows a curved 90-degree angle. + + + Block arrow forming a U shape. + + + Block arrow with arrowheads that point left and up. + + + Block arrow that follows a sharp 90-degree angle. Points up by default. + + + Block arrow that curves right. + + + Block arrow that curves left. + + + Block arrow that curves up. + + + Block arrow that curves down. + + + Block arrow that points right with stripes at the tail. + + + Notched block arrow that points right. + + + Pentagon. + + + Chevron. + + + Callout with arrow that points right. + + + Callout with arrow that points left. + + + Callout with arrow that points up. + + + Callout with arrow that points down. + + + Callout with arrowheads that point both left and right. + + + Callout with arrows that point up and down. + + + Callout with arrows that point up, down, left, and right. + + + Block arrow that follows a curved 180-degree angle. + + + Process flowchart symbol. + + + Alternate process flowchart symbol. + + + Decision flowchart symbol. + + + Data flowchart symbol. + + + Predefined process flowchart symbol. + + + Internal storage flowchart symbol. + + + Document flowchart symbol. + + + Multi-document flowchart symbol. + + + Terminator flowchart symbol. + + + Preparation flowchart symbol. + + + Manual input flowchart symbol. + + + Manual operation flowchart symbol. + + + Connector flowchart symbol. + + + Off-page connector flowchart symbol. + + + Card flowchart symbol. + + + Punched tape flowchart symbol. + + + Summing junction flowchart symbol. + + + "Or" flowchart symbol. + + + Collate flowchart symbol. + + + Sort flowchart symbol. + + + Extract flowchart symbol. + + + Merge flowchart symbol. + + + Stored data flowchart symbol. + + + Delay flowchart symbol. + + + Sequential access storage flowchart symbol. + + + Magnetic disk flowchart symbol. + + + Direct access storage flowchart symbol. + + + Display flowchart symbol. + + + Explosion. + + + Explosion. + + + 4-point star. + + + 5-point star. + + + 8-point star. + + + 16-point star. + + + 24-point star. + + + 32-point star. + + + Ribbon banner with center area above ribbon ends. + + + Ribbon banner with center area below ribbon ends. + + + Ribbon banner that curves up. + + + Ribbon banner that curves down. + + + Vertical scroll. + + + Horizontal scroll. + + + Wave. + + + Double wave. + + + Rectangular callout. + + + Rounded rectangle-shaped callout. + + + Oval-shaped callout. + + + Cloud callout. + + + Callout with border and horizontal callout line. + + + Callout with diagonal straight line. + + + Callout with angled line. + + + Callout with callout line segments forming a U-shape. + + + Callout with horizontal accent bar. + + + Callout with diagonal callout line and accent bar. + + + Callout with angled callout line and accent bar. + + + Callout with accent bar and callout line segments forming a U-shape. + + + Callout with horizontal line. + + + Callout with no border and diagonal callout line. + + + Callout with no border and angled callout line. + + + Callout with no border and callout line segments forming a U-shape. + + + Callout with border and horizontal accent bar. + + + Callout with border, diagonal straight line, and accent bar. + + + Callout with border, angled callout line, and accent bar. + + + Callout with border, accent bar, and callout line segments forming a U-shape. + + + Button with no default picture or text. Supports mouse-click and mouse-over actions. + + + Home button. Supports mouse-click and mouse-over actions. + + + Help button. Supports mouse-click and mouse-over actions. + + + Information button. Supports mouse-click and mouse-over actions. + + + Back or Previous button. Supports mouse-click and mouse-over actions. + + + Forward or Next button. Supports mouse-click and mouse-over actions. + + + Beginning button. Supports mouse-click and mouse-over actions. + + + End button. Supports mouse-click and mouse-over actions. + + + Return button. Supports mouse-click and mouse-over actions. + + + Document button. Supports mouse-click and mouse-over actions. + + + Sound button. Supports mouse-click and mouse-over actions. + + + Movie button. Supports mouse-click and mouse-over actions. + + + Balloon. + + + Not supported. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Determines the type of automatic sizing allowed. + + + A combination of automatic sizing schemes are used. + + + No autosizing. + + + The shape is adjusted to fit the text. + + + The text is adjusted to fit the shape. + + + Indicates the background style for an object. + + + Specifies a combination of styles. + + + Specifies no styles. + + + Specifies style 1. + + + Specifies style 2. + + + Specifies style 3. + + + Specifies style 4. + + + Specifies style 5. + + + Specifies style 6. + + + Specifies style 7. + + + Specifies style 8. + + + Specifies style 9. + + + Specifies style 10. + + + Specifies style 11. + + + Specifies style 12. + + + Indicates which button the user clicked in a balloon. + + + Yes to all button. + + + Options button. + + + Tips button. + + + Close button. + + + Snooze button. + + + Search button. + + + Ignore button. + + + Abort button. + + + Retry button. + + + Next button. + + + Back button. + + + No button. + + + Yes button. + + + Cancel button. + + + OK button. + + + Null button. + + + Specifies what error occurred in a balloon. + + + No error was encountered. + + + Balloon won't appear because some other error occurred, such as another modal balloon is already active. + + + Balloon is too big to appear on the screen. + + + Balloon won't appear because there is insufficient memory. + + + Balloon contains a graphic that couldn't be displayed because the file doesn't exist or because the graphic isn't a valid .BMP or .WMF file. + + + Balloon contains an unrecognized or unsupported reference. + + + The balloon you attempted to display is modal, but it contains no buttons. The balloon won't be shown because it can't be dismissed. + + + The balloon you attempted to display is modeless, contains buttons, and has no procedure assigned to the Callback property. The balloon won't be shown because a callback procedure is required for modeless balloons. + + + Balloon contains an ASCII control character other than CR or LF and less than 32. + + + Balloon could not be displayed because of a COM failure. + + + Modal balloon was requested by an application that isn't the active application. Microsoft Office renders balloons for the active (topmost) application only. + + + Balloon contains more than twenty controls (check boxes or labels). + + + Specifies the type of label used in a balloon. + + + Labeled buttons. + + + Bulleted labels. + + + Numbered labels. + + + Specifies the position or behavior of a command bar. + + + Command bar is docked on the left side of the application window. + + + Command bar is docked at the top of the application window. + + + Command bar is docked on the right side of the application window. + + + Command bar is docked at the bottom of the application window. + + + Command bar floats on top of the application window. + + + Command bar will be a shortcut menu. + + + Command bar will be a menu bar (Macintosh only). + + + Specifies how a command bar is protected from user customization. + + + All aspects of command bar can be customized by user. + + + Command bar cannot be customized. + + + Command bar cannot be resized. + + + Command bar cannot be moved. + + + Command bar cannot be hidden. + + + Docking setting cannot be changed. + + + Command bar cannot be docked to the left or right. + + + Command bar cannot be docked to the top or bottom. + + + Specifies whether a command bar is in the first row or last row relative to other command bars in the same docking area. + + + First row of docking area. + + + Last row of docking area. + + + Specifies the type of the command bar. + + + Default command bar. + + + Menu bar. + + + Shortcut menu. + + + + + + + + + + + + + + + + + + + + + + Indicates the bevel type of a object. + + + Specifies a mixed type bevel. + + + Specifies no bevel. + + + Specifies a RelaxedInset bevel. + + + Specifies a Circle bevel. + + + Specifies a Slope bevel. + + + Specifies a Cross bevel. + + + Specifies an Angle bevel. + + + Specifies a SoftRound bevel. + + + Specifies a Convex bevel. + + + Specifies a CoolSlant bevel. + + + Specifies a Divot bevel. + + + Specifies a Riblet bevel. + + + Specifies a HardEdge bevel. + + + Specifies an ArtDeco bevel. + + + Specifies how a shape appears when viewed in black-and-white mode. + + + Not supported. + + + Default behavior. + + + Grayscale. + + + Light grayscale. + + + Inverse grayscale. + + + Gray with white fill. + + + White with grayscale fill. + + + Black with white fill. + + + Black. + + + White. + + + Not shown. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the type of button to be displayed at the bottom of an Office Assistant balloon. + + + No buttons. + + + OK button. + + + Cancel button. + + + OK and Cancel buttons. + + + Yes and No buttons. + + + Yes, No, and Cancel buttons. + + + Back and Close buttons. + + + Next and Close buttons. + + + Back, Next, and Close buttons. + + + Retry and Cancel buttons. + + + Abort, Retry, and Ignore buttons. + + + Search and Close buttons. + + + Back, Next, and Snooze buttons. + + + Tips, Options, and Close buttons. + + + Yes to All, No, and Cancel buttons. + + + Specifies the appearance of a command bar button control. + + + Button is not pressed down. + + + Button is pressed down. + + + Button is pressed down. + + + Specifies the style of a command bar button. + + + Default behavior. + + + Image only. + + + Text only. + + + Image and text, with text to the right of image. + + + Image with text wrapped and to the right of the image. + + + Image with text below. + + + Text only, centered and wrapped. + + + Image with text wrapped below image. + + + Reserved for internal use. + + + + + + + + + Specifies the size of the angle between the callout line and the side of the callout text box. + + + Return value only; indicates a combination of the other states. + + + Default angle. Angle can be changed as you drag the object. + + + 30˚ angle. + + + 45˚ angle. + + + 60˚ angle. + + + 90˚ angle. + + + Specifies starting position of the callout line relative to the text bounding box. + + + Return value only; indicates a combination of the other states. + + + Custom. If this value is used as the value for the PresetDrop property, the Drop and AutoAttach properties of the CalloutFormat object are used to determine where the callout line attaches to the text box. + + + Top. + + + Center. + + + Bottom. + + + Specifies the type of callout line. + + + Return value only; indicates a combination of the other states. + + + Single, horizontal callout line. + + + Single, angled callout line. + + + Callout line made up of two line segments. Callout line is attached on left side of text bounding box. + + + Callout line made up of two line segments. Callout line is attached on right side of text bounding box. + + + Specifies the character set to be used when rendering text. + + + Arabic character set. + + + Cyrillic character set. + + + English, Western European, and other Latin script character set. + + + Greek character set. + + + Hebrew character set. + + + Japanese character set. + + + Korean character set. + + + Multilingual Unicode character set. + + + Simplified Chinese character set. + + + Thai character set. + + + Traditional Chinese character set. + + + Vietnamese character set. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the color type. + + + Not supported. + + + Color is determined by values of red, green, and blue. + + + Color is defined by an application-specific scheme. + + + Color is determined by values of cyan, magenta, yellow, and black. + + + Color Management System color type. + + + Not supported. + + + Specifies whether the command bar combo box includes a label or not. + + + Combo box does not include a label. + + + Combo box includes a label, specified by the Caption property of the combo box. + + + Specifies whether the command bar button is a hyperlink. If the command bar button is a hyperlink, further specifies whether the hyperlink should launch another application such as the browser or insert a picture at the active selection point. + + + The command bar button is not a hyperlink. + + + Clicking the command bar button opens the link specified in the command bar button's TooltipText property. + + + Clicking the command bar button inserts a picture at the active selection point. + + + Defines the condition for comparison between a file and a specified property in a file search. + + + File can be any type. + + + File can be any Office file type. + + + Word document. + + + Excel workbook. + + + PowerPoint presentation. + + + Binder file. + + + Database. + + + Template. + + + Value of the file property specified in Name property of the PropertyTest object includes the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object includes the phrase specified in the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object begins with the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object ends with the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object and the value specified in the Value property of the PropertyTest object are near each other. + + + Value of the file property specified in Name property of the PropertyTest object is exactly the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is not the value specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is yesterday. + + + Date specified in the Name property of the PropertyTest object is today. + + + Date specified in the Name property of the PropertyTest object is tomorrow. + + + Date specified in the Name property of the PropertyTest object is within the last week. + + + Date specified in the Name property of the PropertyTest object is this week. + + + Date specified in the Name property of the PropertyTest object is next week. + + + Date specified in the Name property of the PropertyTest object is within the last month. + + + Date specified in the Name property of the PropertyTest object is this month. + + + Date specified in the Name property of the PropertyTest object is next month. + + + Date specified in the Name property of the PropertyTest object can be any time. + + + Date specified in the Name property of the PropertyTest object is between the dates specified with the Value and SecondValue properties of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is the same as the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is on or after the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is on or before the date specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is within the next time interval specified in the Value property of the PropertyTest object. + + + Date specified in the Name property of the PropertyTest object is within the last time interval specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object equals the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object does not equal the value specified in the Value property of the PropertyTest object. + + + Any number between values specified with the Value and SecondValue properties of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is at most the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is at least the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is more than the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is less than the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in Name property of the PropertyTest object is "True". + + + Value of the file property specified in Name property of the PropertyTest object is "False". + + + Value of the file property specified in Name property of the PropertyTest object includes forms of the value specified in the Value property of the PropertyTest object. + + + Value of the file property specified in the Name property of the PropertyTest object matches the value specified in the Value property of the PropertyTest object when a FreeText search is used. + + + Outlook item. + + + Mail item. + + + Calendar item. + + + Contact item. + + + Note item. + + + Journal item. + + + Task item. + + + PhotoDraw file. + + + Data connection file. + + + Publisher file. + + + Project file. + + + Document imaging file. + + + Visio file. + + + Designer file. + + + Web page. + + + Priority equals "Low". Value of the Name property must be Priority. + + + Priority equals "Normal". Value of the Name property must be Priority. + + + Priority equals "High". Value of the Name property must be Priority. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "Low". Value of the Name property must be Priority or Importance. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "Normal". Value of the Name property must be Priority or Importance. + + + Value of file property specified in the Name property of the PropertyTest object does not equal "High". Value of the Name property must be Priority or Importance. + + + Status equals "Not Started". Value of the Name property must be Status. + + + Status equals "In Progress". Value of the Name property must be Status. + + + Status equals "Completed". Value of the Name property must be Status. + + + Status equals "Waiting for Someone Else". Value of the Name property must be Status. + + + Status equals "Deferred". Value of the Name property must be Status. + + + Status does not equal "Not Started". Value of the Name property must be Status. + + + Status does not equal "In Progress". Value of the Name property must be Status. + + + Status does not equal "Completed". Value of the Name property must be Status. + + + Status does not equal "Waiting for Someone Else". Value of the Name property must be Status. + + + Status does not equal "Deferred". Value of the Name property must be Status. + + + Specifies the connector between two similar property test values. + + + Combine property test values to form one property test. + + + Treat property test values as separate criteria. + + + Specifies a type of connector. + + + Return value only; indicates a combination of the other states. + + + Straight line connector. + + + Elbow connector. + + + Curved connector. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the OLE client and OLE server roles in which a command bar control is used when two Microsoft Office applications are merged. + + + Control runs on neither client nor server. + + + Server-only control. + + + Client-only control. + + + Control runs on both client and server. + + + Specifies the type of the command bar control. + + + Custom control. Cannot be created through the object model. + + + Command button. + + + Text box. + + + Drop-down list. + + + Combo box. + + + Drop-down button. Cannot be created through the object model. + + + Split drop-down list. Cannot be created through the object model. + + + OCX drop-down list. Cannot be created through the object model. + + + Generic drop-down list. Cannot be created through the object model. + + + Graphic drop-down list. Cannot be created through the object model. + + + Pop-up. + + + Graphic pop-up menu. Cannot be created through the object model. + + + Pop-up button. Cannot be created through the object model. + + + Split button pop-up. Cannot be created through the object model. + + + Most Recently Used (MRU) pop-up. Cannot be created through the object model. + + + Label. Cannot be created through the object model. + + + Expanding grid. Cannot be created through the object model. + + + Split expanding grid. Cannot be created through the object model. + + + Grid. Cannot be created through the object model. + + + Gauge control. Cannot be created through the object model. + + + Graphic combo box. Cannot be created through the object model. + + + Pane. Cannot be created through the object model. + + + ActiveX control. + + + Spinner. Cannot be created through the object model. + + + Extended label. Cannot be created through the object model. + + + Work pane. Cannot be created through the object model. + + + Combo box in which the first matching choice is automatically filled in as the user types. Cannot be created through the object model. + + + Specifies the docking behavior of the custom task pane. + + + Dock the task pane on the left side of the document window. + + + Dock the task pane at the top of the document window. + + + Dock the task pane on the right side of the document window. + + + Dock the task pane at the bottom of the document window. + + + Don't dock the task pane. + + + Specifies retrictions on the docking behavior of the custom task pane. + + + No restrictions on docking the task pane. + + + There is no change from the current restriction setting for the task pane. + + + Task pane can't be docked to either the right or the left side of the document window. + + + Task pane can't be docked to either the top or the bottom of the document window. + + + Specifies the node type. + + + The node is an element. + + + The node is an attribute. + + + The node is a text node. + + + The node is a CData type. + + + The node is a processing instruction. + + + The node is a comment. + + + The node is a Document node. + + + Indicates how validation errors will be cleared or generated. + + + Specifies that where there is a non-empty schema collection available for the custom XML part and validation is in effect, any changes to the part will cause validation errors. + + + Specifies that the error will clear itself whenever any change is made to the node it is bound to. + + + Specifies that the error will not be cleared until the method is called. + + + Specifies the format of a date/time data type. + + + Specifies a mixed format. + + + Specifies a Mdyy format. + + + Specifies a ddddMMMMddyyyy format. + + + Specifies MMMMyyyy format. + + + Specifies a MMMMdyyyy format. + + + Specifies MMMyy format. + + + Specifies a MMMMyy format. + + + Specifies a MMyy format. + + + Specifies a MMddyyHmm format. + + + Specifies a MMddyyhmmAMPM format. + + + Specifies Hmm format. + + + Specifies a Hmmss format. + + + Specifies a hmmAMPM format. + + + Specifies a hmmssAMPM format. + + + Specifies that the Office application will determine the format. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies type of diagram node. + + + Diagram node is a subordinate of its parent. + + + Diagram node is an assistant to its parent. + + + Specifies the type of diagram. + + + Return value only; indicates a combination of the other states. + + + Organization chart diagram. + + + Cycle diagram. + + + Radial diagram. + + + Pyramid diagram. + + + Venn diagram. + + + Target diagram. + + + Specifies how to evenly distribute a collection of shapes. + + + Distribute horizontally. + + + Distribute vertically. + + + Represents the results of running a Document Inspector module. + + + Indicates that the Document Inspector module returned no issues or errors. + + + Indicates that the Document Inspector module found one or more occurrences of the search criteria. + + + Indicates that the Document Inspector module returned an error. + + + Specifies the data type for a document property. + + + Integer value. + + + Boolean value. + + + Date value. + + + String value. + + + Floating point value. + + + Specifies the editing type of a node. + + + Editing type is appropriate to the segments being connected. + + + Corner node. + + + Smooth node. + + + Symmetric node. + + + Specifies the document encoding (code page or character set) for the Web browser to use when a user views a saved document. + + + Thai. + + + Japanese (Shift-JIS). + + + Simplified Chinese GBK. + + + Korean. + + + Traditional Chinese Big 5. + + + Unicode little endian. + + + Unicode big endian. + + + Central European. + + + Cyrillic. + + + Western. + + + Greek. + + + Turkish. + + + Hebrew. + + + Arabic. + + + Baltic. + + + Vietnamese. + + + Web browser auto-detects type of encoding to use. + + + Web browser auto-detects type of Japanese encoding to use. + + + Web browser auto-detects type of Simplified Chinese encoding to use. + + + Web browser auto-detects type of Korean encoding to use. + + + Web browser auto-detects type of Traditional Chinese encoding to use. + + + Web browser auto-detects type of Cyrillic encoding to use. + + + Web browser auto-detects type of Greek encoding to use. + + + Web browser auto-detects type of Arabic encoding to use. + + + ISO 8859-1 Latin 1. + + + ISO 8859-2 Central Europe. + + + ISO 8859-3 Latin 3. + + + ISO 8859-4 Baltic. + + + ISO 8859-5 Cyrillic. + + + ISA 8859-6 Arabic. + + + ISO 8859-7 Greek. + + + ISO 8859-8 Hebrew. + + + ISO 8859-9 Turkish. + + + ISO 8859-15 with Latin 9. + + + ISO 8859-8 Hebrew (Logical). + + + ISO 2022-JP with no half-width Katakana. + + + ISO 2022-JP + + + ISO 2022-JP + + + ISO 2022-KR. + + + ISO 2022-CN encoding as used with Traditional Chinese. + + + ISO 2022-CN encoding as used with Simplified Chinese. + + + Macintosh Roman. + + + Macintosh Japanese. + + + Macintosh Traditional Chinese (Big 5). + + + Macintosh Korean. + + + Macintosh Arabic. + + + Macintosh Hebrew. + + + Macintosh Greek. + + + Macintosh Cyrillic. + + + Macintosh Simplified Chinese (GB 2312). + + + Macintosh Romanian. + + + Macintosh Ukrainian. + + + Macintosh Latin 2. + + + Macintosh Icelandic. + + + Macintosh Turkish. + + + Macintosh Croatian. + + + EBCDIC as used in the United States and Canada. + + + International EBCDIC. + + + EBCDIC Multilingual ROECE (Latin 2). + + + EBCDIC as used in the Modern Greek language. + + + EBCDIC as used with Turkish (Latin 5). + + + EBCDIC as used in Germany. + + + EBCDIC as used in Denmark and Norway. + + + EBCDIC as used in Finland and Sweden. + + + EBCDIC as used in Italy. + + + EBCDIC as used in Latin America and Spain. + + + EBCDIC as used in the United Kingdom. + + + EBCDIC as used with Japanese Katakana (extended). + + + EBCDIC as used in France. + + + Extended Binary Coded Decimal Interchange Code (EBCDIC) Arabic. + + + EBCDIC as used in the Greek language. + + + EBCDIC as used in the Hebrew language. + + + EBCDIC as used with Korean (extended). + + + EBCDIC as used with Thai. + + + EBCDIC as used in Iceland. + + + EBCDIC as used with Turkish. + + + EBCDIC as used with Russian. + + + EBCDIC as used with Serbian and Bulgarian. + + + EBCDIC as used with Japanese Katakana (extended) and Japanese. + + + EBCDIC as used in the United States and Canada, and with Japanese. + + + EBCDIC as used with Korean (extended) and Korean. + + + EBCDIC as used with Simplified Chinese (extended) and Simplified Chinese. + + + EBCDIC as used in the United States and Canada, and with Traditional Chinese. + + + EBCDIC as used with Japanese Latin (extended) and Japanese. + + + OEM as used in the United States. + + + OEM as used with Greek 437G. + + + OEM as used with Baltic. + + + OEM as used with multi-lingual Latin I. + + + OEM as used with multi-lingual Latin II. + + + OEM as used with Cyrillic. + + + OEM as used with Turkish. + + + OEM as used with Portuguese. + + + OEM as used with Icelandic. + + + OEM as used with Hebrew. + + + OEM as used with Canadian French. + + + OEM as used with Arabic. + + + OEM as used with Nordic languages. + + + OEM as used with Cyrillic II. + + + OEM as used with Modern Greek. + + + EUC as used with Japanese. + + + Extended Unix Code (EUC) as used with Chinese and Simplified Chinese. + + + EUC as used with Korean. + + + EUC as used with Taiwanese and Traditional Chinese. + + + ISCII as used with Devanagari. + + + ISCII as used with Bengali. + + + ISCII as used with Tamil. + + + ISCII as used with Telugu. + + + Indian Script Code for Information Interchange (ISCII) as used with Assamese. + + + ISCII as used with Oriya. + + + ISCII as used with Kannada. + + + ISCII as used with Malayalam. + + + ISCII as used with Gujarati. + + + ISCII as used with Punjabi. + + + Arabic ASMO. + + + Transparent Arabic. + + + Korean (Johab). + + + Taiwan CNS. + + + Taiwan TCA. + + + Taiwan Eten. + + + Taiwan IBM 5550. + + + Taiwan Teletext. + + + Taiwan Wang. + + + IA5, International Reference Version (IRV). + + + German (International Alphabet No. 5, or IA5). + + + IA5 as used with Swedish. + + + IA5 as used with Norwegian. + + + United States ASCII. + + + T61. + + + ISO 6937 Non-Spacing Accent. + + + KOI8-R. + + + Extended Alpha lowercase. + + + K0I8-U. + + + Europa. + + + Simplified Chinese (HZGB). + + + Simplified Chinese GB 18030. + + + UTF-7 encoding. + + + UTF-8 encoding. + + + Provides access to functionality that lets you send documents as emails directly from Microsoft Office applications. + + + Reserved for internal use. + + + + + + + + + + + + + Specifies how to use the value specified in the ExtraInfo property of the FollowHyperlink method. + + + The value specified in the ExtraInfo property is a string that is appended to the address. + + + The value specified in the ExtraInfo property is posted as a string or byte array. + + + Specifies whether the extrusion color is based on the extruded shape's fill (the front face of the extrusion) and automatically changes when the shape's fill changes, or whether the extrusion color is independent of the shape's fill. + + + Return value only; indicates a combination of the other states. + + + Extrusion color is based on shape fill. + + + Extrusion color is independent of shape fill. + + + Specifies the language to use to determine which line break level is used when the line break control option is turned on. + + + Japanese. + + + Korean. + + + Simplified Chinese. + + + Traditional Chinese. + + + Specifies how the application handles calls to methods and properties that require features not yet installed. + + + Generates a generic automation error at run time when uninstalled features are called. + + + Prompts the user to install new features. + + + Displays a progress meter during installation; does not prompt the user to install new features. + + + Specifies the type of a FileDialog object. + + + Open dialog box. + + + Save As dialog box. + + + File picker dialog box. + + + Folder picker dialog box. + + + Specifies the view presented to the user in a file dialog box. + + + Files displayed in a list without details. + + + Files displayed in a list with detail information. + + + Files displayed in a list with a pane showing the selected file's properties. + + + Files displayed in a list with a preview pane showing the selected file. + + + Files displayed as thumbnails. + + + Files displayed as large icons. + + + Files displayed as small icons. + + + Files displayed in Web view. + + + Files displayed as tiled icons. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This enumeration applies to the Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + This member is for Macintosh only and should not be used. + + + Specifies view to use for a file find process. + + + View file information. + + + View preview of file. + + + View summary information. + + + Specifies action to take when a user clicks an item in the task pane. + + + Edit file. + + + Create a new file. + + + Open file. + + + Specifies the task pane section to which to add a file or where the file reference exists. + + + Open Document section. + + + New section. + + + New from Existing File section. + + + New from Template section. + + + Bottom section. + + + Specifies a type of file. + + + All files. + + + Files with any of the following extensions: *.doc, *.xls, *.ppt, *.pps, *.obd, *.mdb, *.mpd, *.dot, *.xlt, *.pot, *.obt, *.htm, or *.html. + + + Microsoft Word document file (*.doc). + + + Microsoft Excel workbook (*.wbk). + + + PowerPoint presentation file (*.ppt), PowerPoint template file (*.pot), or PowerPoint slide show file (*.pps). + + + Microsoft Binder file (*.obd). + + + Database file (*.mdb). + + + Microsoft PowerPoint template (*.pot), Word template (*.dot), Excel template (*.xlt). + + + Any Microsoft Outlook item file. + + + Mail item file (*.msg). + + + Calendar item file (*.ics or *.vsc). + + + Contact item file (*.vcf). + + + Microsoft Outlook Note item. + + + Microsoft Outlook Journal item + + + Microsoft Outlook task item. + + + PhotoDraw item file (*.mix). + + + Data connection file (*.mdf). + + + Microsoft Publisher file (*.pub) + + + Project file (*.mpd). + + + Microsoft Document Imaging file (*.mdi). + + + Microsoft Visio file (*.vsd). + + + Visual Basic Active Designer file (*.dsr). + + + HTML file (*.htm or *.html). + + + + + + + + + + Specifies a shape's fill type. + + + Mixed fill. + + + Solid fill. + + + Patterned fill. + + + Gradient fill. + + + Textured fill. + + + Fill is the same as the background. + + + Picture fill. + + + Specifies how the Column and CompareTo properties are compared for an ODSOFilter object. + + + Column matches CompareTo if the CompareTo value is the same as the Column value. + + + Column matches CompareTo if the CompareTo value is not equal to the Column value. + + + Column matches CompareTo if the Column value is less than the CompareTo value. + + + Column matches CompareTo if the Column value is greater than the CompareTo value. + + + Column matches CompareTo if the Column value is less than or equal to the CompareTo value. + + + Column matches CompareTo if the Column value is greater than or equal to the CompareTo value. + + + Column passes filter if Column is blank. + + + Column passes filter if Column is blank. + + + Column matches CompareTo if any part of the CompareTo string is contained in the Column value. + + + Column matches CompareTo if any part of the CompareTo string is not contained in the Column value. + + + Specifies how a filter criterion relates to other filter criteria. + + + And conjunction. + + + Or conjunction. + + + Specifies whether a shape should be flipped horizontally or vertically. + + + Flip horizontally. + + + Flip vertically. + + + Represents one of the three language fonts contained in the collection + + + Represents the Latin font face. + + + Represents the font face for Complex Script languages. The Complex Script language collection supports Arabic, Georgian, Hebrew, Indian, Thai and Vietnamese alphabets. + + + Represents the East Asian font face. East Asian Languages include Simplified Chinese, Traditional Chinese, Japanese, and Korean. + + + Specifies the type of gradient used in a shape's fill. + + + Mixed gradient. + + + One-color gradient. + + + Two-color gradient. + + + Gradient colors set according to a built-in gradient of the set defined by the msoPresetGradientType constant. + + + + + + Specifies the style for a gradient fill. + + + Gradient is mixed. + + + Gradient running horizontally across the shape. + + + Gradient running vertically down the shape. + + + Diagonal gradient moving from a bottom corner up to the opposite corner. + + + Diagonal gradient moving from a top corner down to the opposite corner. + + + Gradient running from a corner to the other three corners. + + + Gradient running from the title outward. + + + Gradient running from the center out to the corners. + + + Specifies the horizontal alignment of text in a text frame. + + + Return value only; indicates a combination of the other states. + + + No alignment. + + + Text is centered horizontally. + + + Specifies the view in which an HTML project or project item is opened. + + + Open project in source view. + + + Open project in text view. + + + Specifies the current state of an HTMLProject object. + + + Document is locked. In a Microsoft Office host application or Microsoft Script Editor, indicates that the Refresh toolbar is displayed in the host application. + + + Project is locked. In the Microsoft Script Editor, indicates that the Refresh toolbar is displayed. + + + Document is unlocked. In a Microsoft Office host application or Microsoft Script Editor, indicates that the Refresh toolbar is not displayed at all. + + + Specifies the type of hyperlink. + + + Hyperlink applies to a Range object. + + + Hyperlink applies to a Shape object. + + + Hyperlink applies to an inline shape. Used only with Microsoft Word. + + + Specifies an icon type to show in a Balloon object. + + + No icon. + + + Alert icon. + + + Tip icon. + + + Information alert icon. + + + Warning alert icon. + + + Query alert icon. + + + Critical alert icon. + + + + + + + + + + + + + Specifies which language to use. + + + Mixed languages. + + + No language specified. + + + No proofing requested. + + + Afrikaans. + + + Albanian. + + + Amharic. + + + Arabic as spoken in Algeria. + + + Arabic as spoken in Bahrain. + + + Arabic as spoken in Egypt. + + + Arabic as spoken in Iraq. + + + Arabic as spoken in Jordan. + + + Arabic as spoken in Kuwait. + + + Arabic as spoken in Lebanon. + + + Arabic as spoken in Libya. + + + Arabic as spoken in Morocco. + + + Arabic as spoken in Oman. + + + Arabic as spoken in Qatar. + + + Arabic. + + + Arabic as spoken in Syria. + + + Arabic as spoken in Tunisia. + + + Arabic as spoken in the United Arab Emirates. + + + Arabic as spoken in Yemen. + + + Armenian. + + + Assamese. + + + Azeri-Cyrillic. + + + Azeri-Latin. + + + Basque (Basque). + + + Belarusian. + + + Bengali. + + + Bosnian. + + + The Bosnian Bosnia Herzegovina Cyrillic language. + + + The Bosnian Bosnia Herzegovina Latin language. + + + Bulgarian. + + + Burmese. + + + Catalan. + + + Chinese as spoken in Hong Kong SAR. + + + Chinese as spoken in Macao SAR. + + + Simplified Chinese. + + + Chinese as spoken in Singapore. + + + Traditional Chinese. + + + Cherokee. + + + Croatian. + + + Czech. + + + Danish. + + + Divehi. + + + Belgian Dutch. + + + Dutch. + + + Dzongkha as spoken in Bhutan. + + + Edo. + + + English as spoken in Australia. + + + English as spoken in Belize. + + + English as spoken in Canada. + + + English as spoken in the Caribbean. + + + English as spoken in Indonesia. + + + English as spoken in Ireland. + + + English as spoken in Jamaica. + + + English as spoken in New Zealand. + + + English as spoken in the Philippines. + + + English as spoken in South Africa. + + + English as spoken in Trinidad and Tobago. + + + English as spoken in the United Kingdom. + + + English as spoken in the United States. + + + English as spoken in Zimbabwe. + + + Estonian. + + + Faeroese. + + + Farsi. + + + Filipina. + + + Finnish. + + + Belgian French. + + + French as spoken in Cameroon. + + + French as spoken in Canada. + + + French as spoken in Cote d'Ivoire. + + + French. + + + French as spoken in Haiti. + + + French as spoken in Luxembourg. + + + French as spoken in Mali. + + + French as spoken in Monaco. + + + French as spoken in Morocco. + + + French as spoken in French Reunion Island. + + + French as spoken in Senegal. + + + French as spoken in Switzerland. + + + French as spoken in the West Indies. + + + French as spoken in Zaire. + + + The French Congo DRC language. + + + French as spoken in the Netherlands. + + + Fulfulde. + + + Gaelic as spoken in Ireland. + + + Gaelic as spoken in Scotland. + + + Galician. + + + Georgian. + + + German as spoken in Austria. + + + German. + + + German as spoken in Liechtenstein. + + + German as spoken in Luxembourg. + + + German as spoken in Switzerland. + + + Greek. + + + Guarani. + + + Gujarati. + + + Hausa. + + + Hawaiian. + + + Hebrew. + + + Hindi. + + + Hungarian. + + + Ibibio. + + + Icelandic. + + + Igbo. + + + Indonesian. + + + Inuktitut. + + + Italian. + + + Italian as spoken in Switzerland. + + + Japanese. + + + Kannada. + + + Kanuri. + + + Kashmiri. + + + Kashmiri in Devanagari script. + + + Kazakh. + + + Khmer. + + + Kirghiz. + + + Konkani. + + + Korean. + + + Kyrgyz. + + + Latin. + + + Lao. + + + Latvian. + + + Lithuanian. + + + Macedonian. + + + Macedonian FYROM language. + + + Malaysian. + + + Malay as spoken in Brunei Darussalam. + + + Malayalam. + + + Maltese. + + + Manipuri. + + + Maori. + + + Marathi. + + + Mongolian. + + + Nepali. + + + Bokmol as spoken in Norway. + + + Nynorsk as spoken in Norway. + + + Oriya. + + + Oromo. + + + Pashto. + + + Polish. + + + Brazilian Portuguese. + + + Portuguese. + + + Punjabi. + + + Quechua as spoken in Bolivia. + + + Quechua as spoken in Ecuador. + + + Quechua as spoken in Peru. + + + Rhaeto-Romanic. + + + Romanian as spoken in Moldova. + + + Romanian. + + + Russian as spoken in Moldova. + + + Russian. + + + Sami/Lappish. + + + Sanskrit. + + + Sepedi. + + + The Serbian Bosnia Herzegovina Cyrillic language. + + + The Serbian Bosnia Herzegovina Latin language. + + + Serbian/Cyrillic. + + + Serbian/Latin. + + + Sesotho. + + + Sindhi. + + + Sindhi as spoken in Pakistan. + + + Sinhalese. + + + Slovak. + + + Slovenian. + + + Somali. + + + Sorbian. + + + Spanish as spoken in Argentina. + + + Spanish as spoken in Bolivia. + + + Spanish as spoken in Chile. + + + Spanish as spoken in Colombia. + + + Spanish as spoken in Costa Rica. + + + Spanish as spoken in the Dominican Republic. + + + Spanish as spoken in Ecuador. + + + Spanish as spoken in El Salvador. + + + Spanish as spoken in Guatemala. + + + Spanish as spoken in Honduras. + + + Spanish as spoken in Mexico. + + + Spanish as spoken in Nicaragua. + + + Spanish as spoken in Panama. + + + Spanish as spoken in Paraguay. + + + Spanish as spoken in Peru. + + + Spanish as spoken in Puerto Rico. + + + Spanish (Modern Sort). + + + Spanish. + + + Spanish as spoken in Uruguay. + + + Spanish as spoken in Venezuela. + + + Sutu. + + + Swahili. + + + Swedish as spoken in Finland. + + + Swedish. + + + Syriac. + + + Tajik. + + + Tamil. + + + Tamazight. + + + Tamazight (Latin). + + + Tatar. + + + Telugu. + + + Thai. + + + Tibetan. + + + Tigrigna as spoken in Ethiopia. + + + Tigrigna as spoken in Eritrea. + + + Tsonga. + + + Tswana. + + + Turkish. + + + Turkmen. + + + Ukrainian. + + + Urdu. + + + Uzbek (Cyrillic). + + + Uzbek (Latin). + + + Venda. + + + Vietnamese. + + + Welsh. + + + Xhosa. + + + Yi. + + + Yiddish. + + + Yoruba. + + + Zulu. + + + Reserved for internal use. + + + + + + + + + + + + Specifies the period of time to filter files by the date last modified. Used with the LastModified property of the FileSearch object. + + + File last modified yesterday. + + + File last modified today. + + + File last modified last week. + + + File last modified this week. + + + File last modified last month. + + + File last modified this month. + + + File last modified any time. + + + Indicates the effects lighting for an object. + + + Specifies the Mixed effect. + + + Specifies the LegacyFlat1 effect. + + + Specifies the LegacyFlat2 effect. + + + Specifies the LegacyFlat3 effect. + + + Specifies the LegacyFlat4 effect. + + + Specifies the LegacyNormal1 effect. + + + Specifies the LegacyNormal2 effect. + + + Specifies the LegacyNormal3 effect. + + + Specifies the LegacyNormal4 effect. + + + Specifies the LegacyHarsh1 effect. + + + Specifies the LegacyHarsh2 effect. + + + Specifies the LegacyHarsh3 effect. + + + Specifies the LegacyHarsh4 effect. + + + Specifies the ThreePoint effect. + + + Specifies the Balanced effect. + + + Specifies the Soft effect. + + + Specifies the Harsh effect. + + + Specifies the Flood effect. + + + Specifies the Contrasting effect. + + + Specifies the Morning effect. + + + Specifies the Sunrise effect. + + + Specifies the Sunset effect. + + + Specifies the Chilly effect. + + + Specifies the Freezing effect. + + + Specifies the Flat effect. + + + Specifies the TwoPoint effect. + + + Specifies the Glow effect. + + + Specifies the BrightRoom effect. + + + Specifies the dash style for a line. + + + Not supported. + + + Line is solid. + + + Line is made up of square dots. + + + Line is made up of round dots. + + + Line consists of dashes only. + + + Line is a dash-dot pattern. + + + Line is a dash-dot-dot pattern. + + + Line consists of long dashes. + + + Line is a long dash-dot pattern. + + + + + + + + + + + + + + + Specifies the style for a line. + + + Not supported. + + + Single line. + + + Two thin lines. + + + Thick line next to thin line. For horizontal lines, thick line is below thin line. For vertical lines, thick line is to the right of the thin line. + + + Thick line next to thin line. For horizontal lines, thick line is above thin line. For vertical lines, thick line is to the left of the thin line. + + + Thick line with a thin line on each side. + + + Specifies animation style for Microsoft Office command bars. + + + No animation. + + + Random animation. + + + Menus unfold into view. + + + Menus slide into view. + + + Specifies the metadata property type. + + + Represents an unknown value. + + + Represents a Boolean value. + + + Represents a value from one or more choices. + + + Represents a calculated value. + + + Represents a computed value. + + + Represents a Currency value + + + Represents a DateTime value. + + + Represents a value from two or more choices that is written-in by the user. + + + Represents a GUID value. + + + Represents an Integer value. + + + Represents a value used to lookup another value. + + + Represents a collection of choices used to lookup another value. + + + Represents a collection of choices. + + + Represents a collection of choices that require the user to write-in a value. + + + Represents a value of one or more sentences. + + + Represents a generic number data type. + + + Represents a Text value. + + + Represents a URL. + + + Represents a category of user. + + + + + + + + + + + + Represents the maximum value for a range. + + + This enumeration has been deprecated and should not be used. + + + Internal use only. + + + Internal use only. + + + Specifies the mode type for a Balloon object. + + + Modal. User must dismiss balloon before continuing work. + + + Auto-down. Balloon is dismissed when user clicks anywhere on the screen. + + + Modeless. User can work in application while balloon is displayed. + + + This enumeration has been deprecated and should not be used. + + + Internal use only. + + + Internal use only. + + + Internal use only. + + + Internal use only. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the menu group that a command bar pop-up control belongs to when the menu groups of the OLE server are merged with the menu groups of an OLE client (that is, when an object of the container application type is embedded in another application). + + + Pop-up control is not merged. + + + File menu. + + + Edit menu. + + + Container menu. + + + Object menu. + + + Window menu. + + + Help menu. + + + Indicates how to format the child nodes in an organization chart. + + + Return value for a parent node that has children formatted using more than one MsoOrgChartLayoutType. + + + Places child nodes horizontally below the parent node. + + + Places child nodes vertically below the parent node on both the left and the right side. + + + Places child nodes vertically below the parent node on the left side. + + + Places child nodes vertically below the parent node on the right side. + + + + + + Specifies orientation of an organization chart. + + + Mixed orientation. + + + Vertical orientation. + + + Specifies orientation of an object when it is displayed or printed. + + + Mixed orientation. + + + Horizontal (landscape) orientation. + + + Vertical (portrait) orientation. + + + Specifies paragraph alignment for a text block. + + + Use a combination of alignment styles. + + + Specifies that the leftmost character of each line is aligned to the left margin, and the right edge of each line is ragged. This is the default alignment for paragraphs with left-to-right text direction. + + + + Specifies that the center of each line of text is aligned to the midpoint of the right and left text box margins, and the left and right edges of each line are ragged. + + + Specifies that the rightmost character of each line is aligned to the right margin, and the left edge of each line is ragged. This is the default alignment for paragraphs with right-to-left text direction. + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting space between and within words. The last line of the paragraph is aligned to the left margin if text direction is left-to-right, or to the right margin if text direction is right-to-left. + + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting the same amount from each character. The last line of the paragraph is aligned to the left margin if text direction is left-to-right, or to the right margin if text direction is right-to-left. + + + Specifies that the first and last characters of each line (except the last) are aligned to the left and right margins, and lines are filled by adding or subtracting space between (but not within) words. The last line of the paragraph is aligned to the left margin. + + + Specifies the alignment or adjustment of kashida length in Arabic text. Kashida are special characters used to extend the joiner between two Arabic characters. + + + Specifies the format of a file or folder path. + + + Represents a mixed format. + + + Represents no format. + + + Represents the Type1 format. + + + Represents the Type2 format. + + + Represents the Type3 format. + + + Represents the Type4 format. + + + Specifies the fill pattern used in a shape. + + + Not supported. + + + 5% of the foreground color. + + + 10% of the foreground color. + + + 20% of the foreground color. + + + 25% of the foreground color. + + + 30% of the foreground color. + + + 40% of the foreground color. + + + 50% of the foreground color. + + + 60% of the foreground color. + + + 70% of the foreground color. + + + 75% of the foreground color. + + + 80% of the foreground color. + + + 90% of the foreground color. + + + Thick horizontal lines in the foreground color. + + + Thick vertical lines in the foreground color. + + + Thick lines in the foreground color running from the top to the right-hand side of the shape. + + + Thick lines in the foreground color running from the top to the left-hand side of the shape. + + + Small squares in alternating foreground/background colors. + + + Trellis pattern in the foreground color. + + + Thin horizontal lines in the foreground color. + + + Thin vertical lines in the foreground color. + + + Thin lines in the foreground color running from the top to the right-hand side of the shape. + + + Thin lines in the foreground color running from the top to the left-hand side of the shape. + + + Solid, closely spaced perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Dotted perpendicular lines in the foreground color running diagonally to form diamonds across the shape. + + + Widely spaced lines in the foreground color running from the top to the right-hand side of the shape. + + + Widely spaced lines in the foreground color running from the top to the left-hand side of the shape. + + + Dashed lines in the foreground color running from the top to the left-hand side of the shape. + + + Dashed lines in the foreground color running from the top to the right-hand side of the shape. + + + Narrowly spaced vertical lines in the foreground color. + + + Narrowly spaced horizontal lines in the foreground color. + + + Dashed vertical lines in the foreground color. + + + Dashed horizontal lines in the foreground color. + + + Large dots in the foreground color scattered across the shape. + + + Solid, widely spaced perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Rectangular brick pattern running horizontally across the shape. + + + Squares in alternating foreground/background colors. + + + Small dots in the foreground color scattered across the shape. + + + Zigzag lines running horizontally across the shape. + + + Diamond shapes in alternating foreground/background colors. + + + Rectangular brick pattern running diagonally across the shape. + + + Solid perpendicular lines in the foreground color running diagonally to form diamonds across the shape. + + + Very thick solid lines in the foreground color running vertically, coupled with very thick lines and 40% of the foreground color running horizontally. + + + Circles that use foreground and background colors to make them appear three-dimensional, oriented in rows across the shape. + + + Weave pattern in the foreground color running diagonally across the shape. + + + Dotted perpendicular lines in the foreground color running horizontally and vertically to form grid lines across the shape. + + + Small angled shapes in the foreground color running in alternating rows down the shape. + + + Overlapping curved rectangles running diagonally across the shape. + + + Wavy lines in the foreground color. + + + Horizontal + + + Vertical + + + Cross + + + Downward Diagonal + + + Upward Diagonal + + + Diagonal Cross + + + Specifies an Information Rights Management (IRM) permission type for a document. + + + Permission to view. + + + Permission to read. + + + Permission to edit. + + + Permission to save. + + + Permission to extract. + + + Permission to change. + + + Permission to print. + + + Permission to access the object model programmatically. + + + Full control permissions. + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the color transformation applied to a picture. + + + Mixed transformation. + + + Default color transformation. + + + Grayscale transformation. + + + Black-and-white transformation. + + + Watermark transformation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates the effects camera type used by the specified object. + + + Specifies a mixed effect. + + + Specifies Legacy Oblique Upper Left. + + + Specifies Legacy Oblique Top. + + + Specifies Legacy Oblique Upper Right. + + + Specifies Legacy Oblique Left. + + + Specifies Legacy Oblique Front. + + + Specifies Legacy Oblique Right. + + + Specifies Legacy Oblique Lower Left. + + + Specifies Legacy Oblique Bottom. + + + Specifies Legacy Oblique Lower Right. + + + Specifies Legacy Perspective Upper Left. + + + Specifies Legacy Perspective Top. + + + Specifies Legacy Perspective Upper Right. + + + Specifies Legacy Perspective Left. + + + Specifies Legacy Perspective Front. + + + Specifies Legacy Perspective Right. + + + Specifies Legacy Perspective Lower Left. + + + Specifies Legacy Perspective Bottom. + + + Specifies Legacy Perspective Lower Right. + + + Specifies Orthographic Front. + + + Specifies Isometric Top Up. + + + Specifies Isometric Top Down. + + + Specifies Isometric Bottom Up. + + + Specifies Isometric Bottom Down. + + + Specifies Isometric Left Up. + + + Specifies Isometric Left Down. + + + Specifies Isometric Right Up. + + + Specifies Isometric Right Down. + + + Specifies Isometric OffAxis1 Left. + + + Specifies Isometric OffAxis1 Right. + + + Specifies Isometric OffAxis1 Top. + + + Specifies Isometric OffAxis2 Left. + + + Specifies Isometric OffAxis2 Right. + + + Specifies Isometric OffAxis2 Top. + + + Specifies Isometric OffAxis3 Left. + + + Specifies Isometric OffAxis3 Right. + + + Specifies Isometric OffAxis3 Bottom. + + + Specifies Isometric OffAxis4 Left. + + + Specifies Isometric OffAxis4 Right. + + + Specifies Isometric OffAxis4 Bottom. + + + Specifies Oblique Upper Left. + + + Specifies Oblique Top. + + + Specifies Oblique Upper Right. + + + Specifies Oblique Left. + + + Specifies Oblique Right. + + + Specifies Oblique Lower Left. + + + Specifies Oblique Bottom. + + + Specifies Oblique Lower Right. + + + Specifies Perspective Front. + + + Specifies Perspective Left. + + + Specifies Perspective Right. + + + Specifies Perspective Above. + + + Specifies Perspective Below. + + + Specifies Perspective Above Left Facing. + + + Specifies Perspective Above Right Facing. + + + Specifies Perspective Contrasting Left Facing. + + + Specifies Perspective Contrasting Right Facing. + + + Specifies Perspective Heroic Left Facing. + + + Specifies Perspective Heroic Right Facing. + + + Specifies Perspective Heroic Extreme Left Facing. + + + Specifies Perspective Heroic Extreme Right Facing. + + + Specifies Perspective Relaxed. + + + Specifies Perspective Relaxed Moderately. + + + Specifies the direction that the extrusion's sweep path takes away from the extruded shape (the front face of the extrusion). + + + Return value only; indicates a combination of the other states. + + + Bottom right. + + + Bottom. + + + Bottom left. + + + Right. + + + No extrusion. + + + Left. + + + Top right. + + + Top. + + + Top left. + + + Specifies which predefined gradient to use to fill a shape. + + + Mixed gradient. + + + Early Sunset gradient. + + + Late Sunset gradient. + + + Nightfall gradient. + + + Daybreak gradient. + + + Horizon gradient. + + + Desert gradient. + + + Ocean gradient. + + + Calm Water gradient. + + + Fire gradient. + + + Fog gradient. + + + Moss gradient. + + + Peacock gradient. + + + Wheat gradient. + + + Parchment gradient. + + + Mahogany gradient. + + + Rainbow gradient. + + + Rainbow II gradient. + + + Gold gradient. + + + Gold II gradient. + + + Brass gradient. + + + Chrome gradient. + + + Chrome II gradient. + + + Silver gradient. + + + Sapphire gradient. + + + Specifies the location of lighting on an extruded (three-dimensional) shape relative to the shape. + + + Not supported. + + + Lighting comes from the top left. + + + Lighting comes from the top. + + + Lighting comes from the top right. + + + Lighting comes from the left. + + + No lighting. + + + Lighting comes from the right. + + + Lighting comes from the bottom left. + + + Lighting comes from the bottom. + + + Lighting comes from the bottom right. + + + Specifies the intensity of light used on a shape. + + + Not supported. + + + Dim light. + + + Normal light. + + + Bright light. + + + Specifies the extrusion surface material. + + + Return value only; indicates a combination of the other states. + + + Matte. + + + Plastic. + + + Metal. + + + Wire frame. + + + Matte2 + + + Plastic2 + + + Metal2 + + + Warm Matte + + + Translucent Powder + + + Powder + + + DarkEdge + + + Soft Edge + + + Clear + + + Flat + + + Soft Metal + + + Specifies what text effect to use on a WordArt object. + + + Not used. + + + First text effect. + + + Second text effect. + + + Third text effect. + + + Fourth text effect. + + + Fifth text effect. + + + Sixth text effect. + + + Seventh text effect. + + + Eighth text effect. + + + Ninth text effect. + + + Tenth text effect. + + + Eleventh text effect. + + + Twelfth text effect. + + + Thirteenth text effect. + + + Fourteenth text effect. + + + Fifteenth text effect. + + + Sixteenth text effect. + + + Seventeenth text effect. + + + Eighteenth text effect. + + + Nineteenth text effect. + + + Twentieth text effect. + + + Twenty-first text effect. + + + Twenty-second text effect. + + + Twenty-third text effect. + + + Twenty-fourth text effect. + + + Twenty-fifth text effect. + + + Twenty-sixth text effect. + + + Twenty-seventh text effect. + + + Twenty-eighth text effect. + + + Twenty-ninth text effect. + + + Thirtieth text effect. + + + Specifies shape of WordArt text. + + + Not used. + + + No shape applied. + + + Text follows the shape of a stop sign. + + + Text slants down, then up. + + + Text slants up, then down. + + + Text slants down to its center point and then slants up. + + + Text slants up to its center point and then slants down. + + + Text appears to be written on the inside of a 3-D ring. + + + Text appears to be written on the outside of a 3-D ring. + + + Text is an arch that curves up. + + + Text is an arch that curves down. + + + Text follows a circle, reading clockwise. + + + Text is curved around a center "button." + + + Text is a 3-D arch that curves up. + + + Text is a 3-D arch that curves down. + + + Text has a 3-D effect and follows a circle, reading clockwise. + + + Text is seen in 3-D, curved around a center "button." + + + Text curves down and to the right as font size increases. + + + Text curves down and to the right as font size decreases. + + + Text is stretched to fill the height of the shape, with only a slight curve up. + + + Text is stretched to fill the height of the shape, with only a slight curve down. + + + Text follows a wave up, then down and up again. + + + Text follows a wave down, then up and down again. + + + Text follows a line that curves up, then down, then up and down again. + + + Text follows a line that curves down, then up, then down and up again. + + + Font size of text increases to its center point, then decreases. Center point of each letter is on the same straight line. + + + Font size decreases to the text's midpoint, then increases to the starting size. + + + Font size of text increases to its center point, then decreases. Center point of each letter follows an arch that curves downward. + + + Font size decreases to the text's midpoint, then increases to the starting size, while keeping the top of the text along the same curve. + + + Font size of text increases to its center point, then decreases. Center point of each letter follows an arch that curves upward. + + + Font size decreases to the text's midpoint, then increases to the starting size, while keeping the bottom of the text along the same curve. + + + Font size increases to the text's midpoint, then decreases to the starting size. + + + Font size decreases, increases, and decreases again across the text. + + + Right side of text appears to be closer to the viewer than left side. + + + Left side of text appears to be closer to the viewer than right side. + + + Bottom of text appears to be closer to the viewer than top. + + + Top of the text appears to be closer to the viewer than bottom of the text. + + + Text slants up and to the right. + + + Text slants down and to the right. + + + Text slants down and to the right as font size increases. + + + Text slants up and to the right as font size decreases. + + + Specifies texture to be used to fill a shape. + + + Not used. + + + Papyrus texture. + + + Canvas texture. + + + Denim texture. + + + Woven mat texture. + + + Water droplets texture. + + + Paper bag texture. + + + Fish fossil texture. + + + Sand texture. + + + Green marble texture. + + + White marble texture. + + + Brown marble texture. + + + Granite texture. + + + Newsprint texture. + + + Recycled paper texture. + + + Parchment texture. + + + Stationery texture. + + + Blue tissue paper texture. + + + Pink tissue paper texture. + + + Purple mesh texture. + + + Bouquet texture. + + + Cork texture. + + + Walnut texture. + + + Oak texture. + + + Medium wood texture. + + + Specifies an extrusion (three-dimensional) format. + + + Not used. + + + First 3-D format. + + + Second 3-D format. + + + Third 3-D format. + + + Fourth 3-D format. + + + Fifth 3-D format. + + + Sixth 3-D format. + + + Seventh 3-D format. + + + Eighth 3-D format. + + + Ninth 3-D format. + + + Tenth 3-D format. + + + Eleventh 3-D format. + + + Twelfth 3-D format. + + + Thirteenth 3-D format. + + + Fourteenth 3-D format. + + + Fifteenth 3-D format. + + + Sixteenth 3-D format. + + + Seventeenth 3-D format. + + + Eighteenth 3-D format. + + + Nineteenth 3-D format. + + + Twentieth 3-D format. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies where a node is added to a diagram relative to existing nodes. + + + Node is added before current node. + + + Node is added after current node. + + + Node is added before first sibling. + + + Node is added after last sibling. + + + Specifies which part of the shape retains its position when the shape is scaled. + + + Shape's top left corner retains its position. + + + Shape's midpoint retains its position. + + + Shape's bottom right corner retains its position. + + + Specifies the ideal screen resolution to be used to view a document in a Web browser. + + + 544x376 resolution. + + + 640x480 resolution. + + + 720x512 resolution. + + + 800x600 resolution. + + + 1024x768 resolution. + + + 1152x882 resolution. + + + 1152x900 resolution. + + + 1280x1024 resolution. + + + 1600x1200 resolution. + + + 1800x1440 resolution. + + + 1920x1200 resolution. + + + Specifies scripting language of the active script. + + + Java. + + + Visual Basic. + + + Active Server Pages (ASP). + + + A language other than ASP, Java, or Visual Basic. + + + Specifies the location of the script anchor within a document. + + + Script anchor is in the head of the document. + + + Script anchor is in the body of the document. + + + Indicates the area in which the Execute method of the FileSearch object searches for files. + + + Searches the My Computer node. + + + Searches Microsoft Outlook folders. + + + Searches the My Network Places node. + + + Searches a custom path. Custom path is defined by the LookIn property of the FileSearch object. + + + Specifies the type for a segment. + + + Line. + + + Curve. + + + Specifies the type of shadowing effect. + + + Specifies a combination of inner and outer shadow effects. + + + Specifies the inner shadow effect. + + + Specifies the outer shadow effect. + + + Specifies the type of shadow displayed with a shape. + + + Not supported. + + + First shadow type. + + + Second shadow type. + + + Third shadow type. + + + Fourth shadow type. + + + Fifth shadow type. + + + Sixth shadow type. + + + Seventh shadow type. + + + Eighth shadow type. + + + Ninth shadow type. + + + Tenth shadow type. + + + Eleventh shadow type. + + + Twelfth shadow type. + + + Thirteenth shadow type. + + + Fourteenth shadow type. + + + Fifteenth shadow type. + + + Sixteenth shadow type. + + + Seventeenth shadow type. + + + Eighteenth shadow type. + + + Nineteenth shadow type. + + + Twentieth shadow type. + + + Twenty first shadow type. + + + Twenty second shadow type. + + + Twenty third shadow type. + + + Twenty forth shadow type. + + + Twenty fifth shadow type. + + + Twenty sixth shadow type. + + + Twenty seventh shadow type. + + + Twenty eighth shadow type. + + + Twenty ninth shadow type. + + + Thirtieth shadow type. + + + Thirty first shadow type. + + + Thirty second shadow type. + + + Thirty third shadow type. + + + Thirty forth shadow type. + + + Thirty fifth shadow type. + + + Thirty sixth shadow type. + + + Thirty seventh shadow type. + + + Thirty eighth shadow type. + + + Thirty ninth shadow type. + + + Fortieth shadow type. + + + Forty first shadow type. + + + Forty second shadow type. + + + Forty third shadow type. + + + Indicates the line and shape style. + + + A mix of shape styles. + + + No shape style. + + + Shape style 1. + + + Shape style 2. + + + Shape style 3. + + + Shape style 4. + + + Shape style 5. + + + Shape style 6. + + + Shape style 7. + + + Shape style 8. + + + Shape style 9. + + + Shape style 10. + + + Shape style 11. + + + Shape style 12. + + + Shape style 13. + + + Shape style 14. + + + Shape style 15. + + + Shape style 16. + + + Shape style 17. + + + Shape style 18. + + + Shape style 19. + + + Shape style 20. + + + Shape style 21. + + + Shape style 22. + + + Shape style 23. + + + Shape style 24. + + + Shape style 25. + + + Shape style 26. + + + Shape style 27. + + + Shape style 28. + + + Shape style 29. + + + Shape style 30. + + + Shape style 31. + + + Shape style 32. + + + Shape style 33. + + + Shape style 34. + + + Shape style 35. + + + Shape style 36. + + + Shape style 37. + + + Shape style 38. + + + Shape style 39. + + + Shape style 40. + + + Shape style 41. + + + Shape style 42. + + + Line style 1. + + + Line style 2. + + + Line style 3. + + + Line style 4. + + + Line style 5. + + + Line style 6. + + + Line style 7. + + + Line style 8. + + + Line style 9. + + + Line style 10. + + + Line style 11. + + + Line style 12. + + + Line style 13. + + + Line style 14. + + + Line style 15. + + + Line style 16. + + + Line style 17. + + + Line style 18. + + + Line style 19. + + + Line style 20. + + + Line style 21. + + + Specifies the type of a shape or range of shapes. + + + Return value only; indicates a combination of the other states. + + + AutoShape. + + + Callout. + + + Chart. + + + Comment. + + + Freeform. + + + Group. + + + Embedded OLE object. + + + Form control. + + + Line. + + + Linked OLE object. + + + Linked picture. + + + OLE control object. + + + Picture. + + + Placeholder. + + + Text effect. + + + Media. + + + Text box. + + + Script anchor. + + + Table. + + + Canvas. + + + Diagram. + + + Ink. + + + Ink comment. + + + + + + + + + Specifies the priority for a shared workspace task. + + + High priority. + + + Normal priority. + + + Low priority. + + + Specifies the status of a shared workspace task. + + + Not started. + + + In progress. + + + Completed. + + + Deferred. + + + Waiting. + + + Specifies properties of the signature subset. These settings act as filters for signature sets. + + + All non-visible signatures plus all signed signature lines. + + + All non-visible signatures. + + + All signature lines. + + + Signature lines that have been signed. + + + Signature lines that have not been signed. + + + All non-visible signatures plus all signature lines. + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the type of soft edge effect. + + + A mix of soft edge types. + + + No soft edge. + + + Soft Edge Type 1 + + + Soft Edge Type 2 + + + Soft Edge Type 3 + + + Soft Edge Type 4 + + + Soft Edge Type 5 + + + Soft Edge Type 6 + + + Specifies sort order for files in a FileSearch object's FoundFiles collection. + + + File name. + + + File size. + + + File type. + + + Last modified date. + + + No sort. + + + Specifies whether files in a FileSearch object's FoundFiles collection should be sorted in ascending or descending order. + + + Ascending order. + + + Descending order. + + + Specifies whether and under what circumstances synchronization is available for the document. + + + No synchronization is available. + + + Synchronization is available offline only. + + + Synchronization is available offline and online. + + + Specifies how comparison between local copy and server copy should be done in a synchronization process. + + + Compare and merge versions. + + + Compare versions side-by-side. + + + Specifies how conflicts should be resolved when synchronizing a shared document. + + + Replace the server copy with the local copy. + + + Replace the local copy with the server copy. + + + Merge changes made to the server copy into the local copy. In order to resolve the conflict with the merged changes winning, you must save the active document after merging changes, then call the ResolveConflict method again with the option. + + + Specifies a document synchronization error. + + + No error. + + + Unauthorized user. + + + Could not connect. + + + Out of space. + + + Destination file not found. + + + File too large to synchronize. + + + Destination file in use. + + + Virus uploaded. + + + Virus downloaded. + + + Upload error. + + + Download error. + + + Could not open file. + + + Could not update destination file. + + + Source and destination files could not be compared. + + + Could not resolve files. + + + No network available. + + + Unknown error. + + + Specifies the return value of a Sync event. + + + Download initiated. + + + Download succeeded. + + + Download failed. + + + Upload initiated. + + + Upload succeeded. + + + Upload failed. + + + No change detected. + + + Offline. + + + Specifies the status of the synchronization of the local copy of the active document with the server copy. + + + No shared workspace. + + + No syncronization is needed. + + + Documents are already in sync. + + + Only server copy has changes. + + + Only local copy has changes. + + + Both the local and the server copies have changes. + + + Synchronization was suspended. You can use the Unsuspend method of the Sync object to resume synchronization. + + + An error occurred. Use ErrorType property of Sync object to determine exact error. + + + Specifies which version of a shared document to open alongside the currently open local version. + + + Opens the copy of the document that is created whenever the user overwrites the local copy with the server copy. + + + Opens the server version. + + + + + + + + + + + + + + + + + + + Specifies target browser for documents viewed in a Web browser. + + + Netscape Navigator 3. + + + Netscape Navigator 4. + + + Microsoft Internet Explorer 4.0. + + + Microsoft Internet Explorer 5. + + + Microsoft Internet Explorer 6. + + + Specifies the capitalization of the text. + + + Display the text as mixed uppercase and lowercase letters. + + + Display the text with no uppercase letters. + + + Display the text with any lowercase letters displayed as uppercase that are the same height as lowercase for the current font and size. + + + Display the text as all uppercase letters. + + + Specifies the capitalization of text. + + + Display the text as sentence case characters. Sentence case specifies that the first letter of the sentence is capitalized and that all others should be lowercase (with some exceptions such as proper nouns, and acronyms). + + + Display the text as lowercase characters. + + + Display the text as uppercase characters. + + + Display the text as title case characters. Title case specifies that the first letter of each word is capitalized and that all others should be lowercase. In some cases short articles, prepositions, and conjunctions are not capitalized. + + + Indicates that lowercase text should be converted to uppercase and that uppercase text should be converted to lowercase text. + + + Indicates the type of text wrap. + + + Specifies a mixed text wrap. + + + Specifies no text wrapping. + + + Specifies wrapping text around the standard boundry of an object. + + + Specifies text wrapping that adheres to restrictions imposed by some languages such as Chinese and Japanese alphabets. + + + Specifies a custom text wrap scheme. + + + + + + + + + + + + + Specifies alignment for WordArt text. + + + Not used. + + + Left-aligned. + + + Centered. + + + Right- aligned. + + + Text is justified. Spacing between letters may be adjusted to justify text. + + + Text is justified. Spacing between words (but not letters) may be adjusted to justify text. + + + Text is justified. Letters may be stretched to justify text. + + + Indicates the text alignment scheme used for an object. + + + Specifies that there is a mix of text alignments used with the object. + + + Specifies that the text alignment will be determined by the Office application. + + + Specifies that the font is aligned to the top of the object. + + + Specifies that the font is aligned to the center of the object. + + + Specifies that the font is aligned to the baseline of the object. + + + Specifies that the font is aligned to the bottom of the object. + + + Specifies orientation for text. + + + Not supported. + + + Horizontal. + + + Upward. + + + Downward. + + + Vertical as required for Far East language support. + + + Vertical. + + + Horizontal and rotated as required for Far East language support. + + + Indicates the number of times a character is printed to darken the image. + + + Specifies that the text can contain a combination of double-strike and single-strike characters. + + + Specifies that the character is not printed. + + + Specifies that the character is printed once. + + + Specifies that the character is printed twice. + + + Indicates the text alignment against tab stops or line breaks. The default value is . + + + Specifies that mixed text alignment against tab stops is used. + + + Specifies that the following text starts immediately after the designated tab stop. + + + Specifies that the following text up to next tab or line break is centered on the designated tab stop. + + + Specifies that the following text up to the next tab or line break is rendered flush right to the designated tab stop. + + + Specifies that the following text is searched for the first occurrence of the character representing the decimal point. The text up to the next tab or line break is then aligned such that the decimal point starts at the designated tab stop. + + + Indicates the type of underline for text. + + + Specifies a mix of underline types. + + + Specifies no underline. + + + Specifies underlining words. + + + Specifies a single line underline. + + + Specifies a double line underline. + + + Specifies a heavy line underline. + + + Specifies a dotted line underline. + + + Specifies a dotted heavy line underline. + + + Specifies a dash line underline. + + + Specifies a dash underline. + + + Specifies a dashed long line underline. + + + Specifies a long heavy line underline. + + + Specifies a dot dash line underline. + + + Specifies a dot dash heavy line underline. + + + Specifies a dot dot dash line underline. + + + Specifies a dot dot dash heavy line underline. + + + Specifies a wavy line underline. + + + Specifies a wavy heavy line underline. + + + Specifies a wavy double line underline. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the texture type for the selected fill. + + + Return value only; indicates a combination of the other states. + + + Preset texture type. + + + User-defined texture type. + + + Indicates the Office theme color. + + + Specifies a mixed color theme. + + + Specifies no theme color. + + + Specifies the Dark 1 theme color. + + + Specifies the Light 1 theme color. + + + Specifies the Dark 2 theme color. + + + Specifies the Light 2 theme color. + + + Specifies the Accent 1 theme color. + + + Specifies the Accent 2 theme color. + + + Specifies the Accent 3 theme color. + + + Specifies the Accent 4 theme color. + + + Specifies the Accent 5 theme color. + + + Specifies the Accent 6 theme color. + + + Specifies the theme color for a hyperlink. + + + Specifies the theme color for a clicked hyperlink. + + + Specifies the Text 1 theme color. + + + Specifies the Background 1 theme color. + + + Specifies the Text 2 theme color. + + + Specifies the Background 2 theme color. + + + Indicates the color scheme for an Office theme. + + + Specifies color scheme Dark 1. + + + Specifies color scheme Light 1. + + + Specifies color scheme Dark 2. + + + Specifies color scheme Light 2. + + + Specifies color scheme Accent 1. + + + Specifies color scheme Accent 2. + + + Specifies color scheme Accent 3. + + + Specifies color scheme Accent 4. + + + Specifies color scheme Accent 5. + + + Specifies color scheme Accent 6. + + + Specifies a color scheme for a hyperlink. + + + Specifies a color scheme for a clicked hyperlink. + + + Specifies a tri-state Boolean value. + + + True. + + + False. + + + Not supported. + + + Not supported. + + + Not supported. + + + Specifies the vertical alignment of text in a text frame. + + + Return value only; indicates a combination of the other states. + + + Aligns text to top of text frame. + + + Anchors bottom of text string to current position, regardless of text resizing. When you resize text without baseline anchoring, text centers itself on previous position. + + + Centers text vertically. + + + Aligns text to bottom of text frame. + + + Anchors bottom of text string to current position, regardless of text resizing. When you resize text without baseline anchoring, text centers itself on previous position. + + + Indicates various image warping formats. + + + Specifies a mix of warp formats. + + + Specifies Warp Format 1. + + + Specifies Warp Format 2. + + + Specifies Warp Format 3. + + + Specifies Warp Format 4. + + + Specifies Warp Format 5. + + + Specifies Warp Format 6. + + + Specifies Warp Format 7. + + + Specifies Warp Format 8. + + + Specifies Warp Format 9. + + + Specifies Warp Format 10. + + + Specifies Warp Format 11. + + + Specifies Warp Format 12. + + + Specifies Warp Format 13. + + + Specifies Warp Format 14. + + + Specifies Warp Format 15. + + + Specifies Warp Format 16. + + + Specifies Warp Format 17. + + + Specifies Warp Format 18. + + + Specifies Warp Format 19. + + + Specifies Warp Format 20. + + + Specifies Warp Format 21. + + + Specifies Warp Format 22. + + + Specifies Warp Format 23. + + + Specifies Warp Format 24. + + + Specifies Warp Format 25. + + + Specifies Warp Format 26. + + + Specifies Warp Format 27. + + + Specifies Warp Format 28. + + + Specifies Warp Format 29. + + + Specifies Warp Format 30. + + + Specifies Warp Format 31. + + + Specifies Warp Format 32. + + + Specifies Warp Format 33. + + + Specifies Warp Format 34. + + + Specifies Warp Format 35. + + + Specifies Warp Format 36. + + + Specifies the change to the Office Assistant Help session. + + + Make Office Assistant inactive. + + + Make Office Assistant active. + + + Suspend Office Assistant. + + + Resume Office Assistant. + + + Specifies context under which a wizard's callback procedure is called. + + + Not supported. + + + User clicked the right button in the decision or branch balloon. + + + User clicked the left button in the decision or branch balloon. + + + Passed to the ActivateWizard method if msoWizardActSuspend is specified for the Act argument. + + + Passed to the ActivateWizard method if msoWizardActResume is specified for the Act argument. + + + Specifies where in the z-order a shape should be moved relative to other shapes. + + + Bring shape to the front. + + + Send shape to the back. + + + Bring shape forward. + + + Send shape backward. + + + Bring shape in front of text. + + + Send shape behind text. + + + The NewFile object represents items listed on the New Item task pane available in several Microsoft Office applications. + + + Adds a new item to the New Item task pane. + Required String. The name of the file to add to the list of files on the task pane. + Optional Object. The section to which to add the file. Can be any constant. + Optional Object. The text to display in the task pane. + Optional Object. The action to take when a user clicks on the item. Can be any constant. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Removes an item from the New Item task pane. + Required String. The name of the file reference. + Optional Object. The section of the task pane where the file reference exists. Can be any constant. + Optional Object. The display text of the file reference. + Optional Object. The action taken when a user clicks on the item. Can be any constant. + + + Represents a field in a data source. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the name of the specified object. + + + Returns the Parent object for the specified object. + + + Returns the value of a field in a data source. + + + A collection of objects that represent the data fields in a mail merge data source. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a member of the specified collection. + Required Object. The name or index number of the ODSOColumn item to be returned. + + + Returns the Parent object for the specified object. + + + Represents a filter to be applied to an attached mail merge data source. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets a String that represents the name of the field in the mail merge data source to use in the filter. + + + Returns or sets a String that represents the text to compare in the query filter criterion. + + + Returns or sets a constant that represents how to compare the and properties. + + + Returns or sets a constant that represents how a filter criterion relates to other filter criteria in the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns an Integer representing the index number for an object in the collection. + + + Returns the Parent object for the specified object. + + + Represents all the filters to apply to the data source attached to the mail merge publication. + + + Adds a new filter to the collection. + Required String. The name of the table in the data source. + Required . How the data in the table is filtered. + Required . Determines how this filter relates to other filters in the ODSOFilters object. + Optional String. If the argument is something other than msoFilterComparisonIsBlank or msoFilterComparisonIsNotBlank, a string to which the data in the table is compared. + Optional Boolean. Default value is False. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes a filter object from the collection. + Required Integer. The number of the filter to delete. + Optional Boolean. + + + Returns a member of the specified collection. + Required Integer. The index number of the ODSOFilter to be returned. + + + Returns the Parent object for the specified object. + + + Represents the mail merge data source in a mail merge operation. + + + Applies a filter to a mail merge data source to filter specified records meeting specified criteria. + + + Returns an object that represents the fields in a data source. + + + Returns or sets a String that represents the connection to the specified mail merge data source. + + + Returns or sets a String that represents the name of the attached data source. + + + Returns a collection. + + + Moves the focus to a specified row in a mail merge data source. + Required . The row that receives the focus. + Optional Integer. The row number of the row that receives the focus. + + + Opens a connection to a mail merge data source. + Optional String. The name of the data source. + Optional String. The connection string to the data source. + Optional String. The name of a table in the data source. + Optional Integer. Sets whether the data source is opened for exclusive access. + Optional Integer. Sets whether prompts are displayed. + + + Returns an Integer that represents the number of records in the specified data source. + + + Sets the sort order for mail merge data. + Required String. The first field on which to sort the mail merge data. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + Optional String. The second field on which to sort the mail merge data. Default is an empty string. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + Optional String. The third field on which to sort the mail merge data. Default is an empty string. + Optional Boolean. True (default) to perform an ascending sort on ; False to perform a descending sort. + + + Returns a String that represents the name of the table within the data source file that contains the mail merge records. + + + Represents a Microsoft Office theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the parent object for the object. Read-only. + Object + + + Gets a object that represents the color scheme of a Microsoft Office theme. Read-only. + + + + + + Gets a object that represents the effects scheme of a Microsoft Office theme. Read-only. + + + + + + Gets a object that represents the font scheme of a Microsoft Office theme. Read-only. + + + + + + + + + + + + + + + + Represents the paragraph formatting of a text range. + + + Gets or sets a value specifying the alignment of the paragraph. Read/write. + + + + + + Gets an object that represents the application that contains the object. Read-only. + Object + + + Gets or sets a constant that represents the vertical position of fonts in a paragraph. Read/write. + + + + + + Gets a object for the paragraph. Read-only. + + + + + + Gets a value representing the application that created the object. Read-only. + Integer + + + Gets or sets the East Asian line break control level for the specified paragraph. Read/write. + + + + + + Gets or sets the value (in points) for a first line or hanging indent. Read/write. + Single + + + Determines whether hanging punctuation is enabled for the specified paragraphs. +Read/write. + + + + + + Gets or sets a value representing the indent level assigned to text in the selected paragraph. Read/write. + Integer + + + Gets or sets a value that represents the left indent value (in points) for the specified paragraphs. Read/write. + Single + + + Determines whether line spacing after the last line in each paragraph is set to a specific number of points or lines. Read/write. + + + + + + Determines whether line spacing before the first line in each paragraph is set to a specific number of points or lines. Read/write. + + + + + + Determines whether line spacing between base lines is set to a specific number of points or lines. Read/write. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets the right indent (in points) for the specified paragraphs. Read/write. + Single + + + Gets or sets the amount of spacing (in points) after the specified paragraph. Read/write. + Single + + + Gets or sets the spacing (in points) before the specified paragraphs. Read/write. + Single + + + Gets or sets the amount of space between base lines in the specified paragraph, in points or lines. Read/write. + Single + + + Gets a collection that represents all the custom tab stops for the specified paragraphs. Read-only. + + + + + + Gets or sets the text direction for the specified paragraph. Read/write. + + + + + + Determines whether the application wraps the Latin text in the middle of a word in the specified paragraphs. Read/write. + + + + + + Use the Permission object to restrict permissions to the active document and to return or set specific permissions settings. + + + Creates a new set of permissions on the active document for the specified user. + Optional Object. The email address (in the format ) of the user to whom permissions on the active document are being granted. + Optional String. The permissions on the active document that are being granted to the specified user. + Required String. The expiration date for the permissions that are being granted. + + + Returns an Application object that represents the container application for the object. + + + Applies the specified permission policy to the active document. + Required String. The path and filename of the permission policy template file. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the name in email form of the author of the active document. + + + Returns or sets a Boolean value that indicates whether permissions are enabled on the active document. + + + Returns or sets the option that allows a user to view a document with restricted permissions in a web browser if the user does not have the appropriate client application installed. + + + + Returns a object that is a member of the collection. + Optional Object. The numeric index of the UserPermission in the Permission collection, or the email address of the user whose set of permissions on the active document is to be returned. + + + Returns the Parent object for the specified object. + + + Returns a Boolean value that indicates whether a permission policy has been applied to the active document. + + + Returns the description of the permissions policy applied to the active document. + + + Returns the name of the permissions policy applied to the active document. + + + Removes all objects from the collection of the active document and disables restrictions on the active document. + + + Returns or sets the file or web site URL to visit or the email address to contact for users who need additional permissions on the active document. + + + Returns a Boolean value that indicates whether the user's license to view the active document should be cached to allow offline viewing when the user cannot connect to a rights management server. + + + Provides dialog user interface functionality for picking people or picking data. + + + Gets a Application object that represents the container application for the PickerDialog object. + + + Creates an empty object. + Returns a . + + + Gets a 32-bit integer that indicates the application in which the PickerDialog object was created. + + + Sets or gets the GUID of the Picker Dialog data handler component. + + + Returns the object to specify custom properties for data handler component. + + + Resolves the token using the Picker Dialog and retrieves the results. + Returns . + The text string to resolve. + + + Displays the Picker Dialog with already specified data handler and given options. + Returns . + Specifies whether the Picker Dialog user interface provides multiple item selection functions. + Contains existing in Picker Dialog user interface. These results are displayed in the selected item control. + + + Gets or sets the title of a picker dialog displayed in the Picker Dialog. + + + Represents the field definitions of sub-items in a object. Each PickerField object represents a column definition of a Picker dialog. + + + Gets a Application object that represents the container application for the PickerField object. + + + Gets a 32-bit integer that indicates the application in which the PickerField object was created. + + + Gets a Boolean that specifies whether the Picker field is hidden. + + + Gets the name of the Picker field. + + + The type of the Picker field. + + + A collection of objects. Each PickerField object represents a column definition of Picker dialog. + + + Gets a object that represents the container application for the PickerFields object. + + + Retrieves the count of the number of objects contained within the PickerFields collection. + + + Gets a 32-bit integer that indicates the application in which the PickerFields object was created. + + + Returns an enumerator that iterates through the collection of objects. + Returns . + + + Gets a object at the specified index. + Specifies an integer representing the index of the . + + + A collection of objects. + + + Adds a object to the collection. + Returns . + Specifies the key name of the property. + Specifies the value of the property. + + that specifies the type of the property. + + + Gets a object that represents the container application for the PickerProperties object. + + + Gets the count of the number of objects contained within the PickerProperties collection. + + + Gets a 32-bit integer that indicates the application in which the PickerProperties object was created. + + + Returns an enumerator that iterates through the collection. + Returns . + + + Gets a object at the specified index. + Specifies an integer representing the index of the object. + + + Removes a from the collection. + Specifies the identifier of the to remove. + + + Represents an object for passing a custom property. + + + Gets a object that represents the container application for the PickerProperty object. + + + Gets a 32-bit integer that indicates the application in which the PickerProperty object was created. + + + Gets the unique identifier of the associated PickerProperty object. + + + Gets the type of the Picker property. + + + Gets the value of a Picker property. + + + Represents a resolved or selected item of data. + + + Gets a object that represents the container application for the PickerResult object. + + + Gets a 32-bit integer that indicates the application in which the PickerResult object was created. + + + Represents a display name of PickerResult. + + + Gets PickerResult collection if the result of resolving results has multiple candidates. + + + Gets the field definitions of sub items in a collection. + + + Retrieves the unique identifier of the associated PickerResult object. + + + Gets or sets a non-display purpose item binding to data. + + + Gets or sets the identifier for Office Communication Server. It is used only for people picking scenario. + + + Gets or sets display purpose or non-display purpose field data of a PickerResult object. It is used for passing column values in a Picker dialog. + + + Gets the type of a PickerResult object. + + + A collection of objects. + + + Adds a object to the PickerResults collection. + Returns . + Specifies the identifier of the . + Specifies the display name of the . + Specifies the type of the . + Currently not supported. The is the identifier for Office Communication Server. It is used only for the people picking scenario. + Specifies the non- displaying item binding data. + Displays the purpose or non-display purpose field data of the . It is used for passing column values in the Picker Dialog. + + + Gets a object that represents the container application for the PickerResults object. + + + Retrieves the count of the number of objects contained within the PickerResults collection. + + + Gets a 32-bit integer that indicates the application in which the PickerResults object was created. + + + Returns . + + + Gets a PickerResult object at the specified index. + Specifies an integer representing the indexed location of the object. + + + Represents a picture effect. + + + Gets a object that represents the container application for the PictureEffect object. + + + Gets a 32-bit integer that indicates the application in which the PictureEffect object was created. + + + Deletes a picture effect. + + + Gets an object. + + + Gets or sets the position of a picture effect in a chain of composite effects. + + + Gets the type of picture effect. + + + Gets or sets a Boolean value representing the visible state of the picture effect. + + + Represents a collection of objects. + + + Gets a object that represents the container application for the PictureEffects object. + + + Gets the count of the number of objects contained within the PictureEffects collection. + + + Gets a 32-bit integer that indicates the application in which the PictureEffects object was created. + + + Deletes a object from the collection. + Specifies the index number of the object to delete. + + + Returns . + + + Inserts a picture effect in a chain of composite effects. + Returns a . + An enumeration specifying the type of picture effect. + Specifies the position of the effect in the composite chain of picture effects. + + + Gets a object at the specified index. + Specifies an integer representing the indexed location of the object. + + + Reserved for internal use. + + + + + + + + An object used to remove a portion of an image. + Returns . + + + + + + + + + + + + A collection of all the objects in the specified series in a chart. + + + + Gets the Application object in which this object was created. Read-only. + Object + + + Returns the number of objects in the collection. + Integer. + + + Returns the ID of the application in which this object was created. + Integer + + + Returns . + + + Returns a single object from a collection. + A object contained by the collection. + The index number for the object. + + + Returns the parent object for the specified object. Read-only. + Returns . + + + Represents an item within a object that contains the settings for one policy. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the information that is used to implement the policy item. Read-only. + String + + + Gets a description of the current state of the policy item. Read-only. + String + + + Gets the ID of a policy item. objects are contained in objects. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Represents a single file search criterion. + + + Returns an Application object that represents the container application for the object. + + + Returns the condition of the specified search criteria. + + + Returns the connector between two similar property test values. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the name of the specified object. + + + Returns an optional second value property test (as in a range) for the file search. + + + Returns the value of a property test for a file search. + + + A collection of objects that represent all the search criteria of a file search. Search criteria are listed in the Advanced Find dialog box (File menu, Open command, Advanced Find button). + + + Add a new object to the collection representing the search criteria of a file search. + Required String. The name of the PropertyTest object. + Required . A constant representing the condition used for the search. + Optional Object. A value used by . + Optional Object. A second value used by . + Optional MsoCondition. A constant representinat a connector such as Or or And used in the criterion. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection. + Optional Integer. The index number of the property test to be returned. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Represents the reflection effect in Office graphics. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets or sets the amount of blur, measured in points, of the shape's reflection image. + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the amount of separation, measured in points, of the reflected image from the shape. + + + Gets or sets the size, measured in percentages, of the shape's reflection image. + + + Gets or sets the amount of transparency, measured in percentages, of the shape's reflection image. + + + Gets or sets the type of the object. Read/write. + + + + + + + + + + + + + Represents the ruler for the text in the specified shape or for all text in the specified text style. Contains tab stops and the indentation settings for text outline levels. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets a object that represents outline text formatting. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Gets a collection that represents the tab stops for the specified text. Read-only. + + + + + + Contains first-line indent and hanging indent information for an outline level. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the first-line indent for the specified outline level, in points. Read/write. + Single + + + Gets or sets the left indent for the specified outline level, in points. Read/write. + Single + + + Gets the parent object for the object. Read-only. + Object + + + A collection of all the objects on the specified ruler. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Integer indicating the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a member of the collection. + + + + The index number of the object to be returned. + + + Gets the parent object for the object. Read-only. + Object + + + Corresponds to a searchable folder. + + + Adds a object the collection. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns the name of the specified object. + + + Returns a String indicating the full path of a object. + + + Returns a collection. + + + A collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that represents a subfolder of the parent object. + Required Integer. Determines which subfolder to return. + + + Represents a block of HTML script in a Microsoft Word document, on a Microsoft Excel spreadsheet, or on a Microsoft PowerPoint slide. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Returns or sets attributes added to the <SCRIPT> tag, with the exception of the LANGUAGE and ID attributes. + + + Returns or sets the ID of a object. + + + Returns or sets the scripting language of the active script. + + + Returns the location of the script anchor in the specified HTML document. + + + Returns the Parent object for the specified object. + + + Returns or sets the text contained in a block of script. + + + Returns a Shape object or InlineShape object, depending on the Microsoft Office host application. + + + A collection of objects that represent the collection of HTML scripts in the specified document. + + + Adds a object to the collection of one of the following objects: a Document or Range object in Microsoft Word; a Worksheet or Chart object in Microsoft Excel; or a Slide, SlideRange, slide Master, or title Master object in Microsoft PowerPoint. + Optional Object (Microsoft Excel only). The argument accepts an Excel Range object, which specifies the placement of the script anchor on an Excel Worksheet. You cannot insert script anchors into Excel charts. + Optional . Specifies the location of the script anchor in a document. If you’ve specified the argument, the argument isn’t used; the location of the argument determines the location of the script anchor. + Optional . Specifies the script language. + Optional String. The ID of the <SCRIPT> tag in HTML. The argument specifies an SGML identifier used for naming elements. Valid identifiers include any string that begins with a letter and is composed of alphanumeric characters; the string can also include the underscore character ( _ ). The ID must be unique within the HTML document. This parameter is exported as the ID attribute in the <SCRIPT> tag. + Optional String. Specifies attributes that are to be added to the <SCRIPT> tag (LANGUAGE and ID attributes are exported through the and parameters and should not be exported through the parameter). The default is the empty string. Attributes are separated by spaces, the same as in HTML. The Microsoft Office host application doesn’t provide any means of checking the syntax of passed attributes. + Optional String. Specifies the text contained in a block of script. The default is the empty string. The Microsoft Office host application doesn’t check the syntax of the script. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + + Returns a member of the collection. + Required Object. The ID or index number of the script to be returned. + + + Returns the Parent object for the specified object. + + + A collection of objects that determines which folders are searched when the method of the object is called. + + + Adds a search folder to a file search. + Required . The folder to add to the search. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that represents a subfolder of the parent object. + Required Integer. Determines which subfolder to return. + + + Removes the specified object from the collection. + Required Integer. The index number of the property test to be removed. + + + Corresponds to a type of folder tree that can be searched by using the object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a object. + + + Returns a value that corresponds to the type of object. + + + A collection of objects. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that corresponds to an area in which to perform a file search, such as local drives or Microsoft Outlook folders. + Required Integer. Determines which SearchScope object to return. + + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + + + + Represents a policy specified for a document type stored on a server running Office SharePoint Server 2007. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Boolean value that indicates whether you can preview items using this policy. Read-only. + Boolean + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + A description of what the server policy is and its purpose. Read-only. + String + + + Gets the ID of a server policy. Read-only. + String + + + Gets a object from the collection. Read-only. + PolicyItem + The name or index number of the PolicyItem object to be returned. + + + Gets the name of the object. Read-only. + String + + + Gets the parent object for the object. Read-only. + Object + + + Gets the information specified in the Policy Statement. Read-only. + String + + + Reserved for internal use. + + + + Returns or sets the degree of blurriness of the specified shadow. Read/write. + Single + + + + + + + + + + + Returns or sets an that represents whether to rotate the shadow when rotating the shape. Read/write. + + + + + + Returns or sets the size of the specified shadow. Read/write. + Single + + + Returns or sets the style of the specified shadow. Read/write. + + + + + + + + + Reserved for internal use. + + + + + + + + Returns or sets the background style. Read/write. + + + + + + + + + + + + + Returns the chart contained in the shape. Read-only. + + + + + + + + + + + Copies the object to the Clipboard. + + + + Cuts the object to the Clipboard or pastes it into a specified destination. + + + + + + + + + Returns a object for a specified shape that contains glow formatting properties for the shape. Read-only. + + + + + + + Returns whether a shape contains a chart. Read-only. + + + + + + + + + + + + + + + + + + + + + + + + Returns a object for a specified shape that contains reflection formatting properties for the shape. Read-only. + + + + + + + + + + + + + + + Returns or sets an that represents the shape style of shape range. Read/write. + + + + + + Gets top-level class for interacting with a SmartArt graphic. + + + Returns a object for a specified shape that contains soft edge formatting properties for the shape. Read-only. + + + + + + + + Returns a object that contains text formatting for the specified shape. Read-only. + + + + + + + Sets or gets the title of a file dialog box displayed using the object. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A SharedWorkspace object allows the developer to add the active document to a Microsoft Windows SharePoint Services document workspace on the server and to manage other objects in the shared workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a Boolean value that indicates whether or not the active document is currently saved in and connected to a shared workspace. + + + Creates a new document workspace on the server and adds the active document to the new shared workspace. + Optional String. The URL for the parent folder in which the new shared workspace is to be created. If you do not supply a URL, the new shared workspace is created in the user's default server location. + Optional String. The name of the new shared workspace. Defaults to the name of the active document without its file extension. For example, if you create a shared workspace for Budget.xls, the name of the new shared workspace becomes "Budget". + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current shared workspace and all data within it. + + + Disconnects the local copy of the active document from the shared workspace. + + + Returns a collection that represents the list of files stored in the document library associated with the current shared workspace. + + + Returns a collection that represents the list of subfolders in the document library associated with the current shared workspace. + + + Returns the date and time when the method was most recently called. + + + Returns a collection that represents the list of links saved in the current shared workspace. + + + Returns a collection that represents the list of members in the current shared workspace. + + + Returns or sets the name of the specified object. + + + Returns the Parent object for the specified object. + + + Refreshes the local cache of the object's files, folders, links, members, and tasks from the server. + + + Removes the active document from the shared workspace. + + + Designates the location of the public copy of a shared document to which changes should be published after the document has been revised in a separate document workspace. + + + Returns a collection that represents the list of tasks in the current shared workspace. + + + Returns the top-level Uniform Resource Locator (URL) of the shared workspace. + + + The SharedWorkspaceFile object represents a file saved in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns the Parent object for the specified object. + + + Returns the full uniform resource locator (URL) and file name of the shared workspace file. + + + A collection of the objects in the current shared workspace. + + + Adds a file to the document library in a shared workspace. + Required String. The path and filename of the file to be added to the current shared workspace. + Optional . The subfolder in which to place the file, if not the main document library folder within the shared workspace. Add the file to the main document library folder by leaving this optional argument empty. + Optional Boolean. True to overwrite an existing file by the same name. Default is False. + Optional Boolean. True to keep the local copy of the document synchronized with the copy in the shared workspace. Default is False. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Files collection of the shared workspace. + Optional Integer. Returns the SharedWorkspaceFile at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceFolder object represents a folder in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current shared workspace folder and all data within it. + Optional Boolean. True to delete the folder without warning even if the folder contains files. Default is False. + + + Returns the name of a subfolder within the main document library folder of a shared workspace. + + + Returns the Parent object for the specified object. + + + A collection of the objects in the current shared workspace. + + + Adds a folder to the document library in a shared workspace. + Required String. The name of the folder to be added to the current shared workspace. + Optional . The subfolder in which to place the new folder, if not the main document library folder within the shared workspace. Add the folder to the main document library folder by leaving this optional argument empty. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Folders collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceFolder at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceLink object represents a URL link saved in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns or sets a descriptive String value for the specified object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns or sets the optional notes associated with a shared workspace link. + + + Returns the Parent object for the specified object. + + + Uploads changes made programmatically to a to the server. + + + Returns or sets the uniform resource locator (URL) of the link saved in the shared workspace. + + + A collection of the objects in the current shared workspace. + + + Adds a link to the list of links in a shared workspace. + Required Object. The URL of the web site to which a link is being added. + Optional Object. Optional description of the link. + Optional String. Optional notes about the link. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Links collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceLink at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceMember object represents a user who has rights in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns the domain and user name of the specified in the format domain\user. + + + Returns the email name of the specified in the format user@domain.com. + + + Reserved for internal use. + + + Returns the name of the specified object. + + + Returns the Parent object for the specified object. + + + A collection of the objects in the current shared workspace. + + + Adds a member to the list of members in a shared workspace. + Required String. The new member's email address in the format . Raises an error if the user is not a valid candidate for membership in the shared workspace. + Required String. The new member's Windows user name in the format . + Required String. The friendly name to display for the new member. + Optional String. An optional role that determines the tasks the new member can accomplish in the shared workspace; for example, "Contributor". An invalid role name raises an error. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Members collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceMember at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + The SharedWorkspaceTask object represents a task in a shared document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns or sets the to whom the task is assigned. + + + Returns the friendly name of the member who created the shared workspace object. + + + Returns the date and time when the shared workspace object was created. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the current object. + + + Returns or sets a descriptive String value for the specified object. + + + Returns or sets the optional due date and time of a object. + + + Returns the name of the user who last modified the object. + + + Returns the date and time when the shared workspace object was last modified. + + + Returns the Parent object for the specified object. + + + Returns or sets the status of the specified shared workspace task. + + + Uploads changes made programmatically to a to the server. + + + Returns or sets the status of the specified shared workspace task. + + + Returns or sets the title of a object. + + + A collection of the objects in the current shared workspace. + + + Adds a task to the list of tasks in a shared workspace and returns a object. + Required String. The title of the new task. + Optional . The status of the new task. Default is msoSharedWorkspaceTaskStatusNotStarted. + Optional . The priority of the new task. Default is msoSharedWorkspaceTaskPriorityNormal. + Optional . The member to whom the new task is assigned. + Optional String. The description of the new task. + Optional Date. The due date of the new task. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the Tasks collection of the shared workspace. + Required Integer. Returns the SharedWorkspaceTask at the position specified. does not correspond to the order in which the items are displayed in the Shared Workspace pane, and is not affected by re-sorting the display. + + + Returns a Boolean value that indicates whether the number of items in the collection has exceeded the 99 that can be displayed in the Shared Workspace task pane. + + + Returns the Parent object for the specified object. + + + Corresponds to a digital signature that is attached to a document. + + + Returns an Application object that represents the container application for the object. + + + Determine if the digital certificate that corresponds to the specified object is attached to the document. + + + Gets a Boolean value indicating whether the user can set properties of the object. Read-only. + Boolean + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Deletes the specified object from the collection. + + + Gets information about a signature. Read-only. + + + + + + Returns an Object representing the date on which the digital signature that corresponds to the object will expire. + + + Determine if the digital certificate that corresponds to the object has expired. + + + Determine if the digital certificate that corresponds to the object has been revoked by the issuer of the certificate. + + + Gets a value indicating whether this is a signature line. Read-only. + Boolean + + + Gets a Boolean value indicating whether the document was signed successfully. Read-only. + Boolean + + + Returns a String representing the name of the issuer of the digital certificate that corresponds to the object. + + + Determines if the digital signature that corresponds to the object is a valid signature. + + + Returns the Parent object for the specified object. + + + Gets a object that provides access to various properties of a signature packet. Read-only. + SignatureSetup + + + Displays details related to a signature packet. + + + Creates a signature packet. + The signature line graphic image. + The suggested signer. + The additional signature line. + The e-mail address of the suggested signer. + + + Gets the object associated with a object that is a signature line. Read-only. + Object + + + Returns an Object representing the date and time that the digital certificate corresponding to the object was attached to the document. + + + Returns a String representing the name of the person who attached the digital certificate that corresponds to the object to the document. + + + Gets a value representing the sort order of the signatures in a packet with multiple signatures. Read-only. + Integer + + + Indicates additional information about a signature. + + + Specifies the local signing time. + + + Specifies the application name. + + + Specifies the application version. + + + Specifies the Office version. + + + Specifies the Windows version. + + + Specifies the number of monitors + + + Specifies the horizontal resolution. + + + Specifies the vertical resolution. + + + Specifies the color depth. + + + Specifies the signed data. + + + Specifies the document preview image. + + + Specifies the IP form hash. + + + Specifies the IP current view. + + + Specifies the signature type. + + + Specifies the hash algorithm. + + + Specifies the Should Show View Warning setting. + + + Specifies the suggested signer delegate. + + + Specifies the set of suggested signer's delegates. + + + Specifies the suggested signer's delegate's signature line. + + + Specifies the set of suggested signer's delegate's signature lines. + + + Specifies the suggested signer's delegate's e-mail. + + + Indicates whether an email for a suggested signer delegate has been specified. + + + Represents the information used to create a digital or in-document signature. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the results from the verification of a digital certificate. Read-only. + + + + + + Gets a value representing the results of the verification of the hashed contents of a signed document. Read-only. + + + + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Displays a specified detail related to a digital certificate. + Object + An enumerated value specifying which certificate detail to display. + + + Displays a specified detail related to a signature. + Object + An enumerated value specifying which signature detail to display. + + + Gets a Boolean value indicating whether the digital certificate is expired. Read-only. + Boolean + + + Gets a Boolean value indicating whether the digital certificate is revoked. Read-only. + Boolean + + + Gets a Boolean value indicating whether the digital certificate used to digitally sign a document comes from a trusted source. Read-only. + Boolean + + + Gets a Boolean value indicating whether the signature was successfully validated following signature verification. Read-only. + Boolean + + + Gets a Boolean value indicating whether the object is read-only. Read-only. + Boolean + + + Displays a dialog box containing information about a digital certificate following vertification of the user from a thumbprint. + Contains information about the signer identified by the thumbprint. + + + Displays a dialog box that allows users to select which signature certificate to use for signing a document. + Contains a handle to the window containing the certificate selection dialog box. + + + Displays the selected or default digital certificate. + Contains the handle to the window containing the Certificate dialog box. + + + Gets or sets a value containing comments included in a signature packet. Read/write. + String + + + Gets or sets the value of the image used to sign the document. Read/write. + IPictureDisp + + + Gets a value identifying an installed signature provider add-in. Read-only. + String + + + Gets or sets the value of the signature text used to sign this document. Read/write. + String + + + Indicates the signature line image. + + + The SoftwareRequired image. + + + The Unsigned image. + + + The SignedValid image. + + + The SignedInvalid image. + + + + + + Represents a signature provider add-in. + + + Gets a signature line image. + IPictureDisp + Contains the name if the signature line graphic. + Specifies initial settings of the signature provider add-in. + Specifies information about the signature provider add-in. + + + Queries the signature provider add-in for various details. + Object + Contains an enumerated value representing the type of information to query the add-in for. + + + Allows a signature provider add-in to create a hash value for the document that you can use to determine if the document contents were tampered with after digital signing. + Array + Provides a way to query the host application for permission to continue the hashing process. + Contains the data stream. + + + Used to display a dialog box informing the user that the signing process has completed and providing additional functionality for the add-in. + Allows the host application to obtain the handle to the window containing the displayed dialog box. + Contains initial settings of the signature provider. + Contains information about the signature provider add-in. + + + Provides a signature provider add-in the opportunity to display details about a signed signature line and display additional stored information such as a secure time-stamp. + Contains the handle to the window containing the signature details. + Specifies initial settings of the signature provider. + Specifies information about the signed signature line. + Represents a steam of data or binary large object of XML. + Contains a value representing the results of verificating the signature content. + Contains a value representing the results of verificating the signing certification. + + + Provides a signature provider add-in the opportunity to display the Signature Setup dialog box to the user. + Contains the handle to the window containing the Signature Setup dialog box. + Specifies initial settings of the signature provider. + + + Provides a signature provider add-in the opportunity to display the Signature dialog box to users, allowing them to specify their identity and then be authenticated. + Contains the handle to the window containing the Signature dialog box. + Specifies initial settings of the signature provider. + Specifies information about the signature provider. + + + Used to sign the XMLDSIG template. + Provides a way to query the host application for permission to continue the verification operation. + Specifies configuration information about a signature line. + Specifies information captured from the signing ceremony. + Represents a steam of data containing XML, which represents an XMLDSIG object. + + + Verifies a signature based on the signed state of the document and the legitimacy of the certificate used for signing. + Provides a way to query the host application for permission to continue the verification operation. + Specifies configuration information about a signature line. + Specifies information captured from the signing ceremony. + Represents a steam of data containing XML, which represents an XMLDSIG object. + Specifies the status of the signature verification action. + Specifies the status of the signing certificate verification. + + + Specifies properties of a signature provider. + + + The URL of the signature provider. + + + Hash algorithm used to hash the data in the file. + + + + Indicates that the signature provider only uses a custom user interface. + + + + + + + + + A collection of objects that correspond to the digital signatures attached to a document. + + + Returns a object that represents a new e-mail signature. + + + Creates a signature packet when digitally signing a document. + + + + Represents the ID of the signature provider. + + + Adds lines to a document where signatures are collected. + Signature + Represents the ID of the signature provider. + + + Returns an Application object that represents the container application for the object. + + + Gets a Boolean value indicating whether you can add a signature line to a document. Read-only. + Boolean + + + Commits all changes of the specified collection to disk. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object that corresponds to one of the digital signatures with which the document is currently signed. + Required Integer. Determines which Signature object to return. + + + Returns the Parent object for the specified object. + + + Gets or sets a Boolean value indicating whether the Signature task pane should be displayed. Read/write. + Boolean + + + Gets or sets a value that acts as a filter on the available objects for a document. Read/write. + + + + + + Represents the information used to set up a signature packet. + + + Gets or sets any additional XML information added to the signature during setup. Read/write. + String + + + Gets or sets a Boolean value specifying whether the signer can enter comments in the Sign dialog box. Read/write. + Boolean + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the ID of the signature provider for a document. Read-only. + String + + + Gets a Boolean value indicating whether the object is read-only. Read-only. + Boolean + + + Gets or sets a Boolean value indicating whether the date the document was signed should be displayed. Read/write. + Boolean + + + Gets a value identifying an installed signature provider add-in. Read-only. + String + + + Gets or sets the instructions for signing the document. Read/write. + String + + + Gets or sets the name of the principle signer of the document. Read/write. + String + + + Gets or sets the e-mail address of the signer of the document. Read/write. + String + + + Gets or sets the second line of suggested signer information (for example, title). Read/write. + String + + + Specifies properties of a signature. + + + A signature not generated by Office. + + + + A signature that is not visible in the content of the document. + + + + A signature that is visible in the content of the document. + + + Specifies the maximum number of the signature types available in the current version of Office. + + + The top level class for interacting with a SmartArt graphic. Specifies constants that define the types of SmartArt nodes. + + + Gets a object containing all of the nodes within the SmartArt diagram. + + + Gets a object that represents the container application for the SmartArt object. + + + Gets or sets the Smart Art color style applied to the Smart Art graphic. + + + Gets a 32-bit integer that indicates the application in which the SmartArt object was created. + + + Gets or sets the Smart Art layout associated with the Smart Art graphic. + + + Gets the children of the root node of the SmartArt diagram. + + + Gets the calling object. + + + Gets or sets the SmartArt quick style applied to the SmartArt graphic. + + + Resets the SmartArt graphic to its original state. + + + Gets or sets the state of the SmartArt diagram with regard to (left-to-right) LTR or (right-to-left) RTL, if the diagram supports reversal. + + + Represents the color scheme for the SmartArt diagram. + + + Gets an Application object that represents the container application for the SmartArtColor object. + + + Retrieves the primary category name associated with the SmartArt color style. + + + Returns a 32-bit integer that indicates the application in which this object was created. + + + Returns the description of the SmartArt color style. + + + Returns the unique identifier of the associated SmartArt color style. + + + Returns the string name of the SmartArt color style. + + + Returns the calling object. + + + A collection of SmartArt color styles. + + + Gets a object that represents the container application for the SmartArtColors object. + + + Gets the count of the number of SmartArtColor objects contained within the SmartArtColors collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtColors object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the identifier of the SmartArt color. + + + Returns the calling object. + + + Represents a SmartArt diagram. + + + Gets a object that represents the container application for the SmartArtLayout object. + + + Gets the primary category name associated with the SmartArt layout. + + + Gets a 32-bit integer that indicates the application in which the SmartArtLayout object was created. + + + Gets the description of the SmartArt layout. + + + Retrieves the unique identifier of the associated SmartArt layout. + + + Gets the string name of the SmartArt layout. + + + Gets the calling object. + + + Represents a collection of SmartArt layout diagrams. + + + Gets a object that represents the container application for the SmartArtLayouts object. + + + Gets the count of the number of objects contained within the SmartArtLayouts collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtLayouts object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the location of the object. + + + Gets the calling object. + + + A single semantic node within the data model of a SmartArt graphic. + + + Adds a new SmartArt node to the data model in the way specified by the value, and . + Specifies the location of the SmartArtNode in the data model. For example, or . + Specifies the type of the added SmartArtNode. For example, or . + + + Gets an Application object that represents the container application for the SmartArtNode object. + + + Gets a 32-bit integer that indicates the application in which the SmartArtNode object was created. + + + Removes the current SmartArt node. + + + Demotes the current node a single level within the data model. + + + Returns true if this node is a hidden node in the data model. + + + Increases the size of the SmartArt. Mimics the behavior of the Larger button on the Microsoft Office Fluent Ribbon Format tab for SmartArt. + + + Returns the node’s level in the hierarchy. + + + Returns the child nodes associated with this SmartArt Node. + + + Returns or sets the associated with this node if there is one. + + + Gets the calling object. + + + Returns the parent SmartArtNode of this SmartArtNode. + + + Promotes the current node (and all its children) a single level within the data model. + + + Swaps a node with the next node in the bulleted list. This method reorders the node’s entire family. + + + Swaps a node with the previous node in the bulleted list. This method reorders the node’s entire family. + + + Returns the shape range associated with this SmartArtNode object. + + + Decreases the size of the SmartArt. Mimics the behavior of the Smaller button on the Microsoft Office Fluent Ribbon UI Format tab for SmartArt. + + + Returns the text associated with the SmartArtNode object. + Returns a . + + + Returns the type of SmartArt node. + + + Represents a collection of nodes within a SmartArt diagram. + + + Adds a new object to the diagram with specified text. + + + Gets a object that represents the container application for the SmartArtNodes object. + + + Gets the number of objects contained within the SmartArtNodescollection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtNodes object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or a string the location of the object. + + + Gets the calling object. + + + Represents a SmartArt quick style + + + Gets a object that represents the container application for the SmartArtQuickStyle object. + + + Gets the primary category name associated with the SmartArt quick style. + + + Gets a 32-bit integer that indicates the application in which the SmartArtQuickStyle object was created. + + + Gets the description of the SmartArt quick style. + + + Gets the unique identifier of the associated SmartArt quick style. + + + Gets the string name of the SmartArt quick style. + + + Returns the calling object. + + + Represents a collection of SmartArt quick styles. + + + Gets a object that represents the container application for the SmartArtQuickStyles object. + + + Gets the count of the number of objects contained within the SmartArtQuickStyles collection. + + + Gets a 32-bit integer that indicates the application in which the SmartArtQuickStyles object was created. + + + Returns . + + + Gets a object at the specified index or with the specified unique identifier. + Specifies either the index or the location of the object. + + + Gets the calling object. + + + The SmartDocument property of the Microsoft Office Word 2003 Document object and the Microsoft Office Excel 2003 Workbook object returns a SmartDocument object. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Displays a dialog box which allows the user to choose an available XML expansion pack to attach to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + Optional Boolean. True displays all available XML expansion packs installed on the user's computer. False displays only XML expansion packs applicable to the active document. Default value is False. + + + Refreshes the Document Actions task pane for the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Returns or sets the ID, often a globally unique identifier (GUID), which identifies the XML expansion pack attached to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Returns or sets an absolute URL that provides the complete path to the XML expansion pack file attached to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. + + + Represents the soft edges effect in Office graphics. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the size, measured in points, of the soft edge effect of the shape. + + + Gets or sets the type of the object. Read/write. + + + + + + Use the Sync object to manage the synchronization of the local and server copies of a shared document stored in a Windows SharePoint Services document workspace. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns a constant which indicates the type of the most recent document synchronization error. + + + Compares the local version of the shared document to the version on the server. + + + Returns the date and time when the local copy of the active document was last synchronized with the server copy. + + + Opens a different version of the shared document alongside the currently open local version. + Required . + + + Returns the Parent object for the specified object. + + + Updates the server copy of the shared document with the local copy. + + + Resolves conflicts between the local and the server copies of a shared document. + Required . + + + Returns the status of the synchronization of the local copy of the active document with the server copy. + + + Resumes synchronization between the local copy and the server copy of a shared document. + + + Displays the friendly name of the user who last saved changes to the server copy of a shared document. + + + Represents a single tab stop. The TabStop2 object is a member of the collection. + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Removes the specified custom tab stop + + + Gets a 32-bit integer that represents the Microsoft Office application in which the + + object was created. Read-only. + Integer + + + Gets the parent of the object. + +Read-only. + Object + + + Gets or sets the position of a tab stop relative to the left margin. Read/write. + Single + + + Gets or sets the type of the object. Read/write. + + + + + + The collection of objects. + + + Adds a new tab stop to the specified object. + + + + The type of tab stop to add. + The horizontal position of the new tab stop relative to the left edge of the text frame. Numeric values are evaluated in points; strings are evaluated in the units specified and can be in any measurement unit supported by the Microsoft Office product. + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Gets the number of items in the + + collection. Read-only. + Integer + + + Gets a 32-bit integer that represents the Microsoft Office application in which the + + object was created. Read-only. + Integer + + + Gets or sets the default spacing between tab stops. Read/write. + Single + + + + Gets an individual object from the collection. + + + + The number of the object to return. + + + Gets the parent of the specified object. Read-only. + Object + + + + Gets an Application object that represents the container application + +for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the + + object was created. Read-only. + Integer + + + Gets or sets the index of the object. Read/write + Integer + + + Gets or sets the spacing between text columns in a object. Read/write. + Single + + + Gets or sets the direction of text in the object. Read/write. + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + Returns or sets a value that specifies if the text on a shape is rotated if the shape itself is being rotated. + + + + + + + + + + + + + Represents the text frame in a Shape or ShapeRange objects. + + + Adds period (.) punctuation to the right side of the text contained in object for left-to-right languages and on the left side for right-to-left languages. + + + Used without an object qualifier, this property returns an Application + object that represents the current instance of the Microsoft Office application. Used with an object qualifier, this property returns an Application object that represents the creator of the object. When used with an OLE Automation object, it returns the object's application. Read-only. + Object + + + Gets the height, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the left coordinate, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the top coordinate, in points, of the text bounding box for the specified text. Read-only. + Single + + + Gets the width, in points, of the text bounding box for the specified text. Read-only. + Single + + + Changes the case of a object to one of the values in the enumeration. + Specifies the type of change to make to the text. + + + Read-only. + + + + The first character in the returned range. + The number of characters to be returned. + + + Copies a object. + + + Gets the number of items in the + + collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the + + object was created. Read-only. + Integer + + + Removes a portion or all of the text from a range of text. + + + Deletes a object. + + + Searches a object for a subset of text. + TextRange2 + Contains the text to find. + Specifies the point in the text range to start the search. + Specifies if the target text must exactly match the case of the search text. + Specifies that only whole words will be searched. + + + Returns a Font + object that represents character formatting for the object. Read-only. + Font + + + + Inserts text to the right of the existing text in the object. + TextRange2 + Contains the text to be inserted. + + + Inserts text to the left of the existing text in the object. + TextRange2 + Contains the text to be inserted. + + + Inserts a symbol from the specified font set into the range of text represented by the object. + TextRange2 + The name of the font set. + The number of the symbol. + Indicates whether the value of the symbol is specified as a unicode value. + + + Gets the range of text specified by the index number from the object. + TextRange2 + The index number of the text range. + + + Gets or sets the value of the object. Read/write. + MsoLanguageID + + + Gets the length of a text range. Read-only. + Integer + + + Returns the specified subset of text lines. Read-only. + + + + The first line in the returned range. + The number of lines to be returned. + + + Returns a object that represents the specified subset of left-to-right text runs. A text run consists of a range of characters that share the same font attributes. + + + + Returns the paragraph formatting for the specified text. Read-only. + + + + + + Gets the specified subset of text paragraphs. Read-only. + + + + The first paragraph in the returned range. + The number of paragraphs to be returned. + + + Gets the parent object for the object. + +Read-only. + Object + + + Pastes the contents of the Clipboard into the object. + TextRange2 + + + Replaces the text range with the contents of the Clipboard in the format specified. If the paste succeeds, this method returns a object including the text range that was pasted. + TextRange2 + Determines the format for the Clipboard contents when they're inserted into the document. + + + Removes all period (.) punctuation from the text in the object. + + + Finds specific text in a text range, replaces the found text with a specified string, and returns a object that represents the first occurrence of the found text. Returns Nothing if no match is found. + TextRange2 + The text to search for. + The text you want to replace the found text with. + The position of the character (in the specified text range) after which you want to search for the next occurrence of . For example, if you want to search from the fifth character of the text range, specify 4 for . If this argument is omitted, the first character of the text range is used as the starting point for the search. + Determines whether a distinction is made on the basis of case. + Determines whether only whole words are searched. + + + Gets the coordinates of the vertices of the text bounding box for the specified text range. Read-only. + Returns the position (in points) of the X coordinate of the first vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the first vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the second vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the second vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the third vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the third vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the X coordinate of the fourth vertex of the bounding box for the text within the specified text range. + Returns the position (in points) of the Y coordinate of the fourth vertex of the bounding box for the text within the specified text range. + + + Returns a object that represents the specified subset of right-to-left text runs. A text run consists of a range of characters that share the same font attributes. + + + Gets the specified subset of text runs. A text run consists of a range of characters that share the same font attributes. Read-only. + + + + The first run in the returned range. + The number of runs to be returned. + + + Selects the object. + + + Returns the specified subset of text sentences. Read-only. + + + + The first sentence in the returned range. + The number of sentences to be returned. + + + Gets the starting point of the specified text range. Read-only. + Integer + + + Gets or sets a String value that represents the text in a text range. Read/write. + String + + + Returns the specified text minus any trailing spaces. + + + + + + Gets the specified subset of text words. Read-only. + + + + The first word in the returned range. + The number of words to be returned. + + + Represents a color in the color scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the parent object for the object. Read-only. + Object + + + Gets or sets a value of a color in the color scheme of a Microsoft Office theme. Read/write. + MsoRGBType + + + Gets the index value for a color scheme of a Microsoft Office theme. Read-only. + + + + + + Represents the color scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets an object that represents a color in the color scheme of a Microsoft Office theme. + ThemeColor + The index value of the object. + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets a value that represents a color in the color scheme of a Microsoft Office theme. + MsoRGBType + The name of the custom color. + + + + Loads the color scheme of a Microsoft Office theme from a file. + The name of the color theme file. + + + Gets the parent object for the object. Read-only. + Object + + + Saves the color scheme of a Microsoft Office theme to a file. + The name of the file. + + + Represents the effects scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Loads the effects scheme of a Microsoft Office theme from a file. + The name of the effect scheme file. + + + Gets the parent object for the object. Read-only. + Object + + + Represents a container for the font schemes of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets or sets the name of a font in the font scheme of a Microsoft Office theme. Read/write. + String + + + Gets the parent object for the object. Read-only. + Object + + + Represents a collection of major and minor fonts in the font scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets one of the three language fonts contained in the collection. + ThemeFont + The index value of the object. + + + Gets the parent object for the object. Read-only. + Object + + + Represents the font scheme of a Microsoft Office 2007 theme. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Loads the font scheme of a Microsoft Office theme from a file. + The name of the font scheme file. + + + Gets the font setting for the "Headings" in a document. Read-only. + + + + + + Gets the font settings for the "Body" of a document. Read-only. + + + + + + Gets the parent object for the object. Read-only. + Object + + + Saves the font scheme of a Microsoft Office theme to a file. + The name of the file. + + + Reserved for internal use. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns or sets the project text state for the specified object. Read/write + + + + + + + + + + + + + + Returns the Z order of the specified object. Read/write. + Single + + + + + + + + + + Returns an Application object that represents the container application for the object. + Object + + + + Returns a 32-bit integer that indicates the application in which this object was created. Read-only. + Integer + + + + + + The UserPermission object associates a set of permissions on the active document with a single user and an optional expiration date. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the optional expiration date of the permissions on the active document assigned to the user associated with the specified object. + + + Returns the Parent object for the specified object. + + + Returns or sets an Integer value representing the permissions on the active document assigned to the user associated with the specified object. + + + Removes the specified object from the collection of the active document. + + + Returns the email name of the user whose permissions on the active document are determined by the specified object. + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + + + + Reserved for internal use. + + + + + + + + + Represents the default font used when documents are saved as Web pages for a particular character set. + + + Returns an Application object that represents the container application for the object. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + Returns or sets the fixed-width font setting in the host application. + + + Returns or sets the fixed-width font size setting in the host application in points. + + + Returns or sets the proportional font setting in the host application. + + + Returns or sets the proportional font size setting in the host application in points. + + + A collection of objects that describe the proportional font, proportional font size, fixed-width font, and fixed-width font size used when documents are saved as Web pages. + + + Returns an Application object that represents the container application for the object. + + + Returns an Integer indicating the number of items in the specified collection. + + + Returns a 32-bit integer that indicates the application in which the specified object was created. + + + + Returns a object from the collection for a particular value of . + Required . The specified character set. + + + Represents a single workflow task in a collection. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the name of the person that the workflow task is assigned to. Read-only. + String + + + Gets the name of the person that created the workflow task. Read-only. + String + + + Gets the date that a workflow task was created. Read-only. + DateTime + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of a workflow task. Read-only. + String + + + Gets the date that a workflow task is due. Read-only. + DateTime + + + Gets the ID of the Sharepoint list item. Read-only. + String + + + Gets the ID of the list containing the workflow task. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Displays a workflow task edit user interface for the specified object. + Integer + + + Gets the ID of the workflow associated with a workflow task. Read-only. + String + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets the number of items in the collection. Read-only. + Integer + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + WorkflowTask + The index number of the WorkflowTask object to be returned. + + + Represents one of the workflows available for the current document. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + Gets the description of a workflow template. Read-only. + String + + + Gets the name of the document library associated with the workflow template. Read-only. + String + + + Gets the URL address of the document library where workflow templates are stored. Read-only. + String + + + Gets the ID of a template used to create a workflow instance. Read-only. + String + + + Gets the name of the object. Read-only. + String + + + Displays a workflow specific configuration user interface for the specified object. + Integer + + + Represents a collection of objects. + + + Gets an Application object that represents the container application for the object. Read-only. + Object + + + Gets a Long indicating the number of items in the WorkflowTemplates collection. Read-only. + Long + + + Gets a 32-bit integer that indicates the application in which the object was created. Read-only. + Integer + + + + Gets a object from the collection. Read-only. + WorkflowTemplate + The index number of the WorkflowTemplate object to be returned. + + + Specifies the point on the specified axis where the other axis crosses. + + + Microsoft Excel sets the axis crossing point. + + + The CrossesAt property specifies the axis crossing point. + + + The axis crosses at the maximum value. + + + The axis crosses at the minimum value. + + + Specifies the type of axis group. + + + Primary axis group. + + + Secondary axis group. + + + Specifies the axis type. + + + Axis displays categories. + + + Axis displays data series. + + + Axis displays values. + + + Specifies the shape used with the 3-D bar or column chart. + + + Box. + + + Pyramid, coming to point at value. + + + Pyramid, truncated at value. + + + Cylinder. + + + Cone, coming to point at value. + + + Cone, truncated at value. + + + Specifies the weight of the border around a range. + + + Hairline (thinnest border). + + + Medium. + + + Thick (widest border). + + + Thin. + + + Specifies the type of the category axis. + + + Axis groups data by an arbitrary set of categories. + + + Axis groups data on a time scale. + + + Excel controls the axis type. + + + Specifies the position of the chart element. + + + Automatically sets the position of the chart element. + + + Specifies a specific position for the chart element. + + + Specifies the type of the chart item. + + + Data label. + + + Chart area. + + + Series. + + + Chart title. + + + Walls. + + + Corners. + + + Data table. + + + Trend line. + + + Error bars. + + + X error bars. + + + Y error bars. + + + Legend entry. + + + Legend key. + + + Shape. + + + Major gridlines. + + + Minor gridlines. + + + Axis title. + + + Up bars. + + + Plot area. + + + Down bars. + + + Axis. + + + Series lines. + + + Floor. + + + Legend. + + + HiLo lines. + + + Drop lines. + + + Radar axis labels. + + + Nothing. + + + Leader lines. + + + Display unit label. + + + PivotChart field button. + + + PivotChart drop zone. + + + + + + + + + + + + + + + + Specifies how pictures are displayed on a column, bar picture chart, or legend key. + + + Picture is sized to a specified number of units and repeated the length of the bar. + + + Picture is sized to repeat a maximum of 15 times in the longest stacked bar. + + + Picture is stretched the full length of stacked bar. + + + Specifies the values displayed in the second chart in a pie chart or a bar of pie chart. + + + Second chart displays the smallest values in the data series. The number of values to display is specified by the SplitValue property. + + + Second chart displays values less than some percentage of the total value. The percentage is specified by the SplitValue property. + + + Arbitrary slides are displayed in the second chart. + + + Second chart displays values less than the value specified by the SplitValue property. + + + Specifies the chart type. + + + 3D Clustered Column + + + Stacked Column + + + 100% Stacked Column + + + 3D Clustered Column + + + 3D Stacked Column + + + 3D 100% Stacked Bar + + + Clustered Bar + + + Stacked Bar + + + 100% Stacked Bar + + + 3D Clustered Bar + + + 3D Stacked Bar + + + 3D 100% Stacked Bar + + + Stacked Line + + + 100% Stacked Line + + + Line with Markers + + + Stacked Line with Markers + + + 100% Stacked Line with Markers + + + Pie of Pie + + + Exploded Pie + + + Exploded 3D Pie + + + Bar of Pie + + + Scatter with Smoothed Lines + + + Scatter with Smoothed Lines and No Data Markers + + + Scatter with Lines + + + Scatter with Lines and No Data Markers + + + Stacked Area + + + 100% Stacked Area + + + 3D Stacked Area + + + 100% Stacked Area + + + Exploded Doughnut + + + Radar with Data Markers + + + Filled Radar + + + 3D Surface + + + 3D Surface (wireframe) + + + Surface (Top View) + + + Surface (Top View wireframe) + + + Bubble + + + Bubble with 3D effects + + + High-Low-Close + + + Open-High-Low-Close + + + Volume-High-Low-Close + + + Volume-Open-High-Low-Close + + + Clustered Cone Column + + + Stacked Cylinder Bar + + + 100% Stacked Cylinder Column + + + Clustered Cylinder Bar + + + Stacked Cylinder Bar + + + 100% Stacked Cylinder Bar + + + 3D Cylinder Column + + + Clustered Cone Column + + + Stacked Cone Column + + + 100% Stacked Cone Column + + + Clustered Cone Bar + + + Stacked Cone Bar + + + 100% Stacked Cone Bar + + + 3D Cone Column + + + Clustered Pyramid Column + + + Stacked Pyramid Column + + + 100% Stacked Pyramid Column + + + Clustered Pyramid Bar + + + Stacked Pyramid Bar + + + 100% Stacked Pyramid Bar + + + 3D Pyramid Column + + + 3D Column + + + Line + + + 3D Line + + + 3D Pie + + + Pie + + + Scatter + + + 3D Area + + + Area + + + Doughnut + + + Radar + + + Specifies the color of a selected feature such as border, font, or fill. + + + Automatic color. + + + No color. + + + Specifies global constants used in Microsoft Excel. + + + -4105 + + + -4111 + + + -4114 + + + 2 + + + 3 + + + -4099 + + + -4103 + + + -1 + + + -4142 + + + 0 + + + 1 + + + 1 + + + -4017 + + + -4108 + + + 9 + + + 8 + + + 2 + + + 16 + + + 4 + + + 2 + + + -4117 + + + 5 + + + 1 + + + 1 + + + 17 + + + -4124 + + + -4125 + + + -4126 + + + 18 + + + 15 + + + -4127 + + + 2 + + + -4130 + + + -4131 + + + 13 + + + 11 + + + 14 + + + 12 + + + -4134 + + + 2 + + + 4 + + + 3 + + + 4 + + + 3 + + + 3 + + + 2 + + + 9 + + + 2 + + + -4152 + + + 3 + + + 10 + + + 4 + + + 5 + + + 3 + + + 2 + + + 2 + + + 1 + + + 1 + + + 5 + + + 4 + + + -4160 + + + 2 + + + 3 + + + Indicates the position of data labels relative to the data markers. + + + Data label centered on data point or inside bar or pie. + + + Data label positioned above point. + + + Data label positioned below point. + + + Data label positioned at bottom of bar or pie. + + + Data label positioned at top of bar or pie. + + + Data label positioned at top of bar or pie. + + + Data label positioned arbitrarily. + + + Data label positioned arbitrarily. + + + Office application controls position of data label. + + + Data label positioned at bottom of bar or pie. + + + Data label centered on data point or inside bar or pie. + + + Specifies the type of data label to apply. The default is typically . + + + No data labels. + + + Value for the point (assumed if this argument isn't specified). + + + Percentage of the total. Available only for pie charts and doughnut charts. + + + Category for the point. + + + Percentage of the total, and category for the point. Available only for pie charts and doughnut charts. + + + Show the size of the bubble in reference to the absolute value. + + + Specifies how blank cells are plotted on a chart. + + + Values are interpolated into the chart. + + + Blank cells are not plotted. + + + Blanks are plotted as zero. + + + Indicates numeric units of measurement. + + + Specifies units of hundreds. + + + Specifies units of thousands. + + + Specifies units of tens of thousands. + + + Specifies units of hundreds of thousands. + + + Specifies units of millions. + + + Specifies units of tens of millions. + + + Specifies units of hundreds of millions. + + + Specifies units of thousands of millions. + + + Specifies units of mllions of millions. + + + Specifies custom units. + + + No units are displayed. + + + Specifies the end style for error bars. + + + Caps applied. + + + No caps applied. + + + Specifies which axis values are to receive error bars. + + + Bars run parallel to the Y axis for X-axis values. + + + Bars run parallel to the X axis for Y-axis values. + + + Specifies which error-bar parts to include. + + + Both positive and negative error range. + + + Only negative error range. + + + No error bar range. + + + Only positive error range. + + + Specifies the range marked by error bars. + + + Range is set by fixed values or cell values. + + + Fixed-length error bars. + + + Percentage of range to be covered by the error bars. + + + Shows range for specified number of standard deviations. + + + Shows standard error range. + + + Specifies the horizontal alignment for the object. + + + Center. + + + Center across selection. + + + Distribute. + + + Fill. + + + Align according to data type. + + + Justify. + + + Left. + + + Right. + + + Specifies the position of the legend on a chart. + + + Below the chart. + + + In the upper right-hand corner of the chart border. + + + Left of the chart. + + + Right of the chart. + + + Above the chart. + + + A custom position. + + + Specifies the marker style for a point or series in a line chart, scatter chart, or radar chart. + + + Automatic markers. + + + Circular markers. + + + Long bar markers. + + + Diamond-shaped markers. + + + Short bar markers. + + + No markers. + + + Picture markers. + + + Square markers with a plus sign. + + + Square markers. + + + Square markers with an asterisk. + + + Triangular markers. + + + Square markers with an X. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the location of the field in a PivotTable report. + + + Specifies the Column field. + + + Specifies the Data field. + + + Specifies that the field is hidden. + + + Specifies the Page field. + + + Specifies the Row field. + + + + + + + + + + + + + Specifies whether the values corresponding to a particular data series are in rows or columns. + + + Data series is in a column. + + + Data series is in a row. + + + Specifies the scale type of the value axis. + + + Linear. + + + Logarithmic. + + + Indicates what the size measurement is in relation to. + + + The size measure is for the width. + + + The size measure is for the area. + + + Specifies the text orientation for tick-mark labels. + + + Text orientation set by Excel. + + + Text runs down. + + + Characters run horizontally. + + + Text runs up. + + + Characters run vertically. + + + Specifies the position of tick-mark labels on the specified axis. + + + Top or right side of the chart. + + + Bottom or left side of the chart. + + + Next to axis (where axis is not at either side of the chart). + + + No tick marks. + + + Specifies the position of major and minor tick marks for an axis. + + + Crosses the axis. + + + Inside the axis. + + + No mark. + + + Outside the axis. + + + Indicates units of time measurement. + + + Specifies Day units. + + + Specifies Month units. + + + Specifies Year units. + + + Specifies how the trendline that smoothes out fluctuations in the data is calculated. + + + Uses an equation to calculate the least squares fit through points, for example, y=ab^x . + + + Uses the linear equation y = mx + b to calculate the least squares fit through points. + + + Uses the equation y = c ln x + b to calculate the least squares fit through points. + + + Uses a sequence of averages computed from parts of the data series. The number of points equals the total number of points in the series less the number specified for the period. + + + Uses an equation to calculate the least squares fit through points, for example, y = ax^6 + bx^5 + cx^4 + dx^3 + ex^2 + fx + g. + + + Uses an equation to calculate the least squares fit through points, for example, y = ax^b. + + + Specifies the type of underline applied to a font. + + + Double thick underline. + + + Two thin underlines placed close together. + + + No underlining. + + + Single underlining. + + + Not supported. + + + Specifies the vertical alignment for the object. + + + Bottom + + + Center + + + Distributed + + + Justify + + + Top + + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..9b2474d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationCore.resources.dll new file mode 100644 index 0000000..5134f9d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll new file mode 100644 index 0000000..21064ff Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationUI.resources.dll new file mode 100644 index 0000000..15249d9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/ReachFramework.resources.dll new file mode 100644 index 0000000..c8a628c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..972a000 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..d909925 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..11293dc Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..f384a48 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..6b5cd5e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Xaml.resources.dll new file mode 100644 index 0000000..befdd99 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll new file mode 100644 index 0000000..931579b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..e1a7018 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..60cafe4 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..266eec7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/WindowsBase.resources.dll new file mode 100644 index 0000000..00e6ecf Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..8a6af8e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..b9e5ef7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll new file mode 100644 index 0000000..cc960a6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll new file mode 100644 index 0000000..7bd5545 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll new file mode 100644 index 0000000..f0c94aa Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll new file mode 100644 index 0000000..340f1a2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..1ab1a8e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..c9f6b4b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..7aa00bb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..a653ad2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..fc4c916 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll new file mode 100644 index 0000000..e6bdb23 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll new file mode 100644 index 0000000..1c754d7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..d912015 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..97ea9b1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..ddff66f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll new file mode 100644 index 0000000..1bf4b18 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..56bcdcd Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..38a0b4c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationCore.resources.dll new file mode 100644 index 0000000..cadb543 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll new file mode 100644 index 0000000..d1ce6c9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationUI.resources.dll new file mode 100644 index 0000000..6b17499 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/ReachFramework.resources.dll new file mode 100644 index 0000000..5bb9e8a Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..4c7eab1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..17162c2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..da9ce32 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..a4918ee Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..45015f3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Xaml.resources.dll new file mode 100644 index 0000000..1fa2c3f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll new file mode 100644 index 0000000..5af5c56 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..7fa5504 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..2fbbbe7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..dc26168 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/WindowsBase.resources.dll new file mode 100644 index 0000000..7a052d8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..e6005b7 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..75be7d8 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationCore.resources.dll new file mode 100644 index 0000000..995557f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll new file mode 100644 index 0000000..698eb1b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationUI.resources.dll new file mode 100644 index 0000000..384d466 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/ReachFramework.resources.dll new file mode 100644 index 0000000..0ce4d5b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..e74aae2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..1bd5a4f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..92b8cd6 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..572bb55 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..938547e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Xaml.resources.dll new file mode 100644 index 0000000..aac7fe1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..db2ed8f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..dd31443 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..13153eb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..8794ee5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/WindowsBase.resources.dll new file mode 100644 index 0000000..cb99882 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..17c1738 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ucrtbase.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ucrtbase.dll new file mode 100644 index 0000000..0b41078 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/ucrtbase.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/vcruntime140_cor3.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/vcruntime140_cor3.dll new file mode 100644 index 0000000..524092d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/vcruntime140_cor3.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/wpfgfx_cor3.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/wpfgfx_cor3.dll new file mode 100644 index 0000000..78c606d Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/wpfgfx_cor3.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..79b1234 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll new file mode 100644 index 0000000..85a6860 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll new file mode 100644 index 0000000..22394c2 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll new file mode 100644 index 0000000..ce1a336 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll new file mode 100644 index 0000000..42d7513 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..aa86c01 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..c855191 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..016d204 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..dd7be13 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..afd5861 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll new file mode 100644 index 0000000..f825d7b Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a9b68e5 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..12c9d70 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..0ffdcf3 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..1fa8dff Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll new file mode 100644 index 0000000..b2e0306 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..2d38c80 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..19cdad0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll new file mode 100644 index 0000000..e74130f Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll new file mode 100644 index 0000000..f4bac14 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll new file mode 100644 index 0000000..2b110d1 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll new file mode 100644 index 0000000..861fc74 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..316a45c Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..50bc8f0 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..27b6459 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..c083cb9 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..e07d138 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll new file mode 100644 index 0000000..ffd7532 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll new file mode 100644 index 0000000..8ae2748 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..3eebf5e Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..98e8c98 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..d1fc4bb Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll new file mode 100644 index 0000000..a424865 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll differ diff --git a/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..b511862 Binary files /dev/null and b/HRServer-Exporter/Installer/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.AssemblyInfo.cs b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.AssemblyInfo.cs similarity index 78% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.AssemblyInfo.cs rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.AssemblyInfo.cs index 085aeb3..22160e6 100644 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.AssemblyInfo.cs +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.AssemblyInfo.cs @@ -11,12 +11,12 @@ using System; using System.Reflection; -[assembly: System.Reflection.AssemblyCompanyAttribute("HorseViewer")] +[assembly: System.Reflection.AssemblyCompanyAttribute("Installer")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8f1d98867721eca2ff0013c3d41284809087d4ae")] -[assembly: System.Reflection.AssemblyProductAttribute("HorseViewer")] -[assembly: System.Reflection.AssemblyTitleAttribute("HorseViewer")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dceb598b52dfe3fc24772a14d69d8799841f2ed6")] +[assembly: System.Reflection.AssemblyProductAttribute("Installer")] +[assembly: System.Reflection.AssemblyTitleAttribute("Installer")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] [assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.AssemblyInfoInputs.cache b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c0fd969 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +52dd1231c1921ea4dda12bc61f55f4b7e7ce9156b01c4843a7ad6237ffdc4121 diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.FRMInstaller.resources b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.FRMInstaller.resources new file mode 100644 index 0000000..bf197a6 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.FRMInstaller.resources differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.GeneratedMSBuildEditorConfig.editorconfig b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.GeneratedMSBuildEditorConfig.editorconfig similarity index 67% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.GeneratedMSBuildEditorConfig.editorconfig rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.GeneratedMSBuildEditorConfig.editorconfig index d582fb1..4348bfc 100644 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.GeneratedMSBuildEditorConfig.editorconfig +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.GeneratedMSBuildEditorConfig.editorconfig @@ -1,11 +1,11 @@ is_global = true -build_property.ApplicationManifest = +build_property.ApplicationManifest = app.manifest build_property.StartupObject = build_property.ApplicationDefaultFont = build_property.ApplicationHighDpiMode = build_property.ApplicationUseCompatibleTextRendering = build_property.ApplicationVisualStyles = -build_property.TargetFramework = net8.0-windows +build_property.TargetFramework = net6.0-windows build_property.TargetPlatformMinVersion = 7.0 build_property.UsingMicrosoftNETSdkWeb = build_property.ProjectTypeGuids = @@ -13,7 +13,10 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = HorseViewer -build_property.ProjectDir = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\HorseViewer\ +build_property.RootNamespace = Installer +build_property.ProjectDir = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 6.0 +build_property.EnableCodeStyleSeverity = diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.GlobalUsings.g.cs b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.GlobalUsings.g.cs similarity index 100% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.GlobalUsings.g.cs rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.GlobalUsings.g.cs diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.ViewEditTable.resources b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.TablessTabControl.resources similarity index 100% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.ViewEditTable.resources rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.TablessTabControl.resources diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.assets.cache b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.assets.cache new file mode 100644 index 0000000..d4d21e3 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.assets.cache differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.AssemblyReference.cache b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1f72a1e Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.AssemblyReference.cache differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.BuildWithSkipAnalyzers b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.CoreCompileInputs.cache b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..29a31b1 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1afca39a7f53534c9c9b580d90cea4df592193a3ae28677f2d4396494ece0bc0 diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.FileListAbsolute.txt b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4bc0e3f --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\Installer.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\Installer.deps.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\Installer.runtimeconfig.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\Installer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.FRMInstaller.resources +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.csproj.GenerateResource.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.GeneratedMSBuildEditorConfig.editorconfig +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.AssemblyInfoInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.AssemblyInfo.cs +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.csproj.CoreCompileInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.sourcelink.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\refint\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.genruntimeconfig.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\ref\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.TablessTabControl.resources +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\Microsoft.Office.Interop.Excel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\Microsoft.Vbe.Interop.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\office.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Debug\net6.0-windows\office.xml +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.csproj.AssemblyReference.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Debug\net6.0-windows\Installer.csproj.Up2Date diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.GenerateResource.cache b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.GenerateResource.cache new file mode 100644 index 0000000..1280ec9 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.GenerateResource.cache differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.ResolveComReference.cache b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.ResolveComReference.cache new file mode 100644 index 0000000..3dbdd1a Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.ResolveComReference.cache differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.Up2Date b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.designer.deps.json b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.designer.deps.json new file mode 100644 index 0000000..b8b6206 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.designer.deps.json @@ -0,0 +1,28 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4795.1000" + } + } + } + } + }, + "libraries": { + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "hashPath": "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.designer.runtimeconfig.json b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.designer.runtimeconfig.json similarity index 75% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.designer.runtimeconfig.json rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.designer.runtimeconfig.json index 7253ee6..1aac494 100644 --- a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.designer.runtimeconfig.json +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.designer.runtimeconfig.json @@ -1,14 +1,14 @@ { "runtimeOptions": { - "tfm": "net8.0", + "tfm": "net6.0", "frameworks": [ { "name": "Microsoft.NETCore.App", - "version": "8.0.0" + "version": "6.0.0" }, { "name": "Microsoft.WindowsDesktop.App", - "version": "8.0.0" + "version": "6.0.0" } ], "additionalProbingPaths": [ @@ -17,7 +17,6 @@ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configProperties": { - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true } } diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.dll b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.dll similarity index 52% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.dll rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.dll index 61c1c1e..b740f97 100644 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.dll and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.genruntimeconfig.cache b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.genruntimeconfig.cache new file mode 100644 index 0000000..9ed987d --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.genruntimeconfig.cache @@ -0,0 +1 @@ +dd5cd77a571810cdf613a00084c86b62d81fc43b62396cf53f0e67b0430810f6 diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.pdb b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.pdb new file mode 100644 index 0000000..5c5f30c Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.pdb differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.sourcelink.json b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.sourcelink.json new file mode 100644 index 0000000..ebe4476 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Installer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/dceb598b52dfe3fc24772a14d69d8799841f2ed6/*"}} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Interop.Office.dll b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Interop.Office.dll new file mode 100644 index 0000000..ffa1b8f Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Interop.Office.dll differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Interop.VBIDE.dll b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Interop.VBIDE.dll new file mode 100644 index 0000000..32909f7 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/Interop.VBIDE.dll differ diff --git a/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/apphost.exe b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/apphost.exe new file mode 100644 index 0000000..3c9e2e1 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/ref/HorseViewer.dll b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/ref/Installer.dll similarity index 60% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/ref/HorseViewer.dll rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/ref/Installer.dll index 2a6b11c..8a0994f 100644 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/ref/HorseViewer.dll and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/ref/Installer.dll differ diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/refint/HorseViewer.dll b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/refint/Installer.dll similarity index 60% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/refint/HorseViewer.dll rename to HRServer-Exporter/Installer/obj/Debug/net6.0-windows/refint/Installer.dll index 2a6b11c..8a0994f 100644 Binary files a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/refint/HorseViewer.dll and b/HRServer-Exporter/Installer/obj/Debug/net6.0-windows/refint/Installer.dll differ diff --git a/HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.dgspec.json b/HRServer-Exporter/Installer/obj/Installer.csproj.nuget.dgspec.json similarity index 73% rename from HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.dgspec.json rename to HRServer-Exporter/Installer/obj/Installer.csproj.nuget.dgspec.json index 1d47d0a..d70d985 100644 --- a/HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.dgspec.json +++ b/HRServer-Exporter/Installer/obj/Installer.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj": {} + "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj": {} }, "projects": { - "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj": { + "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", - "projectName": "HorseViewer", - "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", + "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "projectName": "Installer", + "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", "packagesPath": "C:\\Users\\SvenK\\.nuget\\packages\\", - "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\obj\\", + "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -22,7 +22,7 @@ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net8.0-windows" + "net6.0-windows" ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, @@ -30,8 +30,8 @@ "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", "projectReferences": {} } }, @@ -44,11 +44,18 @@ "enableAudit": "true", "auditLevel": "low", "auditMode": "direct" - } + }, + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "Microsoft.Office.Interop.Excel": { + "target": "Package", + "version": "[15.0.4795.1001, )" + } + }, "imports": [ "net461", "net462", @@ -68,7 +75,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" } } } diff --git a/HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.g.props b/HRServer-Exporter/Installer/obj/Installer.csproj.nuget.g.props similarity index 97% rename from HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.g.props rename to HRServer-Exporter/Installer/obj/Installer.csproj.nuget.g.props index 3c801d2..0835ec4 100644 --- a/HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.g.props +++ b/HRServer-Exporter/Installer/obj/Installer.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\SvenK\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.11.0 + 6.12.2 diff --git a/HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.g.targets b/HRServer-Exporter/Installer/obj/Installer.csproj.nuget.g.targets similarity index 100% rename from HRServer-Exporter/HorseViewer/obj/HorseViewer.csproj.nuget.g.targets rename to HRServer-Exporter/Installer/obj/Installer.csproj.nuget.g.targets diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.AssemblyInfo.cs b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.AssemblyInfo.cs new file mode 100644 index 0000000..f547867 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Installer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dceb598b52dfe3fc24772a14d69d8799841f2ed6")] +[assembly: System.Reflection.AssemblyProductAttribute("Installer")] +[assembly: System.Reflection.AssemblyTitleAttribute("Installer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.AssemblyInfoInputs.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8fdb7d2 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7674596a575fd4772788a0520e7cf5fe670c92da1ff78cf2c2880f0e2a8588e5 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.FRMInstaller.resources b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.FRMInstaller.resources new file mode 100644 index 0000000..5477be8 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.FRMInstaller.resources differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.GeneratedMSBuildEditorConfig.editorconfig b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4348bfc --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,22 @@ +is_global = true +build_property.ApplicationManifest = app.manifest +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Installer +build_property.ProjectDir = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 6.0 +build_property.EnableCodeStyleSeverity = diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.GlobalUsings.g.cs b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.GlobalUsings.g.cs new file mode 100644 index 0000000..84bbb89 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Drawing; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; +global using global::System.Windows.Forms; diff --git a/HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.ViewSettings.resources b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.TablessTabControl.resources similarity index 100% rename from HRServer-Exporter/HorseViewer/obj/Debug/net8.0-windows/HorseViewer.ViewSettings.resources rename to HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.TablessTabControl.resources diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.assets.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.assets.cache new file mode 100644 index 0000000..5b3cb99 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.assets.cache differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.AssemblyReference.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..43b5ba3 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.AssemblyReference.cache differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.CoreCompileInputs.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..194258b --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2813163aad06f7110c7781cd149641f4daa9cdeb10d2ec02be6264b91231ed47 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.FileListAbsolute.txt b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..45f5bce --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\Installer.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\Installer.deps.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\Installer.runtimeconfig.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\Installer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\Microsoft.Office.Interop.Excel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\Microsoft.Vbe.Interop.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\office.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\office.xml +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.csproj.AssemblyReference.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.FRMInstaller.resources +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.TablessTabControl.resources +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.csproj.GenerateResource.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.GeneratedMSBuildEditorConfig.editorconfig +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.AssemblyInfoInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.AssemblyInfo.cs +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.csproj.CoreCompileInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.sourcelink.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.csproj.Up2Date +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\refint\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\Installer.genruntimeconfig.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\ref\Installer.dll diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.GenerateResource.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.GenerateResource.cache new file mode 100644 index 0000000..6ee9177 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.GenerateResource.cache differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.Up2Date b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.designer.deps.json b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.designer.deps.json new file mode 100644 index 0000000..b8b6206 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.designer.deps.json @@ -0,0 +1,28 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4795.1000" + } + } + } + } + }, + "libraries": { + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "hashPath": "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.designer.runtimeconfig.json b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.designer.runtimeconfig.json new file mode 100644 index 0000000..c91b823 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.designer.runtimeconfig.json @@ -0,0 +1,24 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\SvenK\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\SvenK\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.dll new file mode 100644 index 0000000..0a53f3e Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.genruntimeconfig.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.genruntimeconfig.cache new file mode 100644 index 0000000..e2cea81 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.genruntimeconfig.cache @@ -0,0 +1 @@ +7e061ae08e638ad458757161f837005f013d9700af8d26aac3012fba62921c8a diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.pdb b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.pdb new file mode 100644 index 0000000..6eb3356 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.pdb differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.sourcelink.json b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.sourcelink.json new file mode 100644 index 0000000..ebe4476 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/Installer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/dceb598b52dfe3fc24772a14d69d8799841f2ed6/*"}} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/apphost.exe b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/apphost.exe new file mode 100644 index 0000000..63a20c7 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/apphost.exe differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/ref/Installer.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/ref/Installer.dll new file mode 100644 index 0000000..99a05b8 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/ref/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/refint/Installer.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/refint/Installer.dll new file mode 100644 index 0000000..99a05b8 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/refint/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.AssemblyInfo.cs b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.AssemblyInfo.cs new file mode 100644 index 0000000..f547867 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Installer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dceb598b52dfe3fc24772a14d69d8799841f2ed6")] +[assembly: System.Reflection.AssemblyProductAttribute("Installer")] +[assembly: System.Reflection.AssemblyTitleAttribute("Installer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.AssemblyInfoInputs.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8fdb7d2 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7674596a575fd4772788a0520e7cf5fe670c92da1ff78cf2c2880f0e2a8588e5 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.FRMInstaller.resources b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.FRMInstaller.resources new file mode 100644 index 0000000..5477be8 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.FRMInstaller.resources differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.GeneratedMSBuildEditorConfig.editorconfig b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ae0705e --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,26 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.ApplicationManifest = app.manifest +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Installer +build_property.ProjectDir = Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 6.0 +build_property.EnableCodeStyleSeverity = diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.GlobalUsings.g.cs b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.GlobalUsings.g.cs new file mode 100644 index 0000000..84bbb89 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Drawing; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; +global using global::System.Windows.Forms; diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.TablessTabControl.resources b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.TablessTabControl.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.TablessTabControl.resources differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.assets.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.assets.cache new file mode 100644 index 0000000..59e5ae6 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.assets.cache differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.AssemblyReference.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..43b5ba3 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.AssemblyReference.cache differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.CoreCompileInputs.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..760afbb --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c36e608f4bc94dfd6d6e4504e0823a831d7c23e6d31fa02acff4855785bbf9dd diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.FileListAbsolute.txt b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3cebde5 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.FileListAbsolute.txt @@ -0,0 +1,523 @@ +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Installer.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Installer.deps.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Installer.runtimeconfig.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Installer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.Office.Interop.Excel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.CSharp.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.VisualBasic.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.Registry.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.AppContext.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Buffers.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Collections.Concurrent.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Collections.Immutable.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Collections.NonGeneric.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Collections.Specialized.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Collections.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ComponentModel.Annotations.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ComponentModel.DataAnnotations.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ComponentModel.EventBasedAsync.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ComponentModel.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ComponentModel.TypeConverter.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ComponentModel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Configuration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Console.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Core.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Data.Common.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Data.DataSetExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Data.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Contracts.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Debug.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.DiagnosticSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.FileVersionInfo.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Process.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.StackTrace.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.TextWriterTraceListener.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Tools.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.TraceSource.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Tracing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Drawing.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Dynamic.Runtime.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Formats.Asn1.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Globalization.Calendars.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Globalization.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Globalization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Compression.Brotli.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Compression.FileSystem.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Compression.ZipFile.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Compression.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.DriveInfo.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.Watcher.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.IsolatedStorage.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.MemoryMappedFiles.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Pipes.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Pipes.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.UnmanagedMemoryStream.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Linq.Expressions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Linq.Parallel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Linq.Queryable.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Linq.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Memory.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Http.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Http.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.HttpListener.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Mail.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.NameResolution.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.NetworkInformation.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Ping.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Quic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Requests.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Security.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.ServicePoint.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.Sockets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.WebClient.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.WebHeaderCollection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.WebProxy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.WebSockets.Client.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.WebSockets.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Net.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Numerics.Vectors.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Numerics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ObjectModel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Private.CoreLib.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Private.DataContractSerialization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Private.Uri.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Private.Xml.Linq.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Private.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.DispatchProxy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.Emit.ILGeneration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.Emit.Lightweight.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.Emit.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.Metadata.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.TypeExtensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Reflection.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Resources.Reader.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Resources.ResourceManager.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Resources.Writer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.CompilerServices.Unsafe.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.CompilerServices.VisualC.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Handles.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.InteropServices.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Intrinsics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Loader.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Numerics.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Formatters.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Runtime.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Claims.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Algorithms.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Cng.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Csp.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Encoding.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.OpenSsl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.X509Certificates.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Principal.Windows.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Principal.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.SecureString.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ServiceModel.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ServiceProcess.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Text.Encoding.CodePages.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Text.Encoding.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Text.Encoding.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Text.Encodings.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Text.Json.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Text.RegularExpressions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Channels.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Overlapped.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.Dataflow.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.Parallel.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Thread.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.ThreadPool.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.Timer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Transactions.Local.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Transactions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.ValueTuple.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Web.HttpUtility.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Web.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.Linq.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.ReaderWriter.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.Serialization.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.XDocument.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.XPath.XDocument.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.XPath.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.XmlDocument.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.XmlSerializer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\mscorlib.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\netstandard.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Accessibility.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\DirectWriteForwarder.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.VisualBasic.Forms.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.VisualBasic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.Registry.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.SystemEvents.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationCore.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemCore.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemData.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemDrawing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemXml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemXmlLinq.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework.Aero.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework.Aero2.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework.AeroLite.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework.Classic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework.Luna.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework.Royale.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationFramework.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationUI.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ReachFramework.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.CodeDom.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Configuration.ConfigurationManager.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Design.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.EventLog.Messages.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.EventLog.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Diagnostics.PerformanceCounter.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.DirectoryServices.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Drawing.Common.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Drawing.Design.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Drawing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Packaging.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Printing.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Resources.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Pkcs.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.ProtectedData.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Xml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Security.Permissions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Threading.AccessControl.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Controls.Ribbon.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Extensions.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.Design.Editors.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.Design.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.Primitives.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Input.Manipulations.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Windows.Presentation.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.Xaml.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\UIAutomationClient.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\UIAutomationClientSideProviders.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\UIAutomationProvider.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\UIAutomationTypes.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\WindowsBase.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\WindowsFormsIntegration.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\System.IO.Compression.Native.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-console-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-console-l1-2-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-datetime-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-debug-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-fibers-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-file-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-file-l1-2-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-file-l2-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-handle-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-heap-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-interlocked-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-localization-l1-2-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-memory-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-processthreads-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-processthreads-l1-1-1.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-profile-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-string-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-synch-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-synch-l1-2-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-timezone-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-core-util-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-conio-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-convert-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-environment-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-heap-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-locale-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-math-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-private-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-process-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-runtime-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-stdio-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-string-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-time-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-utility-l1-1-0.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\clretwrc.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\clrjit.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\coreclr.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\createdump.exe +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\dbgshim.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\hostfxr.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\hostpolicy.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\mscordaccore.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\mscordaccore_amd64_amd64_6.0.3624.51421.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\mscordbi.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\mscorrc.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\msquic.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ucrtbase.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\D3DCompiler_47_cor3.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PenImc_cor3.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\PresentationNative_cor3.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\vcruntime140_cor3.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\wpfgfx_cor3.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\cs\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\de\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\es\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\fr\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\it\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ja\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ko\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pl\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\pt-BR\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\ru\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\tr\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hans\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\Microsoft.VisualBasic.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\PresentationCore.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\PresentationFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\PresentationUI.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\ReachFramework.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Controls.Ribbon.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.Design.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.Primitives.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Input.Manipulations.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Xaml.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationClient.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationClientSideProviders.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationProvider.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationTypes.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\WindowsBase.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\zh-Hant\WindowsFormsIntegration.resources.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\Microsoft.Vbe.Interop.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\office.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\bin\Release\net6.0-windows\win-x64\office.xml +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.csproj.AssemblyReference.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.FRMInstaller.resources +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.TablessTabControl.resources +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.csproj.GenerateResource.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.GeneratedMSBuildEditorConfig.editorconfig +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.AssemblyInfoInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.AssemblyInfo.cs +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.csproj.CoreCompileInputs.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.sourcelink.json +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.csproj.Up2Date +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\refint\Installer.dll +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.pdb +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\Installer.genruntimeconfig.cache +Z:\[01] Kribitz Development\[02] Projekte\HR-Collector\HRServer-Exporter\Installer\obj\Release\net6.0-windows\win-x64\ref\Installer.dll diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.GenerateResource.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.GenerateResource.cache new file mode 100644 index 0000000..6ee9177 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.GenerateResource.cache differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.Up2Date b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.deps.json b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.deps.json new file mode 100644 index 0000000..ccda4f3 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.deps.json @@ -0,0 +1,1115 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "Installer/1.0.0": { + "dependencies": { + "Microsoft.NET.ILLink.Analyzers": "7.0.100-1.23211.1", + "Microsoft.NET.ILLink.Tasks": "7.0.100-1.23211.1", + "Microsoft.Office.Interop.Excel": "15.0.4795.1001", + "Microsoft.Vbe.Interop": "15.0.0.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.36", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "6.0.36" + }, + "runtime": { + "Installer.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.3624.51421" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.3624.51421" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51513" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "PresentationCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationUI.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "ReachFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Drawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Printing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Xaml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsBase.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22621.3233" + }, + "PenImc_cor3.dll": { + "fileVersion": "6.0.3624.51603" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "6.0.24.46601" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.40.33810.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "6.0.3624.51603" + } + } + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": {}, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": {}, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4795.1000" + } + } + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "runtime": { + "Microsoft.Vbe.Interop.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + }, + "office/15.0.0.0": { + "runtime": { + "office.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.4420.1017" + } + } + } + } + }, + "libraries": { + "Installer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0GvbEgDGcUQA9KuWcQU1WwYHXt1tBzNr1Nls/M57rM7NA/AndFwCaCEoJpJkmxRY7xLlPDBnmGp8h5+FNqUngg==", + "path": "microsoft.net.illink.analyzers/7.0.100-1.23211.1", + "hashPath": "microsoft.net.illink.analyzers.7.0.100-1.23211.1.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvG8XZYLjT0o3WicCyKBZysVWo1jC9HdCFmNRmddx3WbAz0UCsd0qKZqpiEo99VLA8Re+FzWK51OcRldQPbt2Q==", + "path": "microsoft.net.illink.tasks/7.0.100-1.23211.1", + "hashPath": "microsoft.net.illink.tasks.7.0.100-1.23211.1.nupkg.sha512" + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "hashPath": "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512" + }, + "Microsoft.Vbe.Interop/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "office/15.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.dll new file mode 100644 index 0000000..1947985 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genbundle.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genbundle.cache new file mode 100644 index 0000000..28cba00 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genbundle.cache @@ -0,0 +1 @@ +042f99fbcab05df403b122d427f545d1a174b5cd0b2270bc8290d2966d04ca06 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genpublishdeps.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genpublishdeps.cache new file mode 100644 index 0000000..ebef615 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genpublishdeps.cache @@ -0,0 +1 @@ +ff70e24f130fcd4dd69b949f448157b907733f5ac9fe3d7d6315049238519da1 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genruntimeconfig.cache b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genruntimeconfig.cache new file mode 100644 index 0000000..5407113 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.genruntimeconfig.cache @@ -0,0 +1 @@ +6f7dda067f39da589794e7c07004cf8ed0f5de8a779d6070c3cfb12f99c273f4 diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.pdb b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.pdb new file mode 100644 index 0000000..fa737b4 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.pdb differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.sourcelink.json b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.sourcelink.json new file mode 100644 index 0000000..ebe4476 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/Installer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\*":"https://raw.githubusercontent.com/SvenKribitz/HR-Collector/dceb598b52dfe3fc24772a14d69d8799841f2ed6/*"}} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/PublishOutputs.2122395245.txt b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/PublishOutputs.2122395245.txt new file mode 100644 index 0000000..bc405a3 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/PublishOutputs.2122395245.txt @@ -0,0 +1,8 @@ +C:\Users\SvenK\Desktop\Horse Reality Exporter\Installer.pdb +C:\Users\SvenK\Desktop\Horse Reality Exporter\D3DCompiler_47_cor3.dll +C:\Users\SvenK\Desktop\Horse Reality Exporter\PenImc_cor3.dll +C:\Users\SvenK\Desktop\Horse Reality Exporter\PresentationNative_cor3.dll +C:\Users\SvenK\Desktop\Horse Reality Exporter\vcruntime140_cor3.dll +C:\Users\SvenK\Desktop\Horse Reality Exporter\wpfgfx_cor3.dll +C:\Users\SvenK\Desktop\Horse Reality Exporter\office.xml +C:\Users\SvenK\Desktop\Horse Reality Exporter\Installer.exe diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Installer.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Installer.dll new file mode 100644 index 0000000..134d1a3 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Microsoft.Office.Interop.Excel.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Microsoft.Office.Interop.Excel.dll new file mode 100644 index 0000000..e54323c Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Microsoft.Office.Interop.Excel.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Microsoft.Vbe.Interop.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Microsoft.Vbe.Interop.dll new file mode 100644 index 0000000..8bbcf72 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/Microsoft.Vbe.Interop.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/office.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/office.dll new file mode 100644 index 0000000..1a7bf19 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/R2R/office.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/apphost.exe b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/apphost.exe new file mode 100644 index 0000000..63a20c7 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/apphost.exe differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/ref/Installer.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/ref/Installer.dll new file mode 100644 index 0000000..e515b57 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/ref/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/refint/Installer.dll b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/refint/Installer.dll new file mode 100644 index 0000000..e515b57 Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/refint/Installer.dll differ diff --git a/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/singlefilehost.exe b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/singlefilehost.exe new file mode 100644 index 0000000..bdcea1f Binary files /dev/null and b/HRServer-Exporter/Installer/obj/Release/net6.0-windows/win-x64/singlefilehost.exe differ diff --git a/HRServer-Exporter/HorseViewer/obj/project.assets.json b/HRServer-Exporter/Installer/obj/project.assets.json similarity index 55% rename from HRServer-Exporter/HorseViewer/obj/project.assets.json rename to HRServer-Exporter/Installer/obj/project.assets.json index 73f5017..5b58fc1 100644 --- a/HRServer-Exporter/HorseViewer/obj/project.assets.json +++ b/HRServer-Exporter/Installer/obj/project.assets.json @@ -1,11 +1,37 @@ { "version": 3, "targets": { - "net8.0-windows7.0": {} + "net6.0-windows7.0": { + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "sha512": "cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "type": "package", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/Microsoft.Office.Interop.Excel.dll", + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll", + "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512", + "microsoft.office.interop.excel.nuspec" + ] + } }, - "libraries": {}, "projectFileDependencyGroups": { - "net8.0-windows7.0": [] + "net6.0-windows7.0": [ + "Microsoft.Office.Interop.Excel >= 15.0.4795.1001" + ] }, "packageFolders": { "C:\\Users\\SvenK\\.nuget\\packages\\": {}, @@ -14,11 +40,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", - "projectName": "HorseViewer", - "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\HorseViewer.csproj", + "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "projectName": "Installer", + "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", "packagesPath": "C:\\Users\\SvenK\\.nuget\\packages\\", - "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\HorseViewer\\obj\\", + "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -29,7 +55,7 @@ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net8.0-windows" + "net6.0-windows" ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, @@ -37,8 +63,8 @@ "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", "projectReferences": {} } }, @@ -51,11 +77,18 @@ "enableAudit": "true", "auditLevel": "low", "auditMode": "direct" - } + }, + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "Microsoft.Office.Interop.Excel": { + "target": "Package", + "version": "[15.0.4795.1001, )" + } + }, "imports": [ "net461", "net462", @@ -75,7 +108,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" } } } diff --git a/HRServer-Exporter/Installer/obj/project.nuget.cache b/HRServer-Exporter/Installer/obj/project.nuget.cache new file mode 100644 index 0000000..0241bc0 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "Q6aLgqT95mM=", + "success": true, + "projectFilePath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.office.interop.excel\\15.0.4795.1001\\microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.dgspec.json b/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..7ba0701 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.dgspec.json @@ -0,0 +1,118 @@ +{ + "format": 1, + "restore": { + "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj": {} + }, + "projects": { + "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "projectName": "Installer", + "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "packagesPath": "C:\\Users\\SvenK\\.nuget\\packages\\", + "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\SvenK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "Microsoft.NET.ILLink.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + }, + "Microsoft.Office.Interop.Excel": { + "target": "Package", + "version": "[15.0.4795.1001, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Crossgen2.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.g.props b/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.g.props new file mode 100644 index 0000000..e7c7238 --- /dev/null +++ b/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.g.props @@ -0,0 +1,23 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\SvenK\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.12.2 + + + + + + + + + + + C:\Users\SvenK\.nuget\packages\microsoft.net.illink.tasks\7.0.100-1.23211.1 + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.g.targets b/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/HRServer-Exporter/Installer/obj/publish/win-x64/Installer.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/publish/win-x64/project.assets.json b/HRServer-Exporter/Installer/obj/publish/win-x64/project.assets.json new file mode 100644 index 0000000..3bae6ec --- /dev/null +++ b/HRServer-Exporter/Installer/obj/publish/win-x64/project.assets.json @@ -0,0 +1,234 @@ +{ + "version": 3, + "targets": { + "net6.0-windows7.0": { + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Analyzers.props": {} + } + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": {} + } + } + }, + "net6.0-windows7.0/win-x64": { + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Analyzers.props": {} + } + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "sha512": "0GvbEgDGcUQA9KuWcQU1WwYHXt1tBzNr1Nls/M57rM7NA/AndFwCaCEoJpJkmxRY7xLlPDBnmGp8h5+FNqUngg==", + "type": "package", + "path": "microsoft.net.illink.analyzers/7.0.100-1.23211.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", + "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", + "build/Microsoft.NET.ILLink.Analyzers.props", + "microsoft.net.illink.analyzers.7.0.100-1.23211.1.nupkg.sha512", + "microsoft.net.illink.analyzers.nuspec" + ] + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "sha512": "tvG8XZYLjT0o3WicCyKBZysVWo1jC9HdCFmNRmddx3WbAz0UCsd0qKZqpiEo99VLA8Re+FzWK51OcRldQPbt2Q==", + "type": "package", + "path": "microsoft.net.illink.tasks/7.0.100-1.23211.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "Sdk/Sdk.props", + "build/6.0_suppressions.xml", + "build/Microsoft.NET.ILLink.Tasks.props", + "build/Microsoft.NET.ILLink.targets", + "microsoft.net.illink.tasks.7.0.100-1.23211.1.nupkg.sha512", + "microsoft.net.illink.tasks.nuspec", + "tools/net472/ILLink.Tasks.dll", + "tools/net472/Mono.Cecil.dll", + "tools/net472/System.Buffers.dll", + "tools/net472/System.Collections.Immutable.dll", + "tools/net472/System.Memory.dll", + "tools/net472/System.Numerics.Vectors.dll", + "tools/net472/System.Reflection.Metadata.dll", + "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net7.0/ILLink.Tasks.deps.json", + "tools/net7.0/ILLink.Tasks.dll", + "tools/net7.0/Mono.Cecil.Pdb.dll", + "tools/net7.0/Mono.Cecil.dll", + "tools/net7.0/illink.deps.json", + "tools/net7.0/illink.dll", + "tools/net7.0/illink.runtimeconfig.json" + ] + }, + "Microsoft.Office.Interop.Excel/15.0.4795.1001": { + "sha512": "cuvqi/U5MYSM0gvR2l90q0m/urRgmg69EiwP5VWp1RcaJ0YT5G26Va5LaOZ3KJFc22FNihS5CUjeePUp2YpGQA==", + "type": "package", + "path": "microsoft.office.interop.excel/15.0.4795.1001", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/Microsoft.Office.Interop.Excel.dll", + "lib/netstandard2.0/Microsoft.Office.Interop.Excel.dll", + "microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512", + "microsoft.office.interop.excel.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0-windows7.0": [ + "Microsoft.NET.ILLink.Analyzers >= 7.0.100-1.23211.1", + "Microsoft.NET.ILLink.Tasks >= 7.0.100-1.23211.1", + "Microsoft.Office.Interop.Excel >= 15.0.4795.1001" + ] + }, + "packageFolders": { + "C:\\Users\\SvenK\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "projectName": "Installer", + "projectPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "packagesPath": "C:\\Users\\SvenK\\.nuget\\packages\\", + "outputPath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\SvenK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "Microsoft.NET.ILLink.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + }, + "Microsoft.Office.Interop.Excel": { + "target": "Package", + "version": "[15.0.4795.1001, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Crossgen2.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/HRServer-Exporter/Installer/obj/publish/win-x64/project.nuget.cache b/HRServer-Exporter/Installer/obj/publish/win-x64/project.nuget.cache new file mode 100644 index 0000000..887ae1d --- /dev/null +++ b/HRServer-Exporter/Installer/obj/publish/win-x64/project.nuget.cache @@ -0,0 +1,16 @@ +{ + "version": 2, + "dgSpecHash": "nNPXWNRaxfk=", + "success": true, + "projectFilePath": "Z:\\[01] Kribitz Development\\[02] Projekte\\HR-Collector\\HRServer-Exporter\\Installer\\Installer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.net.illink.analyzers\\7.0.100-1.23211.1\\microsoft.net.illink.analyzers.7.0.100-1.23211.1.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.net.illink.tasks\\7.0.100-1.23211.1\\microsoft.net.illink.tasks.7.0.100-1.23211.1.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.office.interop.excel\\15.0.4795.1001\\microsoft.office.interop.excel.15.0.4795.1001.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\6.0.36\\microsoft.netcore.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\6.0.36\\microsoft.windowsdesktop.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\6.0.36\\microsoft.aspnetcore.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\SvenK\\.nuget\\packages\\microsoft.netcore.app.crossgen2.win-x64\\6.0.36\\microsoft.netcore.app.crossgen2.win-x64.6.0.36.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Img/HorseRealityExporterIcon.ico b/Img/HorseRealityExporterIcon.ico new file mode 100644 index 0000000..5d33a86 Binary files /dev/null and b/Img/HorseRealityExporterIcon.ico differ diff --git a/Img/HorseRealityExporterIcon.png b/Img/HorseRealityExporterIcon.png new file mode 100644 index 0000000..446ee0e Binary files /dev/null and b/Img/HorseRealityExporterIcon.png differ diff --git a/Release/Extension/API.js b/Release/Extension/API.js new file mode 100644 index 0000000..67d325d --- /dev/null +++ b/Release/Extension/API.js @@ -0,0 +1,164 @@ +const url = 'http://127.0.0.1:5180/api/'; +async function pingServer() { + try { + const response = await fetch('http://127.0.0.1:5180/api/ping'); + return response.ok; // Gibt true zurück, wenn der Server erreichbar ist + } catch (error) { + console.warn('Server ist nicht erreichbar:', error); + return false; // Gibt false zurück, wenn der Server nicht erreichbar ist + } +} +async function deleteHorseAPIAsync(id) { + try { + const apiUrl = `${url}deleteHorse/${id}`; + const response = await fetch(apiUrl, { + method: 'DELETE', // HTTP DELETE-Methode verwenden + headers: { + 'Content-Type': 'application/json' // Falls nötig, Header setzen + } + }); + + if (!response.ok) { + console.warn(`Failed to delete horse with id ${id}: ${response.statusText}`); + } + + console.log(response); + return response; // Erfolgreiche Antwort zurückgeben + } catch (error) { + console.warn(`Error deleting horse with id ${id}:`, error); + } + return; +} + +async function setBaseDataHorseAPI(id, basedata) { + try { + console.log("Setting horse data"); + console.log("ID:", id); + console.log("Basedata:", basedata); + + const apiUrl = url+`updateHorse/${id}/BasicData`; + const response = await fetch(apiUrl, { + method: 'POST', + body: JSON.stringify(basedata), + headers: { + 'Content-Type': 'application/json' + } + }); + console.log("API Response:", response); + } catch (error) { + console.error("Error setting horse data: " + error.message); + } +} +async function getColorsAPIAsync(id) +{ + let colors; + try { + const apiUrl = url+`getHorse/${id}/Colors`; + await fetch(apiUrl) + .then(response => response.json()) + .then(data => { + colors = data; + }); + } catch (error) { + console.log(error); + } + return colors; +} +async function getHorseNotesAPIAsync(id) +{ + let notes; + try { + const apiUrl = url+`getHorse/${id}/Notes`; + await fetch(apiUrl) + .then(response => response.text()) + .then(data => { + notes = data; + }); + } catch (error) { + console.log(error); + } + return notes; +} +async function getHorseLoadStateAPIAsync(id) +{ + let horseData; + try { + const apiUrl = url+`getHorse/${id}/LoadState`; + await fetch(apiUrl) + .then(response => response.json()) + .then(data => { + horseData = data; + }); + } catch (error) { + console.log(error); + } + + return horseData; +} + +async function setHorseSummaryAPIAsync(id, summaryData) +{ + const apiUrl = url+`updateHorse/${id}/Summary`; + const response = await fetch(apiUrl, { + method: 'POST', + body: JSON.stringify(summaryData), + headers: { + 'Content-Type': 'application/json' + } + }); + return response; +} + +async function setHorseTrainingAPIAsync(id, training) +{ + const apiUrl = url+`updateHorse/${id}/Training`; + const response = await fetch(apiUrl, { + method: 'POST', + body: JSON.stringify({ Training:training }), + headers: { + 'Content-Type': 'application/json' + } + }); + return response; +} + +async function setHorseGeneticsAPIAsync(id, genetics) +{ + const apiUrl = url+`updateHorse/${id}/Genetics`; + console.log("Accessing API at:", apiUrl); + const response = await fetch(apiUrl, { + method: 'POST', + body: JSON.stringify(genetics), + headers: { + 'Content-Type': 'application/json' + } + }); + return response; +} + +async function setHorseHealthAPIAsync(id, health) +{ + const apiUrl = url+`updateHorse/${id}/Health`; + const response = await fetch(apiUrl, { + method: 'POST', + body: JSON.stringify({ Health: health }), + headers: { + 'Content-Type': 'application/json' + } + }); + return response; +} + +// Neue Funktion für Achievements +async function setHorseAchievementsAPIAsync(id, achievements) +{ + const apiUrl = url+`updateHorse/${id}/Achievements`; + const response = await fetch(apiUrl, { + method: 'POST', + body: JSON.stringify(achievements), + headers: { + 'Content-Type': 'application/json' + } + }); + return response; +} diff --git a/HRServer-Exporter/HorseViewer/HR-Collector_Icon.png b/Release/Extension/HR-Collector_Icon.png similarity index 100% rename from HRServer-Exporter/HorseViewer/HR-Collector_Icon.png rename to Release/Extension/HR-Collector_Icon.png diff --git a/Release/Extension/background.js b/Release/Extension/background.js new file mode 100644 index 0000000..f79b87a --- /dev/null +++ b/Release/Extension/background.js @@ -0,0 +1,95 @@ +importScripts("./API.js"); + +chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { + if (message.action === "updateHorseData") { + // Kein async/await mehr in diesem Aufruf + updateHorseButton(); + } + else if (message.action === "deleteHorse") + { + deleteHorseButton(); + } + // Kein return true erforderlich, da wir kein asynchrones sendResponse nutzen +}); + +function sendMessageAsync(tabId, message) { + return new Promise((resolve, reject) => { + chrome.tabs.sendMessage(tabId, message, (response) => { + if (chrome.runtime.lastError) { + reject(new Error(chrome.runtime.lastError.message)); + } else { + resolve(response); + } + }); + }); +} + +function updateHorseButton() { + console.log("Updating horse data"); + + // Aktiven Tab ermitteln + new Promise((resolve) => { + chrome.tabs.query({ active: true, currentWindow: true }, resolve); + }) + .then((tabs) => { + if (!tabs || tabs.length === 0) { + console.error("No active tab found."); + return; // Beende die Kette + } + + const activeTabId = tabs[0].id; + + // Schritt 1: Basisdaten des Pferdes holen + return sendMessageAsync(activeTabId, { action: "getHorseBasicData" }) + .then((basicDataResponse) => { + if (!basicDataResponse || !basicDataResponse.success) { + console.error("Failed to get horse basic data:", basicDataResponse ? basicDataResponse.message : "No response"); + return; // Beende die Kette + } + console.log("Horse data received:", basicDataResponse.data); + const horseData = basicDataResponse.data; + + // Pferd beim Backend prüfen + return getHorseLoadStateAPIAsync(horseData.id) + .then((existingHorse) => { + if (!existingHorse || existingHorse.message === "Horse not found") { + console.warn("Horse not found in the API."); + return; // Beende die Kette + } + + // Basisdaten an die API senden + return setBaseDataHorseAPI(horseData.id, horseData) + .then(() => { + console.log("Base data updated in API for horse ID:", horseData.id); + // Schritt 2: Aktuelle Horse-Daten holen (abhängig vom aktiven Tab) + return sendMessageAsync(activeTabId, { action: "getHorseCurrentData", data: { id: horseData.id } }) + .then((currentDataResponse) => { + if (!currentDataResponse.success) { + console.error("Failed to get current horse data. Error:", currentDataResponse.message); + return; + } + + console.log("Current horse data received:", currentDataResponse.data); + }); + }); + }); + }); + }) + .catch((error) => { + console.error("Error in updateHorseButton:", error); + }); +} +function deleteHorseButton() { + new Promise((resolve) => { + chrome.tabs.query({ active: true, currentWindow: true }, resolve); + }) + .then((tabs) => { + if (!tabs || tabs.length === 0) { + console.error("No active tab found."); + return; // Beende die Kette + } + + const activeTabId = tabs[0].id; + return sendMessageAsync(activeTabId, { action: "deleteHorse"}) + }) +} diff --git a/Release/Extension/content.js b/Release/Extension/content.js new file mode 100644 index 0000000..9c0d506 --- /dev/null +++ b/Release/Extension/content.js @@ -0,0 +1,424 @@ +chrome.runtime.onMessage.addListener(async (request, sender, sendResponse) => { + try { + if (request.action === "getHorseBasicData") { + console.log("Getting horse data"); + + const idEl = document.querySelector('.right:nth-child(2)'); + const ageEl = document.querySelector('.right:nth-child(6)'); + const genderEl = document.querySelector('img.icon16'); + const breedEl = document.querySelector('.right:nth-child(4)'); + const horseOwnerEl = document.querySelector('.right:nth-child(14)'); + const notesEl = document.querySelector('#notesTextbox'); + if (!idEl || !ageEl || !genderEl || !breedEl) { + console.error("Some required elements for basic horse data not found on the page."); + sendResponse({ success: false, message: "Required elements not found." }); + return true; + } + + const idString = idEl.innerText.replace('#', ''); + const id = BigInt(idString).toString(); + + const horseData = { + id: parseFloat(id), + age: parseInt(ageEl.innerText, 10) || 0, + name: (document.title.replace(/ - Horse Reality.*$/, '') || "Unknown").trim(), + gender: genderEl.alt || "Unknown", + breed: breedEl.innerText || "Unknown", + link: window.location.href || "", + owner: horseOwnerEl.innerText.replaceAll(/\n.*/g, '') || "Unknown", + lastDrawnDate: new Date(Date.now()).toISOString(), + notes: notesEl ? notesEl.value : "" + }; + updateSingleLoadStateUI("Basic", true, false); + console.log("Horse data gathered:", horseData); + sendResponse({ success: true, data: horseData }); + + } else if (request.action === "getHorseCurrentData") { + console.log("Getting current horse selected tab data"); + + const selectedTab = getTabselText(); + console.log("Selected tab:", selectedTab); + + if (selectedTab === "Summary") { + const pedigreeLinks = document.querySelectorAll('.pedigree a'); + if (!pedigreeLinks) { + console.warn("No pedigree links found for Summary tab."); + sendResponse({ success: false, message: "No pedigree links found." }); + return true; + } + const horseSummaryData = Array.from(pedigreeLinks).map(link => link.href); + let horseSummary; + console.log("Related horses:", horseSummaryData); + const conceptionEl = document.querySelector('.horse_blockimg+ .horse_blocktext p') + if (conceptionEl) { + conception = conceptionEl.innerText.split(' by')[0].split(' from')[0].replace('Due on', '').replace('Due ', '').trim(); + const fatherEl = document.querySelector('.horse_blockimg+ .horse_blocktext p a'); + const fatherName = fatherEl.innerText; + const fatherLink = fatherEl.href; + + const ultrasoundGenderEl = document.querySelector('.horse_blocks+ .horse_blocks .horse_blocktitle+ .horse_blocktext p'); + let ultrasoundGender; + if (ultrasoundGenderEl) { + ultrasoundGender = document.querySelector('.horse_blocks+ .horse_blocks .horse_blocktitle+ .horse_blocktext p').innerText.split('\n')[0].trim(); + } + horseSummary = { + RelatedIds: horseSummaryData, + Conception: conception, + FatherName: fatherName, + FatherLink: fatherLink, + UltrasoundGender: ultrasoundGender + }; + } + else { + horseSummary = { + RelatedIds: horseSummaryData + }; + } + + //const ultraSonicEl = document.querySelector('.right:nth-child(10)'); + + try { + sendResponse({ success: true, data: "Processing..." }); + const response = await setHorseSummaryAPIAsync(request.data.id, horseSummary); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + const jsonData = await response.json(); + console.log("API Response:", jsonData); + sendResponse({ success: true, data: jsonData }); + } catch (error) { + console.error("Error in Summary tab:", error); + sendResponse({ success: false, message: error.message }); + } + updateSingleLoadStateUI("Summary", true, false); + } else if (selectedTab === "Training") { + const trainingEl8 = document.querySelector('.top:nth-child(8)'); + const trainingEl6 = document.querySelector('.top:nth-child(6)'); + + let training; + + // Überprüfen, ob `trainingEl8` existiert und nicht "Next level" enthält + if (trainingEl8 && trainingEl8.innerText !== "Next level") { + training = trainingEl8.innerText; + } else if (trainingEl6) { + // Fallback zu `trainingEl6`, wenn `trainingEl8` "Next level" ist oder nicht existiert + training = trainingEl6.innerText; + } else { + // Standardwert, wenn keiner der beiden existiert oder gültig ist + training = "Unknown"; + } + + console.log(training); + + + try { + sendResponse({ success: true, data: "Processing..." }); + const response = await setHorseTrainingAPIAsync(request.data.id, training); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + const jsonData = await response.json(); + console.log("API Response:", jsonData); + sendResponse({ success: true, data: jsonData }); + } catch (error) { + console.error("Error in Training tab:", error); + sendResponse({ success: false, message: error.message }); + } + updateSingleLoadStateUI("Training", true); + } else if (selectedTab === "Achievements") { + const geneticStatsEls = document.querySelectorAll('.genetic_stats'); + if (!geneticStatsEls || geneticStatsEls.length === 0) { + console.error("No genetic_stats elements found for Achievements."); + sendResponse({ success: false, message: "No genetic_stats found for Achievements." }); + return true; + } + const competitionResults = Array.from(document.querySelectorAll('.row_460 .col_120+ .col_70')) + .map(x => parseFloat(x.innerText.trim())) + .sort((a, b) => a - b) + .filter(x => !isNaN(x)) + .length > 0 + ? Array.from(document.querySelectorAll('.row_460 .col_120+ .col_70')) + .map(x => parseFloat(x.innerText.trim())) + .sort((a, b) => a - b) + .filter(x => !isNaN(x)) + : [document.querySelector('.even > p') ? document.querySelector('.even > p').innerText : '']; + + + const showResults = Array.from(document.querySelectorAll('.row_460 .col_120 + .col_90')) + .map(x => parseFloat(x.innerText.trim())) + .sort((a, b) => a - b) + .filter(x => !isNaN(x)) + .length > 0 + ? Array.from(document.querySelectorAll('.row_460 .col_120 + .col_90')) + .map(x => parseFloat(x.innerText.trim())) + .sort((a, b) => a - b) + .filter(x => !isNaN(x)) + : [document.querySelector('.even > p') ? document.querySelector('.even > p').innerText : '']; + + const conformation = Object.fromEntries( + Array.from(document.querySelectorAll('.genetic_table_row')).flatMap(row => { + const keys = Array.from(row.querySelectorAll('.genetic_potential')).map(key => key.innerText.trim()); // Alle Schlüssel holen + const values = Array.from(row.querySelectorAll('.genetic_stats')) + .map(value => value.innerText.trim()) + .filter(value => /poor|below average|average|good|very good/i.test(value)); // Nur relevante Werte behalten + return keys.map((key, index) => [key, values[index]]).filter(pair => pair[1]); // Paare mit gültigen Werten + }) + ); + const conformationMapping = { + "Good": "G", + "Very good": "VG", + "Average": "A", + "Below average": "BA", + "Poor": "P" + }; + + // Alle Werte aus dem bestehenden `conformation`-Objekt durchlaufen + let shortConformation = ""; + + const counts = Object.values(conformation) + .filter(value => conformationMapping[value]) // Nur Werte berücksichtigen, die in der Mapping-Tabelle existieren + .reduce((counts, value) => { + counts[value] = (counts[value] || 0) + 1; // Zähle die Vorkommen jedes Werts + return counts; + }, {}); + + // Gehe durch die gezählten Werte und erstelle die Kurzform + Object.entries(counts).forEach(([value, count]) => { + shortConformation += `${count}${conformationMapping[value]} `; + }); + + // Entferne Leerzeichen am Ende + shortConformation = shortConformation.trim(); + + console.log(shortConformation); + + + + try { + const achievementTab = + { + ShowResults: cleanShowResults(showResults), + Conformation: conformation, + ShortConformation: shortConformation, + MaxShowResult: cleanResult(showResults[showResults.length - 1]), + MinShowResult: cleanResult(showResults[0]), + MaxCompetitionResult: cleanResult(competitionResults[competitionResults.length - 1]), + MinCompetitionResult: cleanResult(competitionResults[0]) + }; + sendResponse({ success: true, data: "Processing..." }); + const response = await setHorseAchievementsAPIAsync(request.data.id, achievementTab); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + const jsonData = await response.json(); + console.log("API Response:", jsonData); + sendResponse({ success: true, data: jsonData }); + } catch (error) { + console.error("Error in Achievements tab:", error); + sendResponse({ success: false, message: error.message }); + } + updateSingleLoadStateUI("Achievements", true, true); + } + else if (selectedTab === "Genetics") { + try { + const gpDiv = Array.from(document.querySelectorAll('.top div')).find(el => el.innerText.includes('GP')); + if (!gpDiv) { + console.error("No GP element found."); + sendResponse({ success: false, message: "No GP element found." }); + return true; + } + const totalGeneticPotentialStr = gpDiv.innerText.replace("GP total: ", "").trim(); + const totalGeneticPotential = parseInt(totalGeneticPotentialStr, 10) || 0; + + const geneticElems = Array.from(document.querySelectorAll('.genetic_name , .genetic_result')); + if (geneticElems.length === 0) { + console.error("No genetic elements found."); + sendResponse({ success: false, message: "No genetic elements found." }); + return true; + } + + const geneticDictionary = Object.fromEntries( + geneticElems.map(x => x.innerText) + .reduce((acc, cur, i, arr) => (i % 2 === 0 ? acc.push([cur, arr[i + 1]]) : null, acc), []) + ); + + // Werte aus Checkboxen sammeln und hinzufügen + const checkboxGenetics = getCheckboxGenetics(); + const additionalColorTextboxValue = document.querySelector('#optionalColorTextbox').value; + if (additionalColorTextboxValue.trim() !== "") + { + checkboxGenetics["Custom"] = additionalColorTextboxValue; + } + Object.assign(geneticDictionary, checkboxGenetics); + + const geneticsStats = Array.from(document.querySelectorAll('.genetic_stats')); + if (geneticsStats.length < 10) { + console.error("Not enough genetic stats found."); + sendResponse({ success: false, message: "Not enough genetic stats found for genetics calculation." }); + return true; + } + + const geneticPotentialList = geneticsStats + .map(x => x.innerText.trim()) + .filter(value => !isNaN(value) && value !== "") + .map(value => parseFloat(value)); + + const GeneticPotential = { + GP: totalGeneticPotential, + GeneticPotential: { + "Acceleration": geneticPotentialList[0], + "Agility": geneticPotentialList[1], + "Balance": geneticPotentialList[2], + "Bascule": geneticPotentialList[3], + "Pulling power": geneticPotentialList[4], + "Speed": geneticPotentialList[5], + "Sprint": geneticPotentialList[6], + "Stamina": geneticPotentialList[7], + "Strength": geneticPotentialList[8], + "Surefootedness": geneticPotentialList[9] + }, + Disciplines: { + "Dressage": geneticPotentialList[1] + geneticPotentialList[2] + geneticPotentialList[8], + "Driving": geneticPotentialList[1] + geneticPotentialList[4] + geneticPotentialList[5] + geneticPotentialList[7] + geneticPotentialList[8], + "Endurance": geneticPotentialList[5] + geneticPotentialList[7] + geneticPotentialList[8] + geneticPotentialList[9], + "Eventing": geneticPotentialList[2] + geneticPotentialList[3] + geneticPotentialList[5] + geneticPotentialList[8] + geneticPotentialList[9], + "Flat Racing": geneticPotentialList[5] + geneticPotentialList[0] + geneticPotentialList[7] + geneticPotentialList[6], + "Show Jumping": geneticPotentialList[0] + geneticPotentialList[1] + geneticPotentialList[3] + geneticPotentialList[6] + geneticPotentialList[8], + "Western Reining": geneticPotentialList[0] + geneticPotentialList[1] + geneticPotentialList[2] + geneticPotentialList[9] + }, + Colors: geneticDictionary + }; + + console.log("Genetic Potential:", GeneticPotential); + sendResponse({ success: true, data: "Processing..." }); + const response = await setHorseGeneticsAPIAsync(request.data.id, GeneticPotential); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + + const jsonData = await response.json(); + console.log("API Response:", jsonData); + + sendResponse({ success: true, data: jsonData }); + } catch (error) { + console.error("Error while processing Genetics tab:", error); + sendResponse({ success: false, message: error.message }); + } + updateSingleLoadStateUI("Genetics", true, false); + } + else if (selectedTab === "Health") { + const healthEl = document.querySelector("#tab_health2 p"); + if (!healthEl) { + console.error("Health element not found."); + sendResponse({ success: false, message: "Health element not found." }); + return true; + } + + const matches = [...healthEl.innerText.matchAll(/:\s*(\w+)/g)]; + const health = Object.fromEntries(document.querySelector("#tab_health2 p").innerText.split('\n').map(l=>l.trim()).filter(l=>l&&l.includes(':')).map(l=>l.split(':').map(x=>x.trim()))); + console.log("Health data:", health); + + try { + sendResponse({ success: true, data: "Processing..." }); + const response = await setHorseHealthAPIAsync(request.data.id, health); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + const jsonData = await response.json(); + console.log("API Response:", jsonData); + sendResponse({ success: true, data: jsonData }); + } catch (error) { + console.error("Error in Health tab:", error); + sendResponse({ success: false, message: error.message }); + } + updateSingleLoadStateUI("Health", true, false); + } + else { + console.warn("Unknown or no tab selected."); + sendResponse({ success: false, message: "Unknown or no tab selected." }); + } + } else if (request.action === "deleteHorse") { + const idEl = document.querySelector('.right:nth-child(2)'); + const idString = idEl.innerText.replace('#', ''); + const id = BigInt(idString).toString(); + sendResponse({ success: true, data: "Processing..." }); + console.log("Deleting horse with ID:", id); + const response = await deleteHorseAPIAsync(id); + if (!response.ok) { + console.error("API returned an error:", response.statusText); + sendResponse({ success: false, message: "API error: " + response.statusText }); + return true; + } + updateLoadStateUI(id); + } + else { + console.error("Unsupported action:", request.action); + sendResponse({ success: false, message: "Unsupported action." }); + } + } catch (error) { + console.error("Unexpected error occurred:", error); + sendResponse({ success: false, message: error.message }); + } + + return true; // Wichtig, um asynchrone Antworten zu ermöglichen +}); + +function getTabselText() { + return document.querySelector('div.tabsel')?.textContent?.trim() || "Unknown"; +} +function cleanResult(value) { + // Check if the value is not a number or cannot be converted to a number + if (isNaN(value) || value === null || value === undefined || value === "") { + return -1; + } + return parseFloat(value); // Convert to a number if it is valid +} + +function cleanShowResults(results) { + // Überprüfen, ob das Array gültig ist + if (!Array.isArray(results)) { + console.error("Invalid ShowResults data: not an array."); + return []; + } + + // Bereinigen der Ergebnisse + return []; +} +function getCheckboxGenetics() { + return { + "RAB": getCheckboxValue('#checkboxRAB1', '#checkboxRAB2', "RAB"), + "Seal": getCheckboxValue('#checkboxSeal1', '#checkboxSeal2', "AT"), + "Flaxen": getCheckboxValue('#checkboxFlaxen1', '#checkboxFlaxen2', "f"), + "Sooty": getCheckboxValue('#checkboxSooty1', '#checkboxSooty2', "Sty"), + "Pangare": getCheckboxValue('#checkboxPangare1', '#checkboxPangare2', "P"), + "Sabino": getCheckboxValue('#checkboxSabino1', '#checkboxSabino2', "Ab") + }; +} +// Funktion zur Bestimmung des Wertes basierend auf beiden Checkboxen +function getCheckboxValue(checkbox1Selector, checkbox2Selector, marker) { + const checkbox1 = document.querySelector(checkbox1Selector); + const checkbox2 = document.querySelector(checkbox2Selector); + + const isCheckbox1Checked = checkbox1?.checked || false; + const isCheckbox2Checked = checkbox2?.checked || false; + + if (isCheckbox1Checked && isCheckbox2Checked) { + return `${marker}/${marker}`; + } else if (isCheckbox1Checked) { + return `${marker}/n`; + } else if (isCheckbox2Checked) { + return `n/${marker}`; + } else { + return `n/n`; + } +} \ No newline at end of file diff --git a/Release/Extension/horse.js b/Release/Extension/horse.js new file mode 100644 index 0000000..8da866c --- /dev/null +++ b/Release/Extension/horse.js @@ -0,0 +1,76 @@ +// Information about loading states of the horses + + +// Modell für ein Pferd + +var globalHorse = { + // Basic + id: null, // ID of the horse + age: null, // age of the horse + horse_name: null, // name of the horse + gender: null, // gender of the horse + breed: null, // breed of the horse + link: null, // link to the horse's page + + // Summary, Pedigree + relatedIds: [], // IDs of related horses + // Training + training: null, // training of the horse e.g. Basic Training + // Genetics + gp: 0, // GP of the horse + features: {}, // features of the horse e.g. Dressage, Driving, Endurance etc. + // Genes + extension: null, // Extension gene of the horse + agouti: null, // Agouti gene of the horse + grey: null, // Grey gene of the horse + cream: null, // Cream gene of the horse + dun: null, // Dun gene of the horse + champagne: null, // Champagne gene of the horse + silver: null, // Silver gene of the horse + mushroom: null, // Mushroom gene of the horse + frame: null, // Frame gene of the horse + appaloosa: null, // Appaloosa gene of the horse + patn1: null, // PATN1 gene of the horse + mitf: null, // MITF gene of the horse + sw2: null, // SW2 gene of the horse + kit: null, // KIT gene of the horse + + rab: null, // RAB gene of the horse + seal: null, // Seal gene of the horse + flaxen: null, // Flaxen gene of the horse + + // Achievements + conformation: {}, // conformation of the horse e.g. Walk, Trot, Canter, Gallop, Jumping, Dressage + shortConformation : null, // Short conformation of the horse (e.g. 12VG) + maxShowResult: 0, // max show result of the horse + minShowResult: 0, // min show result of the horse + maxCompetitionResult: 0, // max competition result of the horse + minCompetitionResult: 0, // min competition result of the horse + + // Health + fertility: null, // fertility of the horse + colicRestance: null, // colic resistance of the horse + hoofQuality: null, // hoof quality of the horse + backProblems: null, // back problems of the horse + respiratoryDisease: null, // respiratory disease of the horse + resistanceToLameness: null, // resistance to lameness of the horse +}; + +function createNewHorse(id, age, horse_name, gender, breed, link) { + globalHorse = new globalHorse(); +} + + +// Funktion zum Setzen von Daten +function setHorseData(id, age, horse_name, gender, breed, link) { + globalHorse.id = id; + globalHorse.age = age; + globalHorse.horse_name = horse_name; + globalHorse.gender = gender; + globalHorse.breed = breed; + globalHorse.link = link; +} + +function getHorseData() { + return globalHorse; +} \ No newline at end of file diff --git a/Release/Extension/init.html b/Release/Extension/init.html new file mode 100644 index 0000000..277a7fc --- /dev/null +++ b/Release/Extension/init.html @@ -0,0 +1,9 @@ + + + + + +

+ + + diff --git a/Release/Extension/manifest.json b/Release/Extension/manifest.json new file mode 100644 index 0000000..759108f --- /dev/null +++ b/Release/Extension/manifest.json @@ -0,0 +1,25 @@ +{ + "manifest_version": 3, + "name": "Horse Reality Data Downloader", + "version": "0.0.1", + "permissions": ["tabs", "activeTab", "downloads", "storage"], + "background": { + "service_worker": "background.js" + }, + "content_scripts": [ + { + "matches": ["https://www.horsereality.com/*"], + "js": [ + "content.js", + "ui.js", + "API.js" + ] + } + ], + "host_permissions": [ + "http://127.0.0.1:5180/*" + ], + "content_security_policy": { + "extension_pages": "script-src 'self'; object-src 'self'; connect-src http://127.0.0.1:5180" + } +} diff --git a/Release/Extension/ui.js b/Release/Extension/ui.js new file mode 100644 index 0000000..a58f4d1 --- /dev/null +++ b/Release/Extension/ui.js @@ -0,0 +1,433 @@ +const rows = [ + { label: 'Basic', emojiId: 'emojiBasic', emoji: '❌' }, + { label: 'Summary', emojiId: 'emojiSummary', emoji: '❌' }, + { label: 'Training', emojiId: 'emojiTraining', emoji: '❌' }, + { label: 'Genetics', emojiId: 'emojiGenetics', emoji: '❌' }, + { label: 'Achievements', emojiId: 'emojiAchievements', emoji: '❌' }, + { label: 'Health', emojiId: 'emojiHealth', emoji: '❌' }, +]; +// Warten, bis das DOM vollständig geladen ist +document.addEventListener("DOMContentLoaded", function () { + const banner = document.querySelector('.horse_banner'); + if (banner) { + const div = document.createElement('div'); + div.className = 'collector_ui'; + Object.assign(div.style, { + position: 'absolute', + right: '-220px', + top: '20px', + zIndex: '1', + padding: '10px', + backgroundColor: '#FFFFFFD9', + width: '180px', + minHeight: '50px', + display: 'flex', + flexDirection: 'column', + gap: '10px' + }); + const serverIsRunning = checkServerStatus(div); + // Container für die Buttons + const buttonContainer = document.createElement('div'); + Object.assign(buttonContainer.style, { + display: 'flex', + gap: '5px', + justifyContent: 'space-between', + width: '100%' + }); + // Textbox für Notizen + const notesTextbox = document.createElement('textarea'); + notesTextbox.id = 'notesTextbox'; + notesTextbox.placeholder = 'Notes...'; + notesTextbox.type = 'text'; + Object.assign(notesTextbox.style, { + width: '100%', + minHeight: '30px', + padding: '0px', + fontSize: '14px', + border: '1px solid #ccc', + borderRadius: '5px', + resize: 'vertical' + }); + // Update Horse Button + const updateHorseButton = document.createElement('button'); + updateHorseButton.textContent = 'Update'; + Object.assign(updateHorseButton.style, { + padding: '10px 15px', + flex: '3', + backgroundColor: '#ffa200', + color: '#fff', + border: 'none', + borderRadius: '5px', + cursor: 'pointer', + transition: 'background-color 0.3s ease' + }); + updateHorseButton.addEventListener("click", function () { + chrome.runtime.sendMessage({ action: "updateHorseData" }); + }); + updateHorseButton.addEventListener('mouseenter', function () { + updateHorseButton.style.backgroundColor = '#bf8700'; + }); + updateHorseButton.addEventListener('mouseleave', function () { + updateHorseButton.style.backgroundColor = '#ffa200'; + }); + + // Delete Horse Button + const deleteHorseButton = document.createElement('button'); + deleteHorseButton.textContent = 'X'; + Object.assign(deleteHorseButton.style, { + padding: '5px', + flex: '1', + backgroundColor: '#ff0000', + color: '#fff', + border: 'none', + borderRadius: '5px', + cursor: 'pointer', + textAlign: 'center', + transition: 'background-color 0.3s ease' + }); + deleteHorseButton.addEventListener("click", function () { + chrome.runtime.sendMessage({ action: "deleteHorse" }); + }); + deleteHorseButton.addEventListener('mouseenter', function () { + deleteHorseButton.style.backgroundColor = '#bf0000'; + }); + deleteHorseButton.addEventListener('mouseleave', function () { + deleteHorseButton.style.backgroundColor = '#ff0000'; + }); + + // Buttons zum Container hinzufügen + buttonContainer.appendChild(updateHorseButton); + buttonContainer.appendChild(deleteHorseButton); + + // Buttons oben hinzufügen + div.appendChild(buttonContainer); + + // Labels mit Checkboxen hinzufügen + const labelContainer = document.createElement('div'); + Object.assign(labelContainer.style, { + display: 'flex', + flexDirection: 'column', + gap: '10px' + }); + + // Labels mit Checkboxen hinzufügen + const labels = [ + { name: "RAB", id: "RAB" }, + { name: "Seal", id: "Seal" }, + { name: "Flaxen", id: "Flaxen" }, + { name: "Sooty", id: "Sooty" }, + { name: "Pangare", id: "Pangare" }, + { name: "Sabino", id: "Sabino" } + ]; + + labels.forEach(label => { + const labelRow = document.createElement('div'); + Object.assign(labelRow.style, { + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + gap: '5px' + }); + + const labelText = document.createElement('label'); + labelText.textContent = label.name; + Object.assign(labelText.style, { + flex: '1', + fontSize: '14px', + color: '#333' + }); + + const checkboxContainer = document.createElement('div'); + Object.assign(checkboxContainer.style, { + display: 'flex', + gap: '5px' + }); + + // Erste Checkbox + const checkbox1 = document.createElement('input'); + checkbox1.type = 'checkbox'; + checkbox1.id = `checkbox${label.id}1`; // ID mit Suffix 1 + + // Zweite Checkbox + const checkbox2 = document.createElement('input'); + checkbox2.type = 'checkbox'; + checkbox2.id = `checkbox${label.id}2`; // ID mit Suffix 2 + + checkboxContainer.appendChild(checkbox1); + checkboxContainer.appendChild(checkbox2); + + labelRow.appendChild(labelText); + labelRow.appendChild(checkboxContainer); + + labelContainer.appendChild(labelRow); + }); + + + // Überprüfen, ob der Tab "Genetics" gewählt ist, und Labels aktivieren/deaktivieren + function updateLabelStates() { + const isGeneticsTab = getTabselText() === "Genetics"; + Array.from(labelContainer.querySelectorAll('input')).forEach(input => { + input.disabled = !isGeneticsTab; + input.style.opacity = isGeneticsTab ? '1' : '0.5'; + }); + Array.from(labelContainer.querySelectorAll('label')).forEach(label => { + label.style.color = isGeneticsTab ? '#333' : '#aaa'; + }); + if (!isGeneticsTab) + { + document.querySelector('#optionalColorTextbox').disabled = true; + document.querySelector('#optionalColorTextbox').style.opacity = '0.5'; + } + else + { + document.querySelector('#optionalColorTextbox').disabled = false; + document.querySelector('#optionalColorTextbox').style.opacity = '1'; + } + } + + + // Tabelle erstellen + const table = document.createElement('div'); + Object.assign(table.style, { + display: 'flex', + flexDirection: 'column', + width: '100%', + gap: '12px' + }); + + // Zeilen für Tabelle hinzufügen (bleibt unverändert) + rows.forEach(row => { + const rowDiv = document.createElement('div'); + Object.assign(rowDiv.style, { + display: 'flex', + justifyContent: 'space-between', + width: '100%' + }); + + const labelCell = document.createElement('div'); + labelCell.textContent = row.label; + labelCell.style.flex = '1'; + + const emojiCell = document.createElement('div'); + const emojiSpan = document.createElement('span'); + emojiSpan.id = row.emojiId; + emojiSpan.textContent = row.emoji; + emojiCell.appendChild(emojiSpan); + emojiCell.style.flex = '0'; + + rowDiv.appendChild(labelCell); + rowDiv.appendChild(emojiCell); + table.appendChild(rowDiv); + }); + + div.appendChild(notesTextbox); + div.appendChild(table); + // Labels und Checkboxen zum Div hinzufügen + div.appendChild(labelContainer); + // Textbox für optionale Farbe + const optionalColorTextbox = document.createElement('textarea'); + optionalColorTextbox.type = 'text'; + optionalColorTextbox.placeholder = 'Additional Color...'; + optionalColorTextbox.id = 'optionalColorTextbox'; + Object.assign(optionalColorTextbox.style, { + width: '100%', + height: '30px', + padding: '0px', + fontSize: '14px', + border: '1px solid #ccc', + borderRadius: '5px', + resize: 'vertical' + }); + div.appendChild(optionalColorTextbox); + + // Linie hinzufügen + const line = document.createElement('hr'); + Object.assign(line.style, { + width: '100%', + border: '0', + height: '1px', + backgroundColor: '#ddd', + margin: '10px 0' + }); + + const legendTitle = document.createElement('div'); + legendTitle.textContent = 'Legend:'; + Object.assign(legendTitle.style, { + fontWeight: 'bold', + fontSize: '14px', + color: '#555' + }); + + const legendTexts = [ + { emoji: '✅', text: 'Loaded' }, + { emoji: '☑️', text: 'Dynamic' }, + { emoji: '🔄', text: 'Needs Refresh' }, + { emoji: '❌', text: 'Not Loaded' }, + ]; + const legend = document.createElement('div'); + Object.assign(legend.style, { + display: 'flex', + flexDirection: 'column', + gap: '5px', + fontSize: '12px', + color: '#333' + }); + + legendTexts.forEach(item => { + const legendRow = document.createElement('div'); + Object.assign(legendRow.style, { + display: 'flex', + alignItems: 'center', + gap: '5px' + }); + + const emoji = document.createElement('span'); + emoji.textContent = item.emoji; + emoji.style.fontSize = '14px'; + + const text = document.createElement('span'); + text.textContent = item.text; + + legendRow.appendChild(emoji); + legendRow.appendChild(text); + legend.appendChild(legendRow); + }); + + div.appendChild(line); + div.appendChild(legendTitle); + div.appendChild(legend); + banner.appendChild(div); + + // Tab-Wechsel überwachen + document.addEventListener("click", updateLabelStates); + updateLabelStates(); // Initialer Zustand + + const horseId = document.querySelector('.right:nth-child(2)').innerText.replace('#', ''); + if (serverIsRunning) + updateLoadStateUI(horseId); + } +}); +async function checkServerStatus(div) { + const serverIsRunning = await pingServer(); + if (!serverIsRunning){ + // Erstelle das Overlay + const overlay = document.createElement('div'); + + // Style für das Overlay + overlay.style.position = 'absolute'; + overlay.style.top = '0'; + overlay.style.left = '0'; + overlay.style.width = '100%'; + overlay.style.height = '100%'; + overlay.style.backgroundColor = 'rgba(255, 255, 255, 0.8)'; + overlay.style.display = 'flex'; + overlay.style.justifyContent = 'center'; + overlay.style.alignItems = 'center'; + overlay.style.zIndex = '9999'; + + // Erstelle den Text + const text = document.createElement('div'); + text.innerText = 'Server not running ❌'; + text.style.color = 'black'; + text.style.fontSize = '1.5em'; + text.style.fontWeight = 'bold'; + + // Text in das Overlay einfügen + overlay.appendChild(text); + div.appendChild(overlay); + return false; + } + return true; +} +// Funktion zur Ermittlung des Tabs +function getTabselText() { + return document.querySelector('div.tabsel')?.textContent?.trim() || "Unknown"; +} +async function updateLoadStateUI(horseId) { + const loadState = await getHorseLoadStateAPIAsync(horseId); + if (!loadState) { + console.info("Failed to retrieve load state."); + return; + } + + // Mappe die LoadState-Werte auf die UI-Emojis + const loadStateMapping = { + Basic: loadState.basicInfoLoaded ? (loadState.basicInfoNeedsRefresh ? '🔄' : '✅') : '❌', + Summary: loadState.summaryLoaded ? (loadState.summaryNeedsRefresh ? '🔄' : '✅') : '❌', + Training: loadState.trainingLoaded ? (loadState.trainingNeedsRefresh ? '🔄' : '✅') : '❌', + Genetics: loadState.geneticsLoaded ? (loadState.geneticsNeedsRefresh ? '🔄' : '✅') : '❌', + Achievements: loadState.achievementsLoaded ? (loadState.achievementsNeedsRefresh ? '🔄' : '☑️') : '❌', + Health: loadState.healthLoaded ? (loadState.healthNeedsRefresh ? '🔄' : '✅') : '❌', + }; + // Aktualisiere die Rows in der UI + rows.forEach(row => { + const emojiElement = document.getElementById(row.emojiId); + if (emojiElement && loadStateMapping[row.label]) { + emojiElement.textContent = loadStateMapping[row.label]; // Setze das Emoji basierend auf dem Ladezustand + } + }); + const colors = await getColorsAPIAsync(horseId); + if (colors) { + // Update die Checkboxen basierend auf den Farben + updateColors(colors); + } + const notes = await getHorseNotesAPIAsync(horseId); + if (notes) { + // Update die Notizen + document.querySelector('#notesTextbox').value = notes; + } +} +function updateColors(colors) { + const mappings = { + RAB: '#checkboxRAB', + Seal: '#checkboxSeal', + Flaxen: '#checkboxFlaxen', + Sooty: '#checkboxSooty', + Pangare: '#checkboxPangare', + Sabino: '#checkboxSabino' + }; + + Object.entries(mappings).forEach(([key, baseId]) => { + const checkbox1 = document.querySelector(`${baseId}1`); + const checkbox2 = document.querySelector(`${baseId}2`); + + if (colors[key]) { + // Farben in der Form "RAB/RAB", "RAB/n", "n/RAB", "n/n" + const [left, right] = colors[key].split('/'); + + // Aktualisiere Checkboxen basierend auf den Werten + if (checkbox1) checkbox1.checked = left !== 'n'; + if (checkbox2) checkbox2.checked = right !== 'n'; + } else { + // Wenn keine Farben vorhanden, Checkboxen deaktivieren + if (checkbox1) checkbox1.checked = false; + if (checkbox2) checkbox2.checked = false; + } + }); + if ("Custom" in colors) + { + document.querySelector('#optionalColorTextbox').value = colors["Custom"]; + } +} +function updateSingleLoadStateUI(loadStateKey, isLoaded, needsRefresh) { + // Mappe das LoadState-Schlüssel auf das Emoji + const loadStateMapping = { + true: needsRefresh ? '☑️' : '✅', // Geladen, aber möglicherweise veraltet + false: '❌' // Nicht geladen + }; + + // Suche die passende Row basierend auf dem Schlüssel + const row = rows.find(row => row.label === loadStateKey); + if (!row) { + console.error(`Row for ${loadStateKey} not found.`); + return; + } + + // Aktualisiere das Emoji in der UI + const emojiElement = document.getElementById(row.emojiId); + if (emojiElement) { + emojiElement.textContent = loadStateMapping[isLoaded]; // Setze das Emoji entsprechend des Status + } else { + console.error(`Emoji element for ${loadStateKey} not found.`); + } +} diff --git a/Release/HRExporter.zip b/Release/HRExporter.zip new file mode 100644 index 0000000..95cba2b Binary files /dev/null and b/Release/HRExporter.zip differ diff --git a/Release/Installer_RUN_AS_ADMIN.bat b/Release/Installer_RUN_AS_ADMIN.bat new file mode 100644 index 0000000..5907893 --- /dev/null +++ b/Release/Installer_RUN_AS_ADMIN.bat @@ -0,0 +1,45 @@ +@echo off + +:: Set to current Dictionary +cd /d "%~dp0" + +:: File name to look for +set "FILE_NAME=HRServer.exe" + +:: Path for the server (in "Server") +set "SEARCH_PATH=%~dp0Server" + +:: Search within "Server" +for /f "delims=" %%F in ('dir /b /s "%SEARCH_PATH%\%FILE_NAME%" 2^>nul') do ( + set "FULL_PATH=%%F" + goto :FOUND +) + +:: If no file was found +echo File "%FILE_NAME%" was not found +pause +exit /b 1 + +:FOUND +:: Name des Dienstes +set "SERVICE_NAME=HRServer" + +:: Create service +sc create "%SERVICE_NAME%" binPath= "\"%FULL_PATH%\"" start= auto +if %errorlevel% neq 0 ( + echo Error creating a service! + pause + exit /b 1 +) + +:: Start service +sc start "%SERVICE_NAME%" +if %errorlevel% neq 0 ( + echo Error starting the service! + pause + exit /b 1 +) + +echo The service "%SERVICE_NAME%" was created successfully and started. +pause +exit /b 0 diff --git a/Release/Server/HRServer.deps.json b/Release/Server/HRServer.deps.json new file mode 100644 index 0000000..768364f --- /dev/null +++ b/Release/Server/HRServer.deps.json @@ -0,0 +1,791 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {}, + ".NETCoreApp,Version=v8.0/win-x64": { + "HRServer/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting.WindowsServices": "9.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "HRServer.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Hosting": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "System.ServiceProcess.ServiceController": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "runtime": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0" + }, + "runtime": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Json/9.0.0": { + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + } + } + }, + "libraries": { + "HRServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "path": "microsoft.extensions.configuration.json/9.0.0", + "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "path": "microsoft.extensions.hosting/9.0.0", + "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.WindowsServices/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==", + "path": "microsoft.extensions.hosting.windowsservices/9.0.0", + "hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "path": "microsoft.extensions.logging.console/9.0.0", + "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "path": "microsoft.extensions.logging.debug/9.0.0", + "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==", + "path": "system.serviceprocess.servicecontroller/9.0.0", + "hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Release/Server/HRServer.dll b/Release/Server/HRServer.dll new file mode 100644 index 0000000..3d4b83d Binary files /dev/null and b/Release/Server/HRServer.dll differ diff --git a/Release/Server/HRServer.exe b/Release/Server/HRServer.exe new file mode 100644 index 0000000..1c9eeff Binary files /dev/null and b/Release/Server/HRServer.exe differ diff --git a/Release/Server/HRServer.pdb b/Release/Server/HRServer.pdb new file mode 100644 index 0000000..85cf8b0 Binary files /dev/null and b/Release/Server/HRServer.pdb differ diff --git a/Release/Server/HRServer.runtimeconfig.json b/Release/Server/HRServer.runtimeconfig.json new file mode 100644 index 0000000..6a48a7e --- /dev/null +++ b/Release/Server/HRServer.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Release/Server/Microsoft.Extensions.Configuration.Abstractions.dll b/Release/Server/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..5de000c Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/Release/Server/Microsoft.Extensions.Configuration.Binder.dll b/Release/Server/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..3853207 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/Release/Server/Microsoft.Extensions.Configuration.CommandLine.dll b/Release/Server/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..78764ad Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/Release/Server/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/Release/Server/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..ec8833e Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/Release/Server/Microsoft.Extensions.Configuration.FileExtensions.dll b/Release/Server/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..a1e0a4d Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/Release/Server/Microsoft.Extensions.Configuration.Json.dll b/Release/Server/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..adf0f8b Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/Release/Server/Microsoft.Extensions.Configuration.UserSecrets.dll b/Release/Server/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..12edc4f Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/Release/Server/Microsoft.Extensions.Configuration.dll b/Release/Server/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..dea10fa Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Configuration.dll differ diff --git a/Release/Server/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Release/Server/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..405651a Binary files /dev/null and b/Release/Server/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/Release/Server/Microsoft.Extensions.DependencyInjection.dll b/Release/Server/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..e988469 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/Release/Server/Microsoft.Extensions.Diagnostics.Abstractions.dll b/Release/Server/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..9aca1e9 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/Release/Server/Microsoft.Extensions.Diagnostics.dll b/Release/Server/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..b2e88ec Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Diagnostics.dll differ diff --git a/Release/Server/Microsoft.Extensions.FileProviders.Abstractions.dll b/Release/Server/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..8cd930a Binary files /dev/null and b/Release/Server/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/Release/Server/Microsoft.Extensions.FileProviders.Physical.dll b/Release/Server/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..408a0c8 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/Release/Server/Microsoft.Extensions.FileSystemGlobbing.dll b/Release/Server/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..287fbf3 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/Release/Server/Microsoft.Extensions.Hosting.Abstractions.dll b/Release/Server/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..ed0bab4 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/Release/Server/Microsoft.Extensions.Hosting.WindowsServices.dll b/Release/Server/Microsoft.Extensions.Hosting.WindowsServices.dll new file mode 100644 index 0000000..c376245 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Hosting.WindowsServices.dll differ diff --git a/Release/Server/Microsoft.Extensions.Hosting.dll b/Release/Server/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..8e0bfd3 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Hosting.dll differ diff --git a/Release/Server/Microsoft.Extensions.Logging.Abstractions.dll b/Release/Server/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..8d27412 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/Release/Server/Microsoft.Extensions.Logging.Configuration.dll b/Release/Server/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..69a9032 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/Release/Server/Microsoft.Extensions.Logging.Console.dll b/Release/Server/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..107af95 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Logging.Console.dll differ diff --git a/Release/Server/Microsoft.Extensions.Logging.Debug.dll b/Release/Server/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..a9aa10e Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/Release/Server/Microsoft.Extensions.Logging.EventLog.dll b/Release/Server/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..95c3d66 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/Release/Server/Microsoft.Extensions.Logging.EventSource.dll b/Release/Server/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..55b4025 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/Release/Server/Microsoft.Extensions.Logging.dll b/Release/Server/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..754fabe Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Logging.dll differ diff --git a/Release/Server/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/Release/Server/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..7fa08d7 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/Release/Server/Microsoft.Extensions.Options.dll b/Release/Server/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..d5c55a2 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Options.dll differ diff --git a/Release/Server/Microsoft.Extensions.Primitives.dll b/Release/Server/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..8cb2645 Binary files /dev/null and b/Release/Server/Microsoft.Extensions.Primitives.dll differ diff --git a/Release/Server/Microsoft.OpenApi.dll b/Release/Server/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/Release/Server/Microsoft.OpenApi.dll differ diff --git a/Release/Server/Swashbuckle.AspNetCore.Swagger.dll b/Release/Server/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/Release/Server/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/Release/Server/Swashbuckle.AspNetCore.SwaggerGen.dll b/Release/Server/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/Release/Server/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/Release/Server/Swashbuckle.AspNetCore.SwaggerUI.dll b/Release/Server/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/Release/Server/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/Release/Server/System.Diagnostics.DiagnosticSource.dll b/Release/Server/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..bae10b1 Binary files /dev/null and b/Release/Server/System.Diagnostics.DiagnosticSource.dll differ diff --git a/Release/Server/System.Diagnostics.EventLog.Messages.dll b/Release/Server/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..e6e8b51 Binary files /dev/null and b/Release/Server/System.Diagnostics.EventLog.Messages.dll differ diff --git a/Release/Server/System.Diagnostics.EventLog.dll b/Release/Server/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..3565362 Binary files /dev/null and b/Release/Server/System.Diagnostics.EventLog.dll differ diff --git a/Release/Server/System.IO.Pipelines.dll b/Release/Server/System.IO.Pipelines.dll new file mode 100644 index 0000000..712f47d Binary files /dev/null and b/Release/Server/System.IO.Pipelines.dll differ diff --git a/Release/Server/System.ServiceProcess.ServiceController.dll b/Release/Server/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..0602405 Binary files /dev/null and b/Release/Server/System.ServiceProcess.ServiceController.dll differ diff --git a/Release/Server/System.Text.Encodings.Web.dll b/Release/Server/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..5c04169 Binary files /dev/null and b/Release/Server/System.Text.Encodings.Web.dll differ diff --git a/Release/Server/System.Text.Json.dll b/Release/Server/System.Text.Json.dll new file mode 100644 index 0000000..f4dd021 Binary files /dev/null and b/Release/Server/System.Text.Json.dll differ diff --git a/Release/Server/appsettings.Development.json b/Release/Server/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/Release/Server/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/Release/Server/appsettings.json b/Release/Server/appsettings.json new file mode 100644 index 0000000..a9038e9 --- /dev/null +++ b/Release/Server/appsettings.json @@ -0,0 +1,16 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5180" + } + } + } +} diff --git a/Release/Server/web.config b/Release/Server/web.config new file mode 100644 index 0000000..29fb4d4 --- /dev/null +++ b/Release/Server/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file