- console-cs {to:'.'}
project,C#
C# .NET 5 Console App - console-fs {to:'.'}
project,F#
F# .NET 5 Console App - console-vb {to:'.'}
project,VB
VB .NET 5 Console App - console-ss {to:'.'}
project,S#
#Script Console App - console-lisp {to:'.'}
project,Lisp
#Script Lisp Console App - init {to:'.'}
project,C#
Empty .NET 5 ServiceStack App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using ServiceStack; | |
using ServiceStack.Messaging; | |
using ServiceStack.RabbitMq; | |
[assembly: HostingStartup(typeof(MyApp.ConfigureMq))] | |
namespace MyApp; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using ServiceStack; | |
using ServiceStack.Messaging; | |
[assembly: HostingStartup(typeof(MyApp.ConfigureMq))] | |
namespace MyApp; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>net8.0;net472</TargetFrameworks> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="NUnit" Version="3.13.*" /> | |
<PackageReference Include="NUnit3TestAdapter" Version="4.1.*" /> | |
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Funq; | |
using ServiceStack; | |
using MyApp.ServiceInterface; | |
[assembly: HostingStartup(typeof(MyApp.AppHost))] | |
namespace MyApp; | |
public class AppHost : AppHostBase, IHostingStartup | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Funq; | |
using ServiceStack; | |
using MyApp.ServiceInterface; | |
[assembly: HostingStartup(typeof(MyApp.AppHost))] | |
namespace MyApp; | |
public class AppHost : AppHostBase, IHostingStartup | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>net8.0</TargetFramework> | |
<Nullable>enable</Nullable> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<OutputType>Exe</OutputType> | |
<NoWarn>1591</NoWarn> | |
</PropertyGroup> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- BSD License: https://docs.servicestack.net/BSD-LICENSE.txt --> | |
<template> | |
<div class="hidden"></div> | |
</template> | |
<script> | |
export default { | |
created() { | |
const component = this; | |
this.handler = function (e) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM jetbrains/teamcity-agent:latest | |
ARG DEBIAN_FRONTEND=noninteractive | |
USER root | |
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils | |
RUN apt-get update | |
# remove previous dotnet from teamcity-agent install | |
RUN rm /usr/bin/dotnet \ | |
&& rm -rf /usr/share/dotnet \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>net5.0;net472</TargetFrameworks> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="NUnit3TestAdapter" Version="3.*" /> | |
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" /> | |
<PackageReference Include="NUnit" Version="3.*" /> |