From 2883ce26569e58db000759ae2c0e9724247ad359 Mon Sep 17 00:00:00 2001 From: Alice Cecil Date: Wed, 31 Oct 2018 22:31:33 -0400 Subject: [PATCH 1/5] Lift from Guard Duty mod, ThinkNodes.JobGiver_Capture ```
  • 18
  • ``` --- .../ThinkNodes/JobGiver_Capture.cs | 41 +++++++++++++++++++ Source/JecsTools.sln | 6 +++ 2 files changed, 47 insertions(+) create mode 100644 Source/AllModdingComponents/ThinkNodes/JobGiver_Capture.cs diff --git a/Source/AllModdingComponents/ThinkNodes/JobGiver_Capture.cs b/Source/AllModdingComponents/ThinkNodes/JobGiver_Capture.cs new file mode 100644 index 00000000..a77ee2f4 --- /dev/null +++ b/Source/AllModdingComponents/ThinkNodes/JobGiver_Capture.cs @@ -0,0 +1,41 @@ +using RimWorld; +using Verse; +using Verse.AI; + +namespace ThinkNodes +{ + public class JobGiver_Capture : ThinkNode_JobGiver + { + private float targetAcquireRadius; + + protected override Job TryGiveJob(Pawn pawn) + { + bool Validator(Thing t) + { + Pawn pawn3 = (Pawn) t; + if (pawn3 == null) return false; + var hostileTo = pawn3.Faction == null || pawn3.Faction.HostileTo(Faction.OfPlayer) || pawn3.Faction.def.hidden; + return pawn3.Downed && hostileTo && !pawn3.InBed() && pawn.CanReserve(pawn3) && !pawn3.IsForbidden(pawn); + } + + Pawn victim = (Pawn)GenClosest.ClosestThingReachable(pawn.Position, pawn.Map, + ThingRequest.ForGroup(ThingRequestGroup.Pawn), PathEndMode.OnCell, TraverseParms.For(pawn), + targetAcquireRadius, Validator); + if (victim == null) + { + return null; + } + + Building_Bed buildingBed = RestUtility.FindBedFor(victim, pawn, true, false) ?? + RestUtility.FindBedFor(victim, pawn, true, false, true); + if (buildingBed == null) + { + return null; + } + + var job = new Job(JobDefOf.Capture, victim, buildingBed) {count = 1}; + + return job; + } + } +} \ No newline at end of file diff --git a/Source/JecsTools.sln b/Source/JecsTools.sln index a611c492..cd9a230e 100755 --- a/Source/JecsTools.sln +++ b/Source/JecsTools.sln @@ -37,6 +37,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PawnShields", "AllModdingCo EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CompBalloon", "AllModdingComponents\CompBalloon\CompBalloon.csproj", "{CE293DBE-D76A-4F24-A086-42051996698D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThinkNodes", "AllModdingComponents\ThinkNodes\ThinkNodes.csproj", "{D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -111,6 +113,10 @@ Global {CE293DBE-D76A-4F24-A086-42051996698D}.Debug|Any CPU.Build.0 = Debug|Any CPU {CE293DBE-D76A-4F24-A086-42051996698D}.Release|Any CPU.ActiveCfg = Release|Any CPU {CE293DBE-D76A-4F24-A086-42051996698D}.Release|Any CPU.Build.0 = Release|Any CPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From 3cf20cd0b73ae14d6927a8e1e09420c61a2d8730 Mon Sep 17 00:00:00 2001 From: Alice Cecil Date: Wed, 31 Oct 2018 22:32:48 -0400 Subject: [PATCH 2/5] Create ThinkNodes Project --- Source/AllModdingComponents/.gitignore | 256 ++++++++++++++++++ Source/AllModdingComponents/ThinkNodes.sln | 27 ++ .../ThinkNodes/Properties/AssemblyInfo.cs | 36 +++ .../ThinkNode_ConditionalWorkTypesDef.cs | 23 ++ .../ThinkNodes/ThinkNodes.csproj | 75 +++++ 5 files changed, 417 insertions(+) create mode 100644 Source/AllModdingComponents/.gitignore create mode 100644 Source/AllModdingComponents/ThinkNodes.sln create mode 100644 Source/AllModdingComponents/ThinkNodes/Properties/AssemblyInfo.cs create mode 100644 Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalWorkTypesDef.cs create mode 100644 Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj diff --git a/Source/AllModdingComponents/.gitignore b/Source/AllModdingComponents/.gitignore new file mode 100644 index 00000000..bd551677 --- /dev/null +++ b/Source/AllModdingComponents/.gitignore @@ -0,0 +1,256 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX +project.lock.json +project.fragment.lock.json +artifacts/ + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.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 + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# 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 +# TODO: 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 +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable 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 + +# 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 +node_modules/ +orleans.codegen.cs + +# 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 + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# 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/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc \ No newline at end of file diff --git a/Source/AllModdingComponents/ThinkNodes.sln b/Source/AllModdingComponents/ThinkNodes.sln new file mode 100644 index 00000000..0f7b9633 --- /dev/null +++ b/Source/AllModdingComponents/ThinkNodes.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27004.2009 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThinkNodes", "ThinkNodes\ThinkNodes.csproj", "{D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA}.Release|Any CPU.Build.0 = Release|Any CPU + {DE5B7748-333A-428F-BCA9-4DB67FB289A3}.Debug|Any CPU.ActiveCfg = Release|x86 + {DE5B7748-333A-428F-BCA9-4DB67FB289A3}.Release|Any CPU.ActiveCfg = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {28CF9A73-5333-4EB3-BFCC-3FBEDDA19200} + EndGlobalSection +EndGlobal diff --git a/Source/AllModdingComponents/ThinkNodes/Properties/AssemblyInfo.cs b/Source/AllModdingComponents/ThinkNodes/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..14740794 --- /dev/null +++ b/Source/AllModdingComponents/ThinkNodes/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ThinkNodes")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ThinkNodes - JecsTools")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("d7d21b4a-1da7-41d8-b202-c58ca8fa62aa")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalWorkTypesDef.cs b/Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalWorkTypesDef.cs new file mode 100644 index 00000000..7038270c --- /dev/null +++ b/Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalWorkTypesDef.cs @@ -0,0 +1,23 @@ +using System.Collections.Generic; +using Verse; +using Verse.AI; + +namespace ThinkNodes +{ + public class ThinkNodeConditionalWorkTypes : ThinkNode_Conditional + { + private List workTypeDefs = new List(); + + protected override bool Satisfied(Pawn pawn) + { + foreach (var _def in workTypeDefs) + { + if (pawn.IsColonist && (pawn?.workSettings?.WorkIsActive(_def) ?? false)) + return true; + } + + + return false; + } + } +} \ No newline at end of file diff --git a/Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj b/Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj new file mode 100644 index 00000000..79160f22 --- /dev/null +++ b/Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj @@ -0,0 +1,75 @@ + + + + + Debug + AnyCPU + {D7D21B4A-1DA7-41D8-B202-C58CA8FA62AA} + Library + Properties + ThinkNodes + ThinkNodes + v3.5 + 512 + + + false + none + false + ..\Assemblies\ + + + prompt + 4 + + + none + true + ..\..\ThinkNodes - Release\Assemblies\ + + + prompt + 4 + + + + ..\..\..\..\..\RimWorldWin64_Data\Managed\Assembly-CSharp.dll + + + + + + + + + + + + + + + + + + + + + + + + + Program + $(SolutionDir)..\..\RimWorldWin.exe + + + echo F|xcopy "$(ProjectDir)..\About\About-$(ConfigurationName).xml" "$(TargetDir)..\About\About.xml" /C /Y /K /Q /D +IF /I "$(ConfigurationName)" == "Release"; echo F|xcopy "$(ProjectDir)..\About\Preview.png" "$(TargetDir)..\About\Preview.png" /S /C /Y /K /Q /D +IF /I "$(ConfigurationName)" == "Release"; xcopy "$(ProjectDir)..\Assemblies" "$(TargetDir)..\Assemblies" /S /C /Y /K /I /Q /D +IF /I "$(ConfigurationName)" == "Release"; xcopy "$(ProjectDir)..\Defs" "$(TargetDir)..\Defs" /S /C /Y /K /I /Q /D +IF /I "$(ConfigurationName)" == "Release"; xcopy "$(ProjectDir)..\Patches" "$(TargetDir)..\Patches" /S /C /Y /K /I /Q /D +IF /I "$(ConfigurationName)" == "Release"; xcopy "$(ProjectDir)..\Languages" "$(TargetDir)..\Languages" /S /C /Y /K /I /Q /D +IF /I "$(ConfigurationName)" == "Release"; xcopy "$(ProjectDir)..\Sounds" "$(TargetDir)..\Sounds" /S /C /Y /K /I /Q /D +IF /I "$(ConfigurationName)" == "Release"; xcopy "$(ProjectDir)..\Textures" "$(TargetDir)..\Textures" /S /C /Y /K /I /Q /D +IF /I "$(ConfigurationName)" == "Release"; IF EXIST "$(ProjectDir)..\LICENSE"; copy "$(ProjectDir)..\LICENSE" "$(TargetDir)..\LICENSE" /Y + + \ No newline at end of file From 6fa441b451d7d6be2959cbf75a38d09f3a40d31f Mon Sep 17 00:00:00 2001 From: Alice Cecil Date: Wed, 31 Oct 2018 22:35:32 -0400 Subject: [PATCH 3/5] Lift from my guard duty mod : JobGiver_GoToClosestThingDef ```
  • BloodLoss ...
  • ``` --- .../ThinkNodes/ThinkNode_ConditionalHediff.cs | 22 +++++++++++++++++++ .../ThinkNodes/ThinkNodes.csproj | 1 + 2 files changed, 23 insertions(+) create mode 100644 Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalHediff.cs diff --git a/Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalHediff.cs b/Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalHediff.cs new file mode 100644 index 00000000..6007c3f1 --- /dev/null +++ b/Source/AllModdingComponents/ThinkNodes/ThinkNode_ConditionalHediff.cs @@ -0,0 +1,22 @@ +using System.Linq; +using Verse; +using Verse.AI; + +namespace ThinkNodes +{ + public class ThinkNode_ConditionalHediff : ThinkNode_Conditional + { + public string hediffDef; + + protected override bool Satisfied(Pawn pawn) + { + if (pawn.Drafted) return false; + foreach (var unused in pawn.health.hediffSet.hediffs.Where(x => x.def.defName.EqualsIgnoreCase(hediffDef))) + { + return true; + } + + return false; + } + } +} \ No newline at end of file diff --git a/Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj b/Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj index 79160f22..17f31ccf 100644 --- a/Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj +++ b/Source/AllModdingComponents/ThinkNodes/ThinkNodes.csproj @@ -49,6 +49,7 @@ + From 31c7423b14014d4a05b056d3a8b6ba9fe2689ccd Mon Sep 17 00:00:00 2001 From: The Cecil Date: Wed, 31 Oct 2018 22:52:48 -0400 Subject: [PATCH 5/5] Delete .gitignore --- Source/AllModdingComponents/.gitignore | 256 ------------------------- 1 file changed, 256 deletions(-) delete mode 100644 Source/AllModdingComponents/.gitignore diff --git a/Source/AllModdingComponents/.gitignore b/Source/AllModdingComponents/.gitignore deleted file mode 100644 index bd551677..00000000 --- a/Source/AllModdingComponents/.gitignore +++ /dev/null @@ -1,256 +0,0 @@ -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. - - -# User-specific files (MonoDevelop/Xamarin Studio) -*.userprefs - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -bld/ -[Bb]in/ -[Oo]bj/ -[Ll]og/ - -# Visual Studio 2015 cache/options directory -.vs/ -# Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUNIT -*.VisualState.xml -TestResult.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# DNX -project.lock.json -project.fragment.lock.json -artifacts/ - -*_i.c -*_p.c -*_i.h -*.ilk -*.meta -*.obj -*.pch -*.pdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*.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 - -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# JustCode is a .NET coding add-in -.JustCode - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# 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 -# TODO: 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 -# The packages folder can be ignored because of Package Restore -**/packages/* -# except build/, which is used as an MSBuild target. -!**/packages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/packages/repositories.config -# NuGet v3's project.json files produces more ignoreable 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 - -# 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 -node_modules/ -orleans.codegen.cs - -# 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 - -# SQL Server files -*.mdf -*.ldf - -# Business Intelligence projects -*.rdl.data -*.bim.layout -*.bim_*.settings - -# Microsoft Fakes -FakesAssemblies/ - -# GhostDoc plugin setting file -*.GhostDoc.xml - -# Node.js Tools for Visual Studio -.ntvs_analysis.dat - -# Visual Studio 6 build log -*.plg - -# Visual Studio 6 workspace options file -*.opt - -# 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/ - -# JetBrains Rider -.idea/ -*.sln.iml - -# CodeRush -.cr/ - -# Python Tools for Visual Studio (PTVS) -__pycache__/ -*.pyc \ No newline at end of file