netstandard
Here are 740 public repositories matching this topic...
-
Updated
Jun 10, 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
New external example
Just highlighting this in case you're interested, I took a fork of @dennisfabri racetimes example and extended it to run with Azure Functions and then extended again to publish to Azure EventGrid as a new extension inspired by the RabbitMQ example. Might be of interest to others.
https://github.com/craignicol/Eventflow.Example.Racetimes/tree/feature/event-grid-as-extension
-
Updated
Jun 13, 2020 - C#
-
Updated
Jun 13, 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
Jun 12, 2020 - C#
-
Updated
Jun 5, 2020 - C#
-
Updated
Jun 10, 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.
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
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" />
-
Updated
Jan 31, 2020 - C#
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
Jun 14, 2020 - C#
-
Updated
May 1, 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
Jun 5, 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)
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.
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.
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
Oct 20, 2019 - C#
-
Updated
Jun 14, 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."