12 changed files with 705 additions and 0 deletions
@ -0,0 +1,199 @@ |
|||
root = true |
|||
|
|||
[*] |
|||
indent_style = space |
|||
|
|||
[*.{props,targets,csproj}] |
|||
indent_style = space |
|||
indent_size = 2 |
|||
|
|||
[*.{js,json}] |
|||
indent_style = space |
|||
indent_size = 2 |
|||
|
|||
[*.{yml,yaml}] |
|||
indent_style = space |
|||
indent_size = 2 |
|||
|
|||
[*.{cs,csx}] |
|||
indent_size = 4 |
|||
insert_final_newline = true |
|||
charset = utf-8-bom |
|||
|
|||
# Code files |
|||
[*.{cs,csx,vb,vbx}] |
|||
indent_size = 4 |
|||
insert_final_newline = true |
|||
charset = utf-8-bom |
|||
|
|||
# Powershell files |
|||
[*.ps1] |
|||
indent_size = 2 |
|||
|
|||
# Shell script files |
|||
[*.sh] |
|||
end_of_line = lf |
|||
indent_size = 2 |
|||
|
|||
# Dotnet code style settings: |
|||
[*.{cs,vb}] |
|||
# Sort using and Import directives with System.* appearing first |
|||
dotnet_sort_system_directives_first = true |
|||
# Avoid "this." and "Me." if not necessary |
|||
dotnet_style_qualification_for_field = false:refactoring |
|||
dotnet_style_qualification_for_property = false:refactoring |
|||
dotnet_style_qualification_for_method = false:refactoring |
|||
dotnet_style_qualification_for_event = false:refactoring |
|||
|
|||
# Use language keywords instead of framework type names for type references |
|||
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion |
|||
dotnet_style_predefined_type_for_member_access = true:suggestion |
|||
|
|||
# Suggest more modern language features when available |
|||
dotnet_style_object_initializer = true:suggestion |
|||
dotnet_style_collection_initializer = true:suggestion |
|||
dotnet_style_coalesce_expression = true:suggestion |
|||
dotnet_style_null_propagation = true:suggestion |
|||
dotnet_style_explicit_tuple_names = true:suggestion |
|||
|
|||
# Non-private static fields are PascalCase |
|||
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = suggestion |
|||
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields |
|||
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style |
|||
|
|||
dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field |
|||
dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected |
|||
dotnet_naming_symbols.non_private_static_fields.required_modifiers = static |
|||
|
|||
dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case |
|||
|
|||
# Non-private readonly fields are PascalCase |
|||
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.severity = suggestion |
|||
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.symbols = non_private_readonly_fields |
|||
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.style = non_private_readonly_field_style |
|||
|
|||
dotnet_naming_symbols.non_private_readonly_fields.applicable_kinds = field |
|||
dotnet_naming_symbols.non_private_readonly_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected |
|||
dotnet_naming_symbols.non_private_readonly_fields.required_modifiers = readonly |
|||
|
|||
dotnet_naming_style.non_private_readonly_field_style.capitalization = pascal_case |
|||
|
|||
# Constants are PascalCase |
|||
dotnet_naming_rule.constants_should_be_pascal_case.severity = suggestion |
|||
dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants |
|||
dotnet_naming_rule.constants_should_be_pascal_case.style = constant_style |
|||
|
|||
dotnet_naming_symbols.constants.applicable_kinds = field, local |
|||
dotnet_naming_symbols.constants.required_modifiers = const |
|||
|
|||
dotnet_naming_style.constant_style.capitalization = pascal_case |
|||
|
|||
# Static fields are camelCase |
|||
dotnet_naming_rule.static_fields_should_be_camel_case.severity = suggestion |
|||
dotnet_naming_rule.static_fields_should_be_camel_case.symbols = static_fields |
|||
dotnet_naming_rule.static_fields_should_be_camel_case.style = static_field_style |
|||
|
|||
dotnet_naming_symbols.static_fields.applicable_kinds = field |
|||
dotnet_naming_symbols.static_fields.required_modifiers = static |
|||
|
|||
dotnet_naming_style.static_field_style.capitalization = camel_case |
|||
|
|||
# Instance fields are camelCase |
|||
dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion |
|||
dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields |
|||
dotnet_naming_rule.instance_fields_should_be_camel_case.style = instance_field_style |
|||
|
|||
dotnet_naming_symbols.instance_fields.applicable_kinds = field |
|||
|
|||
dotnet_naming_style.instance_field_style.capitalization = camel_case |
|||
|
|||
# Locals and parameters are camelCase |
|||
dotnet_naming_rule.locals_should_be_camel_case.severity = suggestion |
|||
dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters |
|||
dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style |
|||
|
|||
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local |
|||
|
|||
dotnet_naming_style.camel_case_style.capitalization = camel_case |
|||
|
|||
# Local functions are PascalCase |
|||
dotnet_naming_rule.local_functions_should_be_pascal_case.severity = suggestion |
|||
dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions |
|||
dotnet_naming_rule.local_functions_should_be_pascal_case.style = local_function_style |
|||
|
|||
dotnet_naming_symbols.local_functions.applicable_kinds = local_function |
|||
|
|||
dotnet_naming_style.local_function_style.capitalization = pascal_case |
|||
|
|||
# By default, name items with PascalCase |
|||
dotnet_naming_rule.members_should_be_pascal_case.severity = suggestion |
|||
dotnet_naming_rule.members_should_be_pascal_case.symbols = all_members |
|||
dotnet_naming_rule.members_should_be_pascal_case.style = pascal_case_style |
|||
|
|||
dotnet_naming_symbols.all_members.applicable_kinds = * |
|||
|
|||
dotnet_naming_style.pascal_case_style.capitalization = pascal_case |
|||
|
|||
[*.cs] |
|||
# Newline settings |
|||
csharp_new_line_before_open_brace = all |
|||
csharp_new_line_before_else = true |
|||
csharp_new_line_before_catch = true |
|||
csharp_new_line_before_finally = true |
|||
csharp_new_line_before_members_in_object_initializers = true |
|||
csharp_new_line_before_members_in_anonymous_types = true |
|||
csharp_new_line_between_query_expression_clauses = true |
|||
|
|||
# Indentation preferences |
|||
csharp_indent_block_contents = true |
|||
csharp_indent_braces = false |
|||
csharp_indent_case_contents = true |
|||
csharp_indent_case_contents_when_block = true |
|||
csharp_indent_switch_labels = true |
|||
csharp_indent_labels = flush_left |
|||
|
|||
# Prefer "var" everywhere |
|||
csharp_style_var_for_built_in_types = true:suggestion |
|||
csharp_style_var_when_type_is_apparent = true:suggestion |
|||
csharp_style_var_elsewhere = true:suggestion |
|||
|
|||
# Prefer method-like constructs to have a block body |
|||
csharp_style_expression_bodied_methods = false:none |
|||
csharp_style_expression_bodied_constructors = false:none |
|||
csharp_style_expression_bodied_operators = false:none |
|||
|
|||
# Prefer property-like constructs to have an expression-body |
|||
csharp_style_expression_bodied_properties = true:none |
|||
csharp_style_expression_bodied_indexers = true:none |
|||
csharp_style_expression_bodied_accessors = true:none |
|||
|
|||
# Suggest more modern language features when available |
|||
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion |
|||
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion |
|||
csharp_style_inlined_variable_declaration = true:suggestion |
|||
csharp_style_throw_expression = true:suggestion |
|||
csharp_style_conditional_delegate_call = true:suggestion |
|||
|
|||
# Space preferences |
|||
csharp_space_after_cast = false |
|||
csharp_space_after_colon_in_inheritance_clause = true |
|||
csharp_space_after_comma = true |
|||
csharp_space_after_dot = false |
|||
csharp_space_after_keywords_in_control_flow_statements = true |
|||
csharp_space_after_semicolon_in_for_statement = true |
|||
csharp_space_around_binary_operators = before_and_after |
|||
csharp_space_around_declaration_statements = do_not_ignore |
|||
csharp_space_before_colon_in_inheritance_clause = true |
|||
csharp_space_before_comma = false |
|||
csharp_space_before_dot = false |
|||
csharp_space_before_open_square_brackets = false |
|||
csharp_space_before_semicolon_in_for_statement = false |
|||
csharp_space_between_empty_square_brackets = false |
|||
csharp_space_between_method_call_empty_parameter_list_parentheses = false |
|||
csharp_space_between_method_call_name_and_opening_parenthesis = false |
|||
csharp_space_between_method_call_parameter_list_parentheses = false |
|||
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false |
|||
csharp_space_between_method_declaration_name_and_open_parenthesis = false |
|||
csharp_space_between_method_declaration_parameter_list_parentheses = false |
|||
csharp_space_between_parentheses = false |
|||
csharp_space_between_square_brackets = false |
|||
@ -0,0 +1,350 @@ |
|||
## Ignore Visual Studio temporary files, build results, and |
|||
## files generated by popular Visual Studio add-ons. |
|||
## |
|||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore |
|||
|
|||
# User-specific files |
|||
*.rsuser |
|||
*.suo |
|||
*.user |
|||
*.userosscache |
|||
*.sln.docstates |
|||
|
|||
# User-specific files (MonoDevelop/Xamarin Studio) |
|||
*.userprefs |
|||
|
|||
# Mono auto generated files |
|||
mono_crash.* |
|||
|
|||
# Build results |
|||
[Dd]ebug/ |
|||
[Dd]ebugPublic/ |
|||
[Rr]elease/ |
|||
[Rr]eleases/ |
|||
x64/ |
|||
x86/ |
|||
[Aa][Rr][Mm]/ |
|||
[Aa][Rr][Mm]64/ |
|||
bld/ |
|||
[Bb]in/ |
|||
[Oo]bj/ |
|||
[Ll]og/ |
|||
[Ll]ogs/ |
|||
|
|||
# Visual Studio 2015/2017 cache/options directory |
|||
.vs/ |
|||
# Uncomment if you have tasks that create the project's static files in wwwroot |
|||
#wwwroot/ |
|||
|
|||
# Visual Studio 2017 auto generated files |
|||
Generated\ Files/ |
|||
|
|||
# MSTest test Results |
|||
[Tt]est[Rr]esult*/ |
|||
[Bb]uild[Ll]og.* |
|||
|
|||
# NUnit |
|||
*.VisualState.xml |
|||
TestResult.xml |
|||
nunit-*.xml |
|||
|
|||
# Build Results of an ATL Project |
|||
[Dd]ebugPS/ |
|||
[Rr]eleasePS/ |
|||
dlldata.c |
|||
|
|||
# Benchmark Results |
|||
BenchmarkDotNet.Artifacts/ |
|||
|
|||
# .NET Core |
|||
project.lock.json |
|||
project.fragment.lock.json |
|||
artifacts/ |
|||
|
|||
# StyleCop |
|||
StyleCopReport.xml |
|||
|
|||
# Files built by Visual Studio |
|||
*_i.c |
|||
*_p.c |
|||
*_h.h |
|||
*.ilk |
|||
*.meta |
|||
*.obj |
|||
*.iobj |
|||
*.pch |
|||
*.pdb |
|||
*.ipdb |
|||
*.pgc |
|||
*.pgd |
|||
*.rsp |
|||
*.sbr |
|||
*.tlb |
|||
*.tli |
|||
*.tlh |
|||
*.tmp |
|||
*.tmp_proj |
|||
*_wpftmp.csproj |
|||
*.log |
|||
*.vspscc |
|||
*.vssscc |
|||
.builds |
|||
*.pidb |
|||
*.svclog |
|||
*.scc |
|||
|
|||
# Chutzpah Test files |
|||
_Chutzpah* |
|||
|
|||
# Visual C++ cache files |
|||
ipch/ |
|||
*.aps |
|||
*.ncb |
|||
*.opendb |
|||
*.opensdf |
|||
*.sdf |
|||
*.cachefile |
|||
*.VC.db |
|||
*.VC.VC.opendb |
|||
|
|||
# Visual Studio profiler |
|||
*.psess |
|||
*.vsp |
|||
*.vspx |
|||
*.sap |
|||
|
|||
# Visual Studio Trace Files |
|||
*.e2e |
|||
|
|||
# TFS 2012 Local Workspace |
|||
$tf/ |
|||
|
|||
# Guidance Automation Toolkit |
|||
*.gpState |
|||
|
|||
# ReSharper is a .NET coding add-in |
|||
_ReSharper*/ |
|||
*.[Rr]e[Ss]harper |
|||
*.DotSettings.user |
|||
|
|||
# TeamCity is a build add-in |
|||
_TeamCity* |
|||
|
|||
# DotCover is a Code Coverage Tool |
|||
*.dotCover |
|||
|
|||
# AxoCover is a Code Coverage Tool |
|||
.axoCover/* |
|||
!.axoCover/settings.json |
|||
|
|||
# Visual Studio code coverage results |
|||
*.coverage |
|||
*.coveragexml |
|||
|
|||
# NCrunch |
|||
_NCrunch_* |
|||
.*crunch*.local.xml |
|||
nCrunchTemp_* |
|||
|
|||
# MightyMoose |
|||
*.mm.* |
|||
AutoTest.Net/ |
|||
|
|||
# Web workbench (sass) |
|||
.sass-cache/ |
|||
|
|||
# Installshield output folder |
|||
[Ee]xpress/ |
|||
|
|||
# DocProject is a documentation generator add-in |
|||
DocProject/buildhelp/ |
|||
DocProject/Help/*.HxT |
|||
DocProject/Help/*.HxC |
|||
DocProject/Help/*.hhc |
|||
DocProject/Help/*.hhk |
|||
DocProject/Help/*.hhp |
|||
DocProject/Help/Html2 |
|||
DocProject/Help/html |
|||
|
|||
# Click-Once directory |
|||
publish/ |
|||
|
|||
# Publish Web Output |
|||
*.[Pp]ublish.xml |
|||
*.azurePubxml |
|||
# Note: Comment the next line if you want to checkin your web deploy settings, |
|||
# but database connection strings (with potential passwords) will be unencrypted |
|||
*.pubxml |
|||
*.publishproj |
|||
|
|||
# Microsoft Azure Web App publish settings. Comment the next line if you want to |
|||
# checkin your Azure Web App publish settings, but sensitive information contained |
|||
# in these scripts will be unencrypted |
|||
PublishScripts/ |
|||
|
|||
# NuGet Packages |
|||
*.nupkg |
|||
# NuGet Symbol Packages |
|||
*.snupkg |
|||
# The packages folder can be ignored because of Package Restore |
|||
**/[Pp]ackages/* |
|||
# except build/, which is used as an MSBuild target. |
|||
!**/[Pp]ackages/build/ |
|||
# Uncomment if necessary however generally it will be regenerated when needed |
|||
#!**/[Pp]ackages/repositories.config |
|||
# NuGet v3's project.json files produces more ignorable files |
|||
*.nuget.props |
|||
*.nuget.targets |
|||
|
|||
# Microsoft Azure Build Output |
|||
csx/ |
|||
*.build.csdef |
|||
|
|||
# Microsoft Azure Emulator |
|||
ecf/ |
|||
rcf/ |
|||
|
|||
# Windows Store app package directories and files |
|||
AppPackages/ |
|||
BundleArtifacts/ |
|||
Package.StoreAssociation.xml |
|||
_pkginfo.txt |
|||
*.appx |
|||
*.appxbundle |
|||
*.appxupload |
|||
|
|||
# Visual Studio cache files |
|||
# files ending in .cache can be ignored |
|||
*.[Cc]ache |
|||
# but keep track of directories ending in .cache |
|||
!?*.[Cc]ache/ |
|||
|
|||
# Others |
|||
ClientBin/ |
|||
~$* |
|||
*~ |
|||
*.dbmdl |
|||
*.dbproj.schemaview |
|||
*.jfm |
|||
*.pfx |
|||
*.publishsettings |
|||
orleans.codegen.cs |
|||
|
|||
# Including strong name files can present a security risk |
|||
# (https://github.com/github/gitignore/pull/2483#issue-259490424) |
|||
#*.snk |
|||
|
|||
# Since there are multiple workflows, uncomment next line to ignore bower_components |
|||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
|||
#bower_components/ |
|||
|
|||
# RIA/Silverlight projects |
|||
Generated_Code/ |
|||
|
|||
# Backup & report files from converting an old project file |
|||
# to a newer Visual Studio version. Backup files are not needed, |
|||
# because we have git ;-) |
|||
_UpgradeReport_Files/ |
|||
Backup*/ |
|||
UpgradeLog*.XML |
|||
UpgradeLog*.htm |
|||
ServiceFabricBackup/ |
|||
*.rptproj.bak |
|||
|
|||
# SQL Server files |
|||
*.mdf |
|||
*.ldf |
|||
*.ndf |
|||
|
|||
# Business Intelligence projects |
|||
*.rdl.data |
|||
*.bim.layout |
|||
*.bim_*.settings |
|||
*.rptproj.rsuser |
|||
*- [Bb]ackup.rdl |
|||
*- [Bb]ackup ([0-9]).rdl |
|||
*- [Bb]ackup ([0-9][0-9]).rdl |
|||
|
|||
# Microsoft Fakes |
|||
FakesAssemblies/ |
|||
|
|||
# GhostDoc plugin setting file |
|||
*.GhostDoc.xml |
|||
|
|||
# Node.js Tools for Visual Studio |
|||
.ntvs_analysis.dat |
|||
node_modules/ |
|||
|
|||
# Visual Studio 6 build log |
|||
*.plg |
|||
|
|||
# Visual Studio 6 workspace options file |
|||
*.opt |
|||
|
|||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) |
|||
*.vbw |
|||
|
|||
# Visual Studio LightSwitch build output |
|||
**/*.HTMLClient/GeneratedArtifacts |
|||
**/*.DesktopClient/GeneratedArtifacts |
|||
**/*.DesktopClient/ModelManifest.xml |
|||
**/*.Server/GeneratedArtifacts |
|||
**/*.Server/ModelManifest.xml |
|||
_Pvt_Extensions |
|||
|
|||
# Paket dependency manager |
|||
.paket/paket.exe |
|||
paket-files/ |
|||
|
|||
# FAKE - F# Make |
|||
.fake/ |
|||
|
|||
# CodeRush personal settings |
|||
.cr/personal |
|||
|
|||
# Python Tools for Visual Studio (PTVS) |
|||
__pycache__/ |
|||
*.pyc |
|||
|
|||
# Cake - Uncomment if you are using it |
|||
# tools/** |
|||
# !tools/packages.config |
|||
|
|||
# Tabs Studio |
|||
*.tss |
|||
|
|||
# Telerik's JustMock configuration file |
|||
*.jmconfig |
|||
|
|||
# BizTalk build output |
|||
*.btp.cs |
|||
*.btm.cs |
|||
*.odx.cs |
|||
*.xsd.cs |
|||
|
|||
# OpenCover UI analysis results |
|||
OpenCover/ |
|||
|
|||
# Azure Stream Analytics local run output |
|||
ASALocalRun/ |
|||
|
|||
# MSBuild Binary and Structured Log |
|||
*.binlog |
|||
|
|||
# NVidia Nsight GPU debugger configuration file |
|||
*.nvuser |
|||
|
|||
# MFractors (Xamarin productivity tool) working folder |
|||
.mfractor/ |
|||
|
|||
# Local History for Visual Studio |
|||
.localhistory/ |
|||
|
|||
# BeatPulse healthcheck temp database |
|||
healthchecksdb |
|||
|
|||
# Backup folder for Package Reference Convert tool in Visual Studio 2017 |
|||
MigrationBackup/ |
|||
|
|||
# Ionide (cross platform F# VS Code tools) working folder |
|||
.ionide/ |
|||
@ -0,0 +1,24 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
|
|||
<PropertyGroup> |
|||
<!-- Lots of our dependencies are not strong-named --> |
|||
<NoWarn>$(NoWarn);8002</NoWarn> |
|||
<Nullable>enable</Nullable> |
|||
<LangVersion>8.0</LangVersion> |
|||
</PropertyGroup> |
|||
|
|||
<PropertyGroup> |
|||
<SignAssembly>true</SignAssembly> |
|||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\build\key.snk</AssemblyOriginatorKeyFile> |
|||
<PublicSign>true</PublicSign> |
|||
<PublicKey>00240000048000009400000006020000002400005253413100040000010001002988e6f91c38fe1e628fa9e974c30b9fd62dafff7b5df5b7d6663416c636b50de22abc7e9933071d5c0e95822d927009e6502e0eea94bfb40674f555fbad9824b6e24418bc79aad5651f56e878b1f83ef28e89b8e243c9552726e2ca53601def0513f127e8a523db4ac4566fc2d68a86d3e2d28e2b058e3053f789e3c8025a83</PublicKey> |
|||
</PropertyGroup> |
|||
|
|||
<ItemGroup> |
|||
<PackageReference Include="Nerdbank.GitVersioning"> |
|||
<Version>3.0.50</Version> |
|||
<PrivateAssets>all</PrivateAssets> |
|||
</PackageReference> |
|||
</ItemGroup> |
|||
</Project> |
|||
@ -0,0 +1,9 @@ |
|||
<Project> |
|||
<Target Name="AddInternalsVisibleTo" BeforeTargets="CoreCompile"> |
|||
<ItemGroup Condition="'@(InternalsVisibleTo->Count())' > 0"> |
|||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
|||
<_Parameter1>%(InternalsVisibleTo.Identity), PublicKey=$(PublicKey)</_Parameter1> |
|||
</AssemblyAttribute> |
|||
</ItemGroup> |
|||
</Target> |
|||
</Project> |
|||
Binary file not shown.
@ -0,0 +1,10 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<packageSources> |
|||
<clear /> |
|||
<add key="nuget" value="https://api.nuget.org/v3/index.json" /> |
|||
<add key="featherhttp" value="https://f.feedz.io/davidfowl/featherhttp/nuget/index.json" /> |
|||
<add key="bedrockframework" value="https://f.feedz.io/davidfowl/bedrockframework/nuget/index.json" /> |
|||
<add key="opentelemetry" value="https://www.myget.org/F/opentelemetry/api/v3/index.json" /> |
|||
</packageSources> |
|||
</configuration> |
|||
@ -0,0 +1,12 @@ |
|||
using System; |
|||
|
|||
namespace tye |
|||
{ |
|||
class Program |
|||
{ |
|||
static void Main(string[] args) |
|||
{ |
|||
Console.WriteLine("Hello World!"); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,8 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
|
|||
<PropertyGroup> |
|||
<OutputType>Exe</OutputType> |
|||
<TargetFramework>netcoreapp3.1</TargetFramework> |
|||
</PropertyGroup> |
|||
|
|||
</Project> |
|||
@ -0,0 +1,16 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
|
|||
<PropertyGroup> |
|||
<TargetFramework>netcoreapp3.1</TargetFramework> |
|||
|
|||
<IsPackable>false</IsPackable> |
|||
</PropertyGroup> |
|||
|
|||
<ItemGroup> |
|||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" /> |
|||
<PackageReference Include="xunit" Version="2.4.0" /> |
|||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> |
|||
<PackageReference Include="coverlet.collector" Version="1.0.1" /> |
|||
</ItemGroup> |
|||
|
|||
</Project> |
|||
@ -0,0 +1,14 @@ |
|||
using System; |
|||
using Xunit; |
|||
|
|||
namespace E2ETest |
|||
{ |
|||
public class UnitTest1 |
|||
{ |
|||
[Fact] |
|||
public void Test1() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,56 @@ |
|||
|
|||
Microsoft Visual Studio Solution File, Format Version 12.00 |
|||
# Visual Studio 15 |
|||
VisualStudioVersion = 15.0.26124.0 |
|||
MinimumVisualStudioVersion = 15.0.26124.0 |
|||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{8C662D59-A3CB-466F-8E85-A8E6BA5E7601}" |
|||
EndProject |
|||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tye", "src\tye\tye.csproj", "{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}" |
|||
EndProject |
|||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{F19B02EB-A372-417A-B2C2-EA0D5A3C76D5}" |
|||
EndProject |
|||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "E2ETest", "test\E2ETest\E2ETest.csproj", "{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}" |
|||
EndProject |
|||
Global |
|||
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
|||
Debug|Any CPU = Debug|Any CPU |
|||
Debug|x64 = Debug|x64 |
|||
Debug|x86 = Debug|x86 |
|||
Release|Any CPU = Release|Any CPU |
|||
Release|x64 = Release|x64 |
|||
Release|x86 = Release|x86 |
|||
EndGlobalSection |
|||
GlobalSection(SolutionProperties) = preSolution |
|||
HideSolutionNode = FALSE |
|||
EndGlobalSection |
|||
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Debug|Any CPU.Build.0 = Debug|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Debug|x64.ActiveCfg = Debug|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Debug|x64.Build.0 = Debug|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Debug|x86.ActiveCfg = Debug|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Debug|x86.Build.0 = Debug|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Release|Any CPU.ActiveCfg = Release|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Release|Any CPU.Build.0 = Release|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Release|x64.ActiveCfg = Release|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Release|x64.Build.0 = Release|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Release|x86.ActiveCfg = Release|Any CPU |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8}.Release|x86.Build.0 = Release|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Debug|Any CPU.Build.0 = Debug|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Debug|x64.ActiveCfg = Debug|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Debug|x64.Build.0 = Debug|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Debug|x86.ActiveCfg = Debug|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Debug|x86.Build.0 = Debug|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Release|Any CPU.ActiveCfg = Release|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Release|Any CPU.Build.0 = Release|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Release|x64.ActiveCfg = Release|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Release|x64.Build.0 = Release|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Release|x86.ActiveCfg = Release|Any CPU |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B}.Release|x86.Build.0 = Release|Any CPU |
|||
EndGlobalSection |
|||
GlobalSection(NestedProjects) = preSolution |
|||
{9BFE4070-D6D8-41F8-B92E-F85C3DCD7AB8} = {8C662D59-A3CB-466F-8E85-A8E6BA5E7601} |
|||
{D15E5FF6-C1E7-4110-A2BE-06ADA7ACA82B} = {F19B02EB-A372-417A-B2C2-EA0D5A3C76D5} |
|||
EndGlobalSection |
|||
EndGlobal |
|||
@ -0,0 +1,7 @@ |
|||
{ |
|||
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", |
|||
"version": "0.1-alpha", |
|||
"nugetPackageVersion": { |
|||
"semVer": 2 |
|||
} |
|||
} |
|||
Loading…
Reference in new issue