netstandard
Here are 756 public repositories matching this topic...
-
Updated
Jul 12, 2020 - C#
Improvement description related to the Text property
The Text property is of no use. Inheriting from UserControl instead of Control would fix this, i.e. hide it. Alternatively:
[Bindable(false)]
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[EditorBrowsable(Edi
In documentation about sagas there is this thing about storing saga-id into event metadata. It looks intuitive but it doesn't work out of the box :-(. I would like to make it work. Here is how:
- from PublishAsync pass sagaId and saga type name into ICommandBus.PublishAsync()
- overload ICommandBus.PublishAsync() so it takes an extra argument eventMetadata
- pass event metadata to IAggregate
-
Updated
Jul 12, 2020 - C#
-
Updated
Jun 16, 2020 - C#
Documentation
This is an awesome project but as I'm integrating it into my app, the lack of documentation is becoming noticeable.
Documenting the few public classes NLua offers would definitely help.
When you comment out some code, the code comments as you would expect. However, when you uncomment that code again, RoslynPad decides it needs to re-format your entire document. This is unexpected, and unwanted behavior. It requires you to take the additional step of undoing the last command (the formatting) any time you uncomment code.
Formatting should not ever be an automatically-applied
Describe the bug
Not a CSLA bug, a doc bug :)
Version and Platform
Irrelevant
Code that Fails
Not code per-se....I just realized that this doc page was never finished: https://github.com/MarimerLLC/csla/blob/master/docs/Analyzers.md. Need to finish that.
Stack Trace or Exception Detail
No stack trace.
Additional context
None
this is source of exception
q2.Select("new(Key.CallItemStatus as CallItemStatus, it.Count() as Count))")the same code works fine in .net core 2.2
System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'index')
at System.Linq.Expressions.InstanceMethodCallExpression1.GetArgument(Int32 index)
at System.Dynamic.Utils.
-
Updated
Jul 11, 2020 - C#
-
Updated
Jul 1, 2020 - C#
-
Updated
Jun 21, 2020 - C#
We should move our cookbook_vs.md to relevant topic(s) on docs.microsoft.com.
As part of the migration at least this page on docs.microsoft.com should be updated.
https://bitbucket.org/dadhi/dryioc/wiki/KindsOfChildContainer.md
None of provided examples are usable with 4.1.1.
WithFallbackContainer - is omitted
var container = new Container();
container.Register<IService, Service>();
container.Register<Client>();
var testFacade = container.CreateFacade();
testFacade.Register<IService, TestService>();
var client = tesFor example:
dotnet new console -o mex
<ToolCommandName>mex</ToolCommandName>
<PackAsTool>true</PackAsTool>dotnet build
dotnet pack
# create local package repo for testing
dotnet new nugetconfig
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
There's no install bat in the root of the directory.
There's no instructions in the readme.
There's a bunch of sln projects, but all for old vs versions, so not sure which one to use.
Gaaarh
C# has multiple types and ways of expressing a linear collection of finite data (that is, a type that contains n instances of some type T). Passing this collection to native code typically requires the user to contain it in an array, pin it, and acquire a pointer to the first element of the array.
Traditional P/Invoke allows a user to pass an array directly, and performs these operations un
-
Updated
Jan 31, 2020 - C#
-
Updated
Jun 14, 2020 - C#
Hello there,
I'm a new dotnet developer and I'm trying to make use of your Framework but i see very limited documentation. The only test I've been running is the benchmark and I find some things unclear.
I can't even find a tutorial of how Trady works on youtube there's only literally just what you offer.
Are there any plans on making more documentation?
Thanks for all :)
Greetings.
-
Updated
May 1, 2020 - C#
-
Updated
Jun 18, 2020 - C#
I have long wanted to ask what is the reason for the presence of such code.
public override int GetHashCode()
{
unchecked
{
var hashCode = EqualityComparer<T>.Default.GetHashCode(Data);
{
if (Errors != null)
{
foreach (var element in Errors)
liveness probes are used to know when to restart a container. For example, liveness probes could catch a deadlock, where an application is running, but unable to make progress. Restarting a container in such a state can help to make the application more available despite bugs.
Supported scenarios and unsupported scenarios are not well explained outside the example on the README.
Improve Documentation with more examples and explanations of what will/won't work.
-
Set up Github Pages site with great documentation
-
Improve & Update README
-
XML <summary> tags on classes & methods.
Bug
NLog version: 4.6.8
NLog.Extensions.Logging version: 1.6.1
NLog.Web.AspNetCore version: 4.9.0
Platform: .NET Core 3.2
Current NLog config
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
internalLogLevel="In-
Updated
Jul 12, 2020 - C#
Improve this page
Add a description, image, and links to the netstandard topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the netstandard topic, visit your repo's landing page and select "manage topics."

