Compare commits
8 Commits
Standortän
...
dev-mkoebi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a75c853e79 | ||
|
|
70dd3f0a3a | ||
|
|
4eba0b5139 | ||
|
|
7682bd2fd6 | ||
|
|
690626582e | ||
|
|
e56cb114fa | ||
|
|
a67f9ff77f | ||
|
|
6d4b5a15fc |
@@ -1,42 +1,40 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<DebugType>embedded</DebugType>
|
<DebugType>embedded</DebugType>
|
||||||
<Platforms>AnyCPU;x86</Platforms>
|
<Platforms>AnyCPU;x86</Platforms>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Remove="NLog.config" />
|
<None Remove="NLog.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<COMReference Include="Microsoft.Office.Interop.Excel">
|
<PackageReference Include="Microsoft.Office.Interop.Excel" Version="16.0.0.0" />
|
||||||
<WrapperTool>tlbimp</WrapperTool>
|
<PackageReference Include="ODP.NetCore" Version="2.0.12" />
|
||||||
<VersionMinor>8</VersionMinor>
|
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
|
||||||
<VersionMajor>1</VersionMajor>
|
</ItemGroup>
|
||||||
<Guid>00020813-0000-0000-c000-000000000046</Guid>
|
|
||||||
<Lcid>0</Lcid>
|
|
||||||
<Isolated>false</Isolated>
|
|
||||||
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
||||||
</COMReference>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="NLog.config">
|
<Folder Include="config\" />
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
</ItemGroup>
|
||||||
</Content>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="NLog" Version="6.1.3" />
|
<Content Include="NLog.config">
|
||||||
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="23.26.200" />
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</ItemGroup>
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Update="config.txt">
|
<PackageReference Include="NLog" Version="6.1.3" />
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="23.26.200" />
|
||||||
</None>
|
</ItemGroup>
|
||||||
</ItemGroup>
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="config.txt">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
38
config/Jenkinsfile
vendored
Normal file
38
config/Jenkinsfile
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
pipeline
|
||||||
|
{
|
||||||
|
agent
|
||||||
|
{
|
||||||
|
node
|
||||||
|
{
|
||||||
|
label 'Jenkins_Homer'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages
|
||||||
|
{
|
||||||
|
stage('Build')
|
||||||
|
{
|
||||||
|
steps
|
||||||
|
{
|
||||||
|
bat "dotnet --list-sdks"
|
||||||
|
bat "\"${tool 'MSBuild17'}\" ${WORKSPACE}\\MergeCMInpro.csproj /t:Restore /t:Rebuild /p:Configuration=Release"
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
stage('SonarQube')
|
||||||
|
{
|
||||||
|
environment
|
||||||
|
{
|
||||||
|
scannerHome = tool 'sonar-scanner4.4'
|
||||||
|
project = 'mergecminpro'
|
||||||
|
token = 'sqa_07d4e3802cf6283fc38a002e75bd0a5eb158af87'
|
||||||
|
}
|
||||||
|
steps
|
||||||
|
{
|
||||||
|
withSonarQubeEnv('SonarQube_Homer')
|
||||||
|
{
|
||||||
|
bat "${scannerHome}/bin/sonar-scanner -Dsonar.projectKey=${project} -Dsonar.login=${token}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user